  /* === Reset & Setup === */

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      }
      html {
      scroll-behavior: smooth;
      scroll-padding-top: 100px; 
      }
      body {
      font-family: 'Inter', sans-serif;
      background-color: #efe4de;
      color: #333;
      line-height: 1.6;
      }
    
    /* Container general */
    .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    }
    
    /* === Header === */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: transparent; 
      border-bottom: 1px solid transparent;
      z-index: 1000;
      height: 100px;
      transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    }
    .site-header.scrolled {
      background: #efe4de; 
      border-bottom: 1px solid #e6dcdc;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    position: relative;
    }
    .logo img { height: 75px; }
    
    /* Menu */
    .main-nav {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    }
    .main-nav .menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    }
    .main-nav .menu li { position: relative; }
    .main-nav .menu li a {
    text-decoration: none;
    font-weight: 500;
    color: #444;
    transition: color 0.3s;
    padding: 0.5rem 0.8rem;
    transition: color 0.3s ease;
    }
    .main-nav .menu li a:hover { color: #b18c46; }
    
  /* === Dropdown Desktop === */
.main-nav .menu li ul {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background: #333; 
  padding: 0.8rem 0;
  list-style: none;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  border-radius: 10px;
  min-width: 200px;
  text-align: left;
  z-index: 999;
}

.main-nav .menu li ul li {
  width: 100%;
}

.main-nav .menu li ul li a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  white-space: nowrap;
}
.site-header:not(.scrolled) .main-nav .menu li a {
  color: #fff; 
}

.site-header.scrolled .main-nav .menu li a {
color: #333; 
}
.site-header.scrolled .menu li ul {
  background: #fff;
}

