* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    color: #333;
    background: #fff;
    line-height: 1.6;
  }
  
  /* Navbar */
  header {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
    padding: 1rem 2rem;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #333;
    transition: 0.3s;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    color: #e91e63;
  }
  /* Nav Container */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 5%;
}

/* Logo + Image Side by Side */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px; /* spacing between image + text */
}

/* Logo Image */
.nav-logo {
  width: 60px;       /* ideal size — adjust if needed */
  height: auto;
  object-fit: contain;
}

/* Mobile: prevent stretching */
@media (max-width: 600px) {
  .nav-logo {
    width: 32px;
  }
}

  
  /* Hero Slideshow */
  .hero-slideshow {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none;
    animation: none;
  }
  
  @keyframes fade {
    from {opacity: 0.4;}
    to {opacity: 1;}
  }
  
  .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
    background: rgba(0,0,0,0.4);
    padding: 2rem;
    border-radius: 10px;
  }
  
  .hero-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .btn {
    background: #e91e63;
    color: white;
    padding: 0.25rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .btn:hover {
    background: #d81b60;
  }
  
  /* Sections */
  section {
    padding: 4rem 2rem;
    text-align: center;
  }
  
  /* Featured Collection */
  .featured h2 {
    margin-bottom: 2rem;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
  
  .gallery-grid img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s;
  }
  
  .gallery-grid img:hover {
    transform: scale(1.05);
  }

  /* Sketch Preview Section */
.sketch-preview {
  text-align: center;
  padding: 60px 20px;
}

.sketch-preview h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.sketch-text {
  max-width: 700px;
  margin: 0 auto 30px auto;
  font-size: 1.1rem;
  color: #444;
}

.sketch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.sketch-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.caption {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #555;
}

  
  /* About Preview */
  .about-preview {
    background: #f9f9f9;
  }
  
  .about-preview .content {
    max-width: 700px;
    margin: auto;
  }
  
  .btn-outline {
    border: 1px solid #e91e63;
    color: #e91e63;
    padding: 0.25rem 1rem;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .btn-outline:hover {
    background: #e91e63;
    color: white;
  }
  
  /* Testimonials */
  .testimonials {
    background: #fff0f6;
  }
  
  .testimonial-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  
  .testimonial {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    max-width: 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  /* Newsletter */
  .newsletter {
    background: #fdfdfd;
  }
  
  .newsletter form {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  
  .newsletter input {
    padding: 0.75rem;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 50px;
  }
  
  /* Footer */
  footer {
    background: #111;
    color: #ccc;
    text-align: center;
    padding: 1.5rem 0;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero-text h2 {
      font-size: 2rem;
    }
    .testimonial-container {
      flex-direction: column;
      align-items: center;
    }
  }
  /* about */
  /* Sub Hero (About Page) */
.sub-hero {
    position: relative;
    height: 80vh;
    background-size: auto;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .sub-hero .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
  }
  
  .sub-hero-text {
    position: relative;
    z-index: 2;
  }
  
  .sub-hero-text h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
  
  /* About Section */
  .about-main .content {
    max-width: 900px;
    margin: auto;
    text-align: left;
  }
  
  .about-main h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .about-main p {
    margin-bottom: 1rem;
    color: #555;
  }
  
  /* Philosophy Section */
  .philosophy {
    background: #fff0f6;
  }
  
  .philosophy .values {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 2rem;
  }
  
  .philosophy .values div {
    max-width: 280px;
    margin-bottom: 2rem;
  }
  
  .philosophy h3 {
    color: #e91e63;
    margin-bottom: 0.5rem;
  }
  
  /* Team Section */
  .team {
    background: #f9f9f9;
  }
  
  .team-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: auto;
    text-align: left;
  }
  
  .team img {
    width: 280px;
    border-radius: 10px;
    object-fit: cover;
  }
  
  .team-text h3 {
    color: #e91e63;
    margin-bottom: 0.5rem;
  }
  
  .team-text p {
    color: #555;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .sub-hero-text h2 {
      font-size: 2rem;
    }
    .team-content {
      flex-direction: column;
      text-align: center;
    }
  }
/* gallery   */
/* ---------- GALLERY PAGE ---------- */

.gallery-hero {
    background: url("images/hero-gallery.jpg") center/cover no-repeat;
    text-align: center;
    color: #111;
    padding: 100px 20px;
  }
  
  .gallery-hero .hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .gallery-hero .hero-text p {
    font-size: 1.1rem;
    color: #444;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* IMAGE GRID */
  /* .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 50px 5%;
  }
  
  .gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  } */
  .gallery-grid-about img {
    width: 20%;
    height: 30%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  
  .gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
  }
  
  .gallery-grid figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
  }
  
  .gallery-grid figcaption {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #555;
  }
  
  
  /* FOOTER */
  footer {
    text-align: center;
    padding: 30px 10px;
    background: #f9f9f9;
    color: #333;
    font-size: 0.95rem;
  }
/* contact   */
/* ---------- CONTACT PAGE ---------- */

.contact-hero {
    background: url("images/hero-contact.jpg") center/cover no-repeat;
    text-align: center;
    color: #111;
    padding: 100px 20px;
  }
  
  .contact-hero .hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .contact-hero .hero-text p {
    font-size: 1.1rem;
    color: #444;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* CONTACT SECTION */
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 80px 10%;
    gap: 50px;
  }
  
  .contact-form,
  .contact-info {
    flex: 1 1 400px;
    min-width: 280px;
  }
  
  .contact-form h3,
  .contact-info h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form label {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 5px;
  }
  
  .contact-form input,
  .contact-form textarea {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.95rem;
    margin-bottom: 15px;
    transition: border-color 0.3s;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #111;
    outline: none;
  }
  
  .contact-form button {
    background: #111;
    color: white;
    border: none;
    padding: 12px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .contact-form button:hover {
    background: #333;
  }
  
  /* CONTACT INFO */
  .contact-info p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 10px;
  }
  
  .contact-info img {
    margin-top: 20px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  /* FOOTER */
  footer {
    text-align: center;
    padding: 30px 10px;
    background: #f9f9f9;
    color: #333;
    font-size: 0.95rem;
  }
  