/* public/css/nav.css */

/* ===== MAIN NAVIGATION ===== */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--warm-white);
  border-bottom: 1px solid rgba(244, 208, 63, 0.1);
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 70px;
}

/* ===== BRAND/LOGO ===== */
.nav-brand {
  flex-shrink: 0;
}

.brand-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--honey-gold);
  letter-spacing: -0.5px;
}

.brand-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: -2px;
}

/* ===== CALL TO ACTION BUTTON ===== */
.nav-cta {
  flex-shrink: 0;
  margin-right: 1rem;
}

.btn-primary {
  background: var(--honey-gold);
  color: var(--charcoal);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid var(--honey-gold);
  display: inline-block;
}

.btn-primary:hover {
  background: transparent;
  color: var(--honey-gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(244, 208, 63, 0.3);
}

/* ===== MENU TRIGGER ===== */
.menu-trigger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
}

.menu-text {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.menu-trigger:hover .menu-text {
  color: var(--honey-gold);
}

/* ===== SLIDE MENU OVERLAY ===== */
.slide-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.slide-menu.active {
  visibility: visible;
  opacity: 1;
}

.slide-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 44, 44, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* ===== SLIDE MENU CONTENT ===== */
.slide-menu-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  background: var(--warm-white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
}

.slide-menu.active .slide-menu-content {
  transform: translateX(0);
}

/* ===== CLOSE BUTTON ===== */
.menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  align-self: flex-end;
  margin-bottom: 2rem;
}

.close-text {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.menu-close:hover .close-text {
  color: var(--honey-gold);
}

/* ===== SLIDE NAVIGATION ===== */
.slide-nav {
  flex: 1;
}

.slide-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.slide-nav-item {
  margin-bottom: 1.5rem;
}

.slide-nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  padding-left: 1rem;
  margin-left: -1rem;
}

.slide-nav-link:hover,
.slide-nav-link.active {
  color: var(--honey-gold);
  border-left-color: var(--honey-gold);
  transform: translateX(5px);
}

/* ===== LANGUAGE TOGGLE ===== */
.language-toggle {
  margin-bottom: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(244, 208, 63, 0.2);
}

.lang-btn {
  background: none;
  border: 2px solid var(--sage-green);
  color: var(--sage-green);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lang-btn:hover {
  background: var(--sage-green);
  color: var(--warm-white);
  transform: translateY(-1px);
}

/* ===== MENU CONTACT INFO ===== */
.menu-contact {
  padding-top: 1rem;
  border-top: 1px solid rgba(244, 208, 63, 0.2);
}

.menu-contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.contact-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--sage-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
}

.contact-value:hover {
  color: var(--honey-gold);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet Styles */
@media (min-width: 768px) {
  .nav-container {
    padding: 1rem 2rem;
  }
  
  .brand-text {
    font-size: 1.75rem;
  }
  
  .brand-subtitle {
    font-size: 0.8rem;
  }
  
  .slide-menu-content {
    width: 350px;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .nav-container {
    padding: 1.25rem 2rem;
  }
  
  .brand-text {
    font-size: 2rem;
  }
  
  .btn-primary {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
  
  .slide-menu-content {
    width: 400px;
    padding: 3rem;
  }
  
  .slide-nav-link {
    font-size: 1.75rem;
  }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
  .nav-container {
    padding: 1rem;
  }
  
  .brand-text {
    font-size: 1.25rem;
  }
  
  .btn-primary {
    padding: 0.625rem 1.25rem;
    font-size: 0.8rem;
  }
  
  .slide-menu-content {
    width: 280px;
    padding: 1.5rem;
  }
} 
