/* ========================================
   COMPONENTS.CSS - Updated from source
   Generated from source/style.css
   ======================================== */

/* ===== HEADER ===== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scroll-header {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(15px);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.nav__logo {
  font-family: 'Great Vibes', 'Brush Script MT', cursive;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
}

.nav__logo:hover {
  transform: scale(1.05);
  color: var(--brand-primary-dark);
}

.nav__logo-img {
  height: 60px;
  width: auto;
  max-width: 200px;
  transition: var(--transition);
}

.nav__logo-img:hover {
  transform: scale(1.05);
}

.nav__logo-text {
  font-family: 'Great Vibes', 'Brush Script MT', cursive;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--primary-color);
  margin-left: 0.5rem;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-family: 'Comic Neue', 'Arial', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--text-color);
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.nav__link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--brand-primary-light));
  transition: var(--transition);
  border-radius: 2px;
}

.nav__link:hover:after,
.nav__link.active-link:after {
  width: 100%;
}

.nav__toggle,
.nav__close {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
  transition: var(--transition);
}



/* ===== MOBILE NAVIGATION ===== */

/* Mobile menu overlay to disable page interactions */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Disable main page functions when menu is open */
body.menu-open {
  overflow: hidden;
}

body.menu-open .slideshow-container {
  pointer-events: none;
}

body.menu-open .slideshow-btn,
body.menu-open .slideshow-indicator {
  pointer-events: none;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

/* Disable other interactive elements when menu is open */
body.menu-open .footer,
body.menu-open .main {
  pointer-events: none;
}

body.menu-open .header .nav__logo {
  pointer-events: none;
}

/* Disable all buttons and links when menu is open */
body.menu-open button:not(.nav__toggle):not(.nav__close),
body.menu-open a:not(.nav__link):not(.nav__logo),
body.menu-open input,
body.menu-open textarea,
body.menu-open select {
  pointer-events: none;
}

@media screen and (max-width: 1024px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, 
      rgba(255, 255, 255, 0.95), 
      rgba(248, 249, 250, 0.9),
      rgba(240, 242, 245, 0.95)
    );
    backdrop-filter: blur(30px) saturate(1.2);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
    z-index: 1001;
    overflow-y: auto;
    padding: 2rem 0;
  }
  
  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
  }
  
  .nav__link {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 2rem;
    width: 220px;
    text-align: center;
    border-radius: 15px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
  }
  
  .nav__link:hover,
  .nav__link.active-link {
    background: linear-gradient(135deg, var(--primary-color), var(--brand-primary-light));
    color: white;
    transform: scale(1.05);
  }
  
  .nav__toggle,
  .nav__close {
    display: block;
    z-index: 1002;
  }
  
  .nav__toggle {
    font-size: 1.8rem;
    padding: 0.5rem;
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
    z-index: 1000;
  }
  
  .nav__toggle:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
  }
  
  .nav__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    padding: 0.8rem;
    border-radius: 50%;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    transition: var(--transition);
  }
  
  .nav__close:hover {
    background: transparent;
    color: var(--primary-color);
    transform: rotate(90deg) scale(1.2);
    box-shadow: none;
  }
  
  .show-menu {
    right: 0 !important;
  }
}











/* ===== PAGE HEADER ===== */

.page-header {
 /* background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);*/
  background: rgba(212, 166, 116, 0.5);
  color: var(--white);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}

.page-header__title {
  font-family: 'Amatic SC', 'Arial Black', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.page-header__subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}



/* ===== FORM STYLES ===== */

.form {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid rgba(212, 165, 116, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(15px);
}

.form__title {
  margin-bottom: 2rem;
  text-align: center;
  color: var(--text-color);
}

.form__group {
  position: relative;
  margin-bottom: 2rem;
}

.form__input {
  width: 100%;
  padding: 1.2rem;
  border: 2px solid rgba(212, 165, 116, 0.3);
  border-radius: 12px;
  font-family: 'Comic Neue', 'Arial', sans-serif;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.form__input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.2);
}

.form__input:focus + .form__label,
.form__input:not(:placeholder-shown) + .form__label {
  transform: translateY(-1.5rem) scale(0.8);
  color: var(--primary-color);
}

.form__label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--text-light);
  transition: var(--transition);
  pointer-events: none;
  background: var(--white);
  padding: 0 0.25rem;
}

