
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #222;
}


.shadow-text {
  color: #222;
  text-shadow: 5px 5px 10px rgba(0,0,0,0.4);
}
.text-white {
    color: white;
}
.tnr-font {
    font-family: 'playfair', serif;
}
.text-3d {
  
  font-size: 55px;
  font-weight: 900;
  color: #fff;            
  text-transform: uppercase;
  text-shadow:
    1px 1px 0 #5a5a5a,
    2px 2px 0 #4a4a4a,
    3px 3px 0 #3a3a3a,
    4px 4px 0 #2a2a2a,
    5px 5px 15px rgba(0,0,0,0.4);
  -webkit-background-clip: text;
}

@media (max-width: 480px) {
  .text-3d {
    font-size: 25px;
  }
}
.cursive-font{
    font-family: 'Cursive', 'Brush Script MT', 'Comic Sans MS', sans-serif;
}


/* HEADER */
.hero {
    display: flex;
    flex-direction: column;
    background: #707070;
    color: white;
    padding-bottom: 40px;
    background-size: zoom;
}
.nav {
    grid-row: 1;
      background: transparent;
      color: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 60px;
      flex-wrap: wrap;
      position: relative;
    }

    .nav ul {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      padding: 0;
      margin: 0;
    }

    .nav a {
      text-decoration: none;
      color: white;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav a:hover {
      color: #f0a500;
    }

    /* Navbar container */
    .navbar {
      width: 100%;
      top: 0;
      left: 0;
      z-index: 1000;
    }

    /* Navigation list */
    .nav-list {
      display: flex;
      justify-content: space-evenly;
      align-items: center;
      list-style: none;
      height: 60px;
      white-space: nowrap;
      transition: max-height 0.4s ease, opacity 0.4s ease;
    }

    /* --- Logo --- */
    .logo img{
        display: none;
        height:100px;
      color: white;
    }
    /* Hamburger icon */
    .menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
    position: absolute;      /* Allow top-right positioning */
    top: 20px;               /* Adjust distance from top */
    right: 20px;             /* Adjust distance from right */
    z-index: 2000;           /* Keep above other elements */
    }

    /* --- Responsive --- */
    @media (max-width: 768px) {
        .logo img{
            display:block;
        }
        .menu-toggle {
            display: block;
        }

        .nav {
            position: relative;    /* Needed for absolute positioning inside */
        }
        

        /* Initially hidden on mobile */
        .nav-list {
            display: flex;
            flex-direction: column;
            width: 100%;
            background: rgba(0, 0, 0, 0.85);
            border-radius: 8px;
            text-align: center;
            margin-top: 10px;
            padding: 0;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
        }
        nav ul{
            display: grid;
            grid-template-rows: auto auto auto auto;
        }

        /* Show when active */
        .nav-list.active {
            max-height: 300px; /* enough to show all items */
            opacity: 1;
            padding: 15px 0;
        }

        .nav-list li {
            margin: 10px 0;
        }

        .nav {
            flex-direction: column;
            align-items: flex-start;
            padding: 15px 20px;
        }
    }


.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.slides {
  display: flex;
}

.slide {
  flex: 0 0 100%;
  transition: transform 0.6s ease-in-out;
}

.dot.active {
  background-color: var(--copper);
  transform: scale(1.3);
  transition: all 0.3s ease;
}




/* modals */

/* Modal styling */
#mediaModal {
    backdrop-filter: blur(6px);
  }

  @media (max-width: 768px) {
    #closeModal {
      top: 1rem;
      right: 1rem;
      font-size: 2rem;
    }
    #zoomContainer img,
    #zoomContainer video {
      max-width: 95vw;
      max-height: 80vh;
      border-radius: 0.5rem;
    }
  }
.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: var(--copper);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}



/* Links */
.nav-list li a {
  text-decoration: none;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-list li a:hover {
  color: #ff6600;
  transform: scale(1.05);
}

/* Make sure text never wraps even on mobile */
@media (max-width: 480px) {
  .nav-list li a {
    font-size: 0.9rem;
  }
}

.hero{
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.2);
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1.5s ease-in-out;
    display: grid;
    grid-template-rows: 1fr 5fr 1fr;
    color: white;
    font-family: sans-serif;
}

.hero-content {
    grid-row: 3;
    margin-top: auto;
    /* position: absolute; */
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    flex-wrap: wrap;
    gap: 40px;
}

.image{
    grid-row: 2;
}
.hero-img img {

    /*width: 400px;*/
    height: 200px;
    border-radius: 5px;
    object-fit: cover;
}

.hero-text {
    text-align: center;
}

.hero-text h1 {
    font-size: 2.2rem;
    letter-spacing: 2px;
}