.main-nav .menu li:hover > ul {
  display: block;
}
    .main-nav .menu li ul li a { padding: 0.5rem 1rem; }
    .main-nav .menu li:hover > ul { display: block; }
    
    /* Button menuu mobile */
    .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    }
    
    /* === Hero === */
    .hero {
      padding: 10rem 0 6rem;
      text-align: center;
      position: relative;
      color: #fff;
      overflow: hidden; /* important for blur */
    }
    
    .hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('../assets/banner.webp') center/cover no-repeat;
      filter: blur(4px) brightness(0.8); 
      transform: scale(1.1); 
      z-index: 0;
    }
    
    .hero-inner {
      position: relative;
      z-index: 1; 
      
    }
    
    .brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;    
    }
    .brand-accent { color: #b18c46; }
    .brand-accent-index { color: #fbc869; }
    .hero-sub {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
    
    }
   .brand-title-index{
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;    
    color: #f5f5f5 !important;
   }
   .hero-sub-index{
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
    color: #f5f5f5 !important;
    
    }
    .hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    }
    .btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    }
    .btn-primary { background: #b18c46; color: #fff; }
    .btn-secondary:hover { background: #b18c46; color: #fff; }
    .btn-primary:hover { background: #967536; }
    .btn-outline {
    border: 2px solid #b18c46;
    color: #ffffff;
    }
    .btn-outline:hover {
    background: #b18c46;
    color: #fff;
    }
    /* === General sections === */
    section { padding: 4rem 0; }
    .section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    }
    
    /* === Gallery === */
    .gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-auto-rows: 200px;
    gap: 1rem;
    }
    .gallery-item {
    overflow: hidden;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
    }
    .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
    }
    .gallery-item:hover img {
    transform: scale(1.1) rotate(1deg);
    filter: brightness(0.9);
    }
    .gallery-item.tall { grid-row: span 2; }
    .gallery-item.wide { grid-column: span 2; }
    
    /* === cards === */
    .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    }
    .card {
    background: #d8bdb2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    }
    .card:hover { transform: translateY(-5px); }
    .card-media img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    }
    .card-body { padding: 1.2rem; }
    .card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;

    }
    .card-desc { font-size: 0.95rem; color: #000000; margin-bottom: 1rem; }
    .card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    }
    .card-price { font-weight: bold; color: #b18c46; }
    a {
      color: #b38633;
    }
    /* === Footer === */
    .site-footer {
    background: #222;
    color: #ddd;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    }
    .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    }
    .footer-col h4 { margin-bottom: 1rem; color: #fff; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 0.5rem; }
    .footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
    }
    .footer-links a:hover { color: #b18c46; }
    .socials a {
    margin-right: 0.5rem;
    color: #ddd;
    transition: color 0.3s;
    }
    .socials a:hover { color: #b18c46; }
    .footer-bottom {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
    }
   /* === Popup windows === */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  width: 95%;
  max-width: 600px; 
  text-align: left;
  position: relative;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  animation: fadeIn 0.3s ease;
}

.popup-inner {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

/* image popup */
.popup-image {
  width: 40%;
  border-radius: 12px;
  object-fit: cover;
}

/* Text + details */
.popup-text {
  width: 60%;
}

.popup-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.popup-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

/* Descriptions */
.popup-desc {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Price */
.popup-price {
  font-weight: bold;
  color: #b18c46;
  margin-bottom: 1rem;
}
/* Button Order Now */
.popup-btn {
  display: block; 
  width: 100%;  
  background: #b18c46;
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 0;
  border-radius: 30px;
  font-weight: 500;
  text-align: center;
  transition: background 0.3s ease;
  font-size: 1rem;
  margin-top: 1.5rem; 
}


.popup-btn:hover {
  background: #967536;
}


/* Close */
.popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 2rem;
  color: #999;
  cursor: pointer;
  transition: color 0.3s;
}

.popup-close:hover {
  color: #b18c46;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* === Page Services - final === */
.service-hero {
  padding-top: 120px;
  background: #efe4de;
  color: #222;
}

.service-hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: left;
}

.service-hero-img {
  width: 45%;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  object-fit: cover;
}
.service-hero-img-about {
  width: 25%;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  object-fit: cover;
}

.service-hero-text {
  width: 45%;
}

.brand-title, .section-title {
  color: #2a2a2a;
}

.hero-sub {
  color: #444;
  font-size: 1.2rem;
}

/* === Price List (static) === */
.price-list {
  background: #d8bdb2;
  border-radius: 16px;
  padding: 2rem;
  max-width: 700px;
  margin: 3rem auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  color: #2a2a2a;
}

.price-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  font-size: 1.1rem;
  color: #222;
}

.price-list li:last-child {
  border-bottom: none;
}

.price-list .price {
  font-weight: 600;
  color: #b18c46;
}

.service-cta {
  text-align: center;
  margin-top: 2rem;
}

.service-cta .btn-primary {
  padding: 0.9rem 2rem;
  font-size: 1.1rem;
}

/* === Responsive general === */
@media (max-width: 768px) {
  .service-hero-img-about {
    width: 50%;             
    max-width: 320px;       
    margin: 0 auto 1.5rem;   
    display: block;
  }

  /* === POPUP === */
  .popup-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .popup-img {
    max-width: 100%;
  }

  .popup-text {
    align-items: center;
  }

  .popup-price {
    margin-top: 0.5rem;
  }

  /* === MENU TOGGLE === */
  .menu-toggle {
    display: inline-block;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: -20px;
  }

  .main-nav .menu {
    position: absolute;
    top: 100px; 
    right: 10px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
    min-width: 220px; 
  }

  .main-nav .menu.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav .menu li {
    margin: 0.4rem 0;
    position: relative;
  }

  .main-nav .menu li a {
    padding: 0.6rem 0.8rem;
    border-radius: 6px;
    text-decoration: none;
    color: #444;
    font-weight: 500;
  }

  .main-nav .menu li a:hover {
    background: #f5f5f5;
  }

  /* === Submenus MOBILE === */
  .main-nav .menu li ul {
    display: none;
    position: static; 
    background: #fafafa;
    margin: 0.5rem 0 0 1rem;
    padding: 0.5rem 0.5rem;
    border-left: 2px solid #b18c46;
    border-radius: 6px;
    box-shadow: none;
  }

  .main-nav .menu li ul.show {
    display: block;
    animation: expandMenu 0.3s ease;
  }

  @keyframes expandMenu {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .site-header {
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  }

  /* Header after scroll */
  .site-header.scrolled {
    background: #efe4de;
    border-bottom: 1px solid #e6dcdc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  /* Text menu */
  .site-header:not(.scrolled) .main-nav .menu li a {
    color: #333;
    transition: color 0.4s ease;
  }
 
}

/* === RESPONSIVE DESIGN  === */
@media (max-width: 992px) {
  .service-hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .service-hero-img {
    width: 90%;
    max-width: 450px;
  }

  .service-hero-text {
    width: 100%;
  }

  .service-hero-text .brand-title {
    font-size: 2.2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .price-list {
    width: 90%;
    padding: 1.5rem;
  }

  .price-list li {
    font-size: 1rem;
  }

  .price-list .price {
    font-size: 1rem;
  }

  .service-cta .btn-primary {
    padding: 0.8rem 1.6rem;
    font-size: 1rem;
  }
}


@media (max-width: 600px) {
  .service-hero {
    padding-top: 100px;
  }

  .service-hero-img {
    width: 100%;
    border-radius: 14px;
  }

  .brand-title {
    font-size: 1.9rem;
  }

  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }

  .price-list {
    padding: 1.2rem;
    margin: 2rem auto;
    border-radius: 12px;
  }

  .price-list li {
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-align: center;
  }

  .price-list .price {
    font-size: 1rem;
  }

  .service-cta {
    margin-top: 1.5rem;
  }

  .service-cta .btn-primary {
    width: 100%;
    max-width: 300px;
  }

  footer .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  footer .socials {
    justify-content: center;
  }
}
/* === Loader with logo === */
#loader {
  position: fixed;
  inset: 0;
  background: #efe4de; 
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeOutLoader 0.6s ease forwards;
  animation-delay: 1.4s;
  pointer-events: none;
}

.loader-logo {
  width: 110px;
  height: auto;
  opacity: 0;
  animation: fadeInOut 1.4s ease-in-out forwards;
}

/* Fade in + fade out for logo */
@keyframes fadeInOut {
  0% { opacity: 0; transform: scale(0.9); }
  25% { opacity: 1; transform: scale(1); }
  75% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.05); }
}


@keyframes fadeOutLoader {
  to { opacity: 0; visibility: hidden; }
}


    