.form__select {
  cursor: pointer;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}



/* ===== SOCIAL MEDIA ICONS ===== */

.social-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1); /* Makes icons white */
  transition: var(--transition);
}

.footer__social-link:hover .social-icon,
.contact__social-link:hover .social-icon {
  transform: scale(1.1);
}



/* ===== FOOTER ===== */

.footer {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: var(--white);
  padding: 3rem 0 1rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
}

.footer .container {
  padding: 0 3rem;
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
  padding: 0 2rem;
}

.footer__title {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__logo {
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.footer__logo:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.footer__logo-img {
  height: 80px;
  width: auto;
  max-width: 250px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
}

.footer__logo:hover .footer__logo-img {
  transform: scale(1.05);
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.footer__description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer__contact-item i {
  color: var(--primary-color);
  margin-top: 0.25rem;
}

.footer__contact-item span {
  color: rgba(255, 255, 255, 0.8);
}

.footer__contact-link {
  text-decoration: none;
  transition: var(--transition);
}

.footer__contact-link:hover span {
  color: var(--primary-color);
  transform: translateX(2px);
}

.footer__map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  min-height: 200px;
  width: 100%;
}

.footer__map-container iframe {
  display: block;
  transition: var(--transition);
  width: 100% !important;
  height: 200px !important;
  min-width: 100%;
  min-height: 200px;
  border: none;
  border-radius: 8px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Mobile-specific map fixes */
@media screen and (max-width: 768px) {
  .footer__map {
    width: 100%;
  }
  
  .footer__map-container {
    width: 100%;
    margin: 0 auto;
    border-radius: 8px;
  }
  
  .footer__contact-item {
    margin-bottom: 1rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }
}

/* Desktop: show iframe */
@media screen and (min-width: 769px) {
  .footer__map-container iframe {
    display: block !important;
  }
}

/* Extra small mobile devices (320px and below) */
@media screen and (max-width: 320px) {
  .footer__map-container {
    min-height: 180px;
  }
  
  .footer__map-container iframe {
    height: 180px !important;
    min-height: 180px;
  }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
  @media screen and (max-width: 768px) {
    .footer__map-container iframe {
      /* iOS Safari iframe fixes */
      -webkit-overflow-scrolling: touch;
      pointer-events: auto;
      position: relative;
      z-index: 1;
    }
  }
}

/* ===== FOOTER MOBILE RESPONSIVE STYLES ===== */

@media screen and (max-width: 768px) {
  .footer {
    padding: 2.5rem 0 1rem;
  }
  
  .footer .container {
    padding: 0 1.5rem;
  }
  
  .footer__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1rem;
  }
  
  .footer__logo {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .footer__logo-img {
    height: 65px;
    max-width: 220px;
  }
  
  .footer__description {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    text-align: center;
  }
  
  .footer__social {
    gap: 0.75rem;
    justify-content: center;
  }
  
  .footer__title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  /* Map section mobile styling */
  .footer__map {
    width: 100%;
  }
  
  .footer__map-container {
    width: 100%;
    margin: 0;
    border-radius: 8px;
  }
  
  .footer__contact-item {
    margin-bottom: 0.85rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }
  
  .footer__copy {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }
  
  .footer__copy p {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .footer {
    padding: 2rem 0 0.75rem;
  }
  
  .footer .container {
    padding: 0 1rem;
  }
  
  .footer__content {
    gap: 2rem;
    padding: 0 0.5rem;
  }
  
  .footer__logo {
    padding: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .footer__logo-img {
    height: 55px;
    max-width: 180px;
  }
  
  .footer__description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  
  .footer__social {
    gap: 0.6rem;
  }
  
  .footer__social-link {
    width: 40px;
    height: 40px;
  }
  
  .social-icon {
    width: 18px;
    height: 18px;
  }
  
  .footer__title {
    font-size: 1rem;
  }
  
  /* Map section small mobile styling */
  .footer__map {
    width: 100%;
    padding: 0;
  }
  
  .footer__map-container {
    width: 100%;
    margin: 0;
    border-radius: 8px;
  }
  
  .footer__contact-item {
    margin-bottom: 0.85rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }
  
  .footer__copy {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
  }
  
  .footer__copy p {
    font-size: 0.85rem;
  }
}