.hero-text button {
    background: none;
    border: 1px solid white;
    padding: 10px 20px;
    color: white;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s;
}

.hero-text button:hover {
    background: white;
    color: #111;
}

/* ABOUT */
.about {
    padding: 80px 60px;
    text-align: center;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.about-container img {
    width: 300px;
    border-radius: 10px;
    object-fit: cover;
}

/* COLLAGE SECTION */
.media-collage {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    grid-auto-rows: 200px;
    gap: 15px;
    padding: 20px;
    grid-auto-flow: dense;
}

.media-item {
    border-radius: 12px;
    overflow: hidden;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.media-item:hover {
    transform: scale(1.03);
    z-index: 5;
}

.media-item:nth-child(5n) {
    grid-row: span 2;
    grid-column: span 2;
}

.media-item:nth-child(7n) {
    grid-row: span 2;
}

.media-item img,
.media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fully covers the space naturally */
    background: transparent; /* removes the grey background */
}


.masonry-collage {
    /* Column width determines minimum size, browser auto-adjusts columns */
    column-width: 350px; /* Each column is at least 450px */
    /* column-gap: 1rem; Space between columns */
}

.collage-item {
    break-inside: avoid; /* Keep the entire image in one column */
    margin-bottom: 1rem;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.collage-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.5rem;
    transition: transform 0.3s;
}

.collage-item:hover img {
    transform: scale(1.03);
    opacity: 0.9;
}

/* PRICING */
.pricing {
    padding: 80px 60px;
    background: #fde9e3;
    text-align: center;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    width: 250px;
    text-align: center;
}

.card img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.highlight {
    border: 2px solid #000;
}

/* FOOTER */
footer {
    background: #fff;
    padding: 60px;
    text-align: center;
}

.contact {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.subscribe input {
    padding: 8px;
    margin-top: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #555;
}


.portfolio {
    padding: 80px 60px;
    text-align: center;
}


:root {
        --bg: #F5F2EE;             /* Soft Ivory – elegant main background */
        --card: #FFFDF8;           /* Light Cream – for content cards */
        --muted: #7A7A7A;    
        --accent: rgb(189, 105, 48);      /* Warm Gray – secondary text */
        /* --accent: #7464d0;         True Copper – main highlight */
        --accent-glass: rgba(184, 115, 51, 0.15); /* Copper glass overlay */
        --text-primary: #656565;   /* Main text for readability */
    }
    
    

/* Navigation background changed to card color for elegance */
.nav-header {
    background-color: var(--card);
    border-bottom-color: var(--accent-glass);
}

/* Style for the copper buttons and accents */
.btn-copper {
    background-color: var(--accent);
    color: var(--card); /* Light text on dark copper button */
    transition: all 0.3s ease;
    font-weight: 600;
}
.btn-copper:hover {
    background-color: var(--accent); /* Slightly darker copper on hover */
    box-shadow: 0 4px 15px rgba(184, 115, 51, 0.35);
}
.text-copper {
    color: var(--accent);
}
.nav-link {
    color: var(--text-primary);
}
.nav-link:hover {
    color: var(--accent);
    transform: translateY(-2px);
    transition: all 0.2s ease;
}
/* Portfolio Item Hover Effect */
.portfolio-item-overlay {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.portfolio-item:hover .portfolio-item-overlay {
    opacity: 1;
}
/* Input fields in light theme */
    .input-field {
    background-color: var(--card); /* Use the light cream card color */
    border: 1px solid #dcd9d4; /* Subtle, soft border */
    color: var(--text-primary);
}
.input-field:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glass);
}
/* Section styling */
.section-light-bg {
    background-color: var(--card);
    border-top: 1px solid var(--accent-glass);
    border-bottom: 1px solid var(--accent-glass);
}
/* TTS Button styling - Kept for reference but not used in HTML */
.tts-btn {
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 9999px;
    background-color: var(--accent-glass);
    border: 1px solid var(--accent-glass);
}
.tts-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
}



/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-img img {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 5px 0px;
    }
    .hero-text h1 {
        font-size: 20px;
    }
    .media-collage {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        grid-auto-rows: 150px;
    }
}

@media (max-width: 480px) {
    .hero-img img {
        display: none;
    }
    .hero-text h1 {
        font-size: 5px;
    }
    
    .about {
        padding: 40px 20px;
    }
}


/* Responsive: optional adjustments for smaller screens */
@media (max-width: 1024px) {
    .masonry-collage {
        column-width: 350px; /* slightly smaller on tablets */
    }
}

@media (max-width: 640px) {
    .masonry-collage {
        column-width: 100%; /* 1 column on mobile */
    }
}


