/* =========================
   RESET + BASE
========================= */

* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

body {
  font-family: 'Inter', sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

/* =========================
   HEADER & NAVIGATION
========================= */

header {
  position: fixed;
  width: 100%;
  top: 0; 
  left: 0;
  padding: 20px 60px;
  z-index: 1000;
  transition: 0.4s ease;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

header.scrolled {
  background: #111;
  padding: 15px 60px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

nav { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}

.logo a {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo a:hover {
  color: #c6b08a;
}

.social-icon.facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff;
}

.social-icon.instagram:hover{
  background: radial-gradient(
    circle at 30% 107%,
    #FEDA77 0%,
    #F58529 25%,
    #DD2A7B 50%,
    #8134AF 75%,
    #515BD4 100%
  );
  box-shadow: 0 0 0 1px rgba(255,255,255,0.0) inset; /* optional */
  color: #fff;
}


.social-icon.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: #111;
}



/* =========================
   HAMBURGER MENU
========================= */

.dropdown {
  position: relative;
  display: inline-block;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  transition: all 0.3s ease;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.hamburger:hover span {
  background: #c6b08a;
}

/* Dropdown Menu */
.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  min-width: 200px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 10px;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-content a {
  color: #333;
  padding: 14px 20px;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 400;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background: rgba(198, 176, 138, 0.1);
  padding-left: 25px;
  color: #c6b08a;
}

/* Active page link styling */
.dropdown-content a.active {
  background: rgba(198, 176, 138, 0.15);
  color: #c6b08a;
  font-weight: 500;
  border-left: 4px solid #c6b08a;
  padding-left: 16px;
}

.dropdown.show .dropdown-content {
  display: block;
}

/* Hamburger animation when open */
.dropdown.show .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.dropdown.show .hamburger span:nth-child(2) {
  opacity: 0;
}

.dropdown.show .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* =========================
   GENERAL SECTIONS
========================= */

section { 
  padding: 120px 80px; 
}

section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

/* =========================
   FOOTER
========================= */

footer {
  background: #111;
  color: #777;
  text-align: center;
  padding: 25px 20px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  width: 100%;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 60px;
  min-height: 40px;
}

.footer-content p {
  margin: 0;
  flex: 1;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 15px;
  position: absolute;
  right: 60px;
}

.social-icon {
  overflow: hidden;            /* clips gradient inside the circle */
  background-clip: padding-box;/* prevents odd edges */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c6b08a;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.social-icon:hover {
  background: #c6b08a;
  color: #111;
  transform: translateY(-5px) rotate(360deg);
  box-shadow: 0 10px 25px rgba(198, 176, 138, 0.4);
  border-color: #c6b08a;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 768px) {
  header { 
    padding: 20px; 
  }
  
  header.scrolled {
    padding: 15px 20px;
  }
  
  section { 
    padding: 80px 30px; 
  }
  
  .footer-content {
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
  }
  
  .social-links {
    position: static;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  header {
    padding: 15px;
  }
  
  .logo a {
    font-size: 1.3rem;
  }
  
  section {
    padding: 60px 20px;
  }
  
  section h2 {
    font-size: 2rem;
  }
}
/* =========================
   MODAL CLOSE BUTTON FIX
========================= */

.close {
  color: #fff !important;
  font-weight: 300 !important;
  background: rgba(255,255,255,0.1) !important;
  border: 2px solid rgba(255,255,255,0.2) !important;
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 2.5rem !important;
  cursor: pointer;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .close {
    width: 38px !important;
    height: 38px !important;
    font-size: 2rem !important;
  }
}
