@import url('https://fonts.googleapis.com/css2?family=Ponomar&&display=swap');

/* Shared Base Styles (extracted) */
:root {
  --primary-color: #bc6c25;
  --background-color: #283d3b;
  --text-color: #f9f5eb;
  --light-text: #f9f5eb;
  --dark-text: #283d3b;
}

/* Import Ponomar font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Ponomar&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Ponomar', 'Times New Roman', 'DejaVu Serif', Georgia, serif;
  /* background-color: var(--background-color); */
      background: linear-gradient(135deg, var(--background-color) 0%, #1e2d2b 100%);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}
.container {
  min-height: 100vh;
  position: relative;
}

/* Header & Navigation */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 35px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 90px;
  background: linear-gradient(
    135deg,
    rgba(40, 61, 59, 0.95) 0%,
    rgba(30, 45, 43, 0.98) 100%
  );
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(188, 108, 37, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--primary-color) 50%,
    transparent 100%
  );
  opacity: 0.4;
}
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.logo-wrapper:hover {
  transform: translateY(-2px);
}
.logo {
  width: 60px;
  height: 48px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s;
  filter: drop-shadow(0 2px 8px rgba(188, 108, 37, 0.3));
}
.logo:hover {
  filter: drop-shadow(0 4px 12px rgba(188, 108, 37, 0.5));
  transform: scale(1.05);
}
.logo-text {
  font-size: 24px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  line-height: 1.2;
  color: #f9f5eb;
  transition: 0.3s;
  position: relative;
  font-weight: 500;
}
.logo-text:hover {
  color: var(--primary-color);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4), 0 0 20px rgba(188, 108, 37, 0.3);
}
.logo-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    rgba(188, 108, 37, 0.5)
  );
  transition: width 0.3s;
}
.logo-wrapper:hover .logo-text::after {
  width: 100%;
}
.nav {
  display: flex;
  gap: 50px;
  align-items: center;
}
.nav-link {
  color: #f9f5eb;
  text-decoration: none;
  font-size: 24px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
  line-height: 1.2;
  position: relative;
}
.nav-link:hover {
  color: var(--primary-color);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4), 0 0 20px rgba(188, 108, 37, 0.3);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    rgba(188, 108, 37, 0.5)
  );
  transition: width 0.3s;
}
.nav-link:hover::after {
  width: 100%;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.dropdown-arrow {
  font-size: 16px;
  transition: transform 0.3s;
}
.dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(
    135deg,
    rgba(249, 245, 235, 0.95) 0%,
    rgba(249, 245, 235, 0.98) 100%
  );
  backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(188, 108, 37, 0.2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15),
    0 4px 16px rgba(188, 108, 37, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px) scale(0.95);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  min-width: 240px;
  padding: 20px 0;
  margin-top: 20px;
  overflow: hidden;
}
.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--primary-color) 50%,
    transparent 100%
  );
  opacity: 0.6;
}
.dropdown-item {
  display: block;
  padding: 12px 20px;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 18px;
  font-family: 'Ponomar', 'Times New Roman', 'DejaVu Serif', Georgia, serif;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(188, 108, 37, 0.1);
  position: relative;
  background: transparent;
  font-weight: 500;
}
.dropdown-item:last-child {
  border-bottom: none;
}
.dropdown-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(188, 108, 37, 0.1) 0%,
    rgba(188, 108, 37, 0.05) 100%
  );
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.dropdown-item:hover::before {
  width: 100%;
}
.dropdown-item:hover {
  background: transparent;
  color: #97501e;
  transform: translateX(8px);
  text-shadow: 0 2px 8px rgba(188, 108, 37, 0.2);
  font-weight: 600;
}
.dropdown-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 28px;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    rgba(188, 108, 37, 0.3) 100%
  );
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dropdown-item:hover::after {
  width: calc(100% - 56px);
}

/* Buttons */
.btn-primary {
  background-color: #97501e;
  color: var(--text-color);
  border: none;
  padding: 0 30px;
  height: 65px;
  border-radius: 36px;
  cursor: pointer;
  font-family: 'Ponomar', 'Times New Roman', 'DejaVu Serif', Georgia, serif;
  font-size: 32px;
  line-height: 65px;
  transition: background-color 0.3s;
  white-space: nowrap;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.27);
}
.btn-primary:hover {
  background-color: #a35d1f;
}
.header .btn-primary {
  padding: 12px 24px;
  height: auto;
  font-size: 24px;
  line-height: 1.2;
  border-radius: 30px;
  background: linear-gradient(135deg, #97501e 0%, #bc6c25 100%);
  color: #fff;
  font-weight: normal;
  min-width: auto;
  border: 1px solid rgba(188, 108, 37, 0.3);
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.header .btn-primary:hover {
  background: linear-gradient(135deg, #a35d1f 0%, #d4953a 100%);
  border-color: rgba(188, 108, 37, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(188, 108, 37, 0.3);
}

/* Hide location button when burger menu is active */
body.menu-open .header .btn-primary,
.burger-menu.active ~ .btn-primary,
.nav.active ~ .btn-primary {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.btn-secondary {
  background: transparent;
  color: var(--text-color);
  border: 2px solid var(--text-color);
  padding: 0 30px;
  height: 65px;
  border-radius: 36px;
  cursor: pointer;
  font-family: 'Ponomar', 'Times New Roman', 'DejaVu Serif', Georgia, serif;
  font-size: 32px;
  line-height: 61px;
  transition: 0.3s;
  white-space: nowrap;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.27);
}
.btn-secondary:hover {
  background: var(--text-color);
  color: var(--primary-color);
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: 0.3s;
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
}
.burger-line {
  width: 100%;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 2px;
  transition: 0.3s;
  transform-origin: center;
}
.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}
.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Footer (shared) */
.footer {
  margin-top: 0;
  background: linear-gradient(135deg, var(--background-color) 0%, #1e2d2b 100%);
  position: relative;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}
.map {
  width: 100vw;
  height: 350px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}
.map iframe {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.map-border {
  position: absolute;
  inset: 0;
  border: 15px solid #97501e;
  box-shadow: 0 6px 4px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  z-index: 2;
}
.footer-content {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px 60px 50px;
  margin: 32px auto 0;
  background: rgba(249, 245, 235, 0.02);
  border-radius: 20px 20px 0 0;
  backdrop-filter: blur(10px);
}
.footer-section {
  position: relative;
  min-height: 220px;
  padding: 30px 25px 25px;
  border-radius: 12px;
  transition: 0.3s;
  background: rgba(249, 245, 235, 0.03);
  border: 1px solid rgba(188, 108, 37, 0.1);
}
.footer-section:hover {
  background: rgba(249, 245, 235, 0.06);
  border-color: rgba(188, 108, 37, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.footer-section h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 24px;
  text-decoration: underline;
  text-decoration-color: var(--primary-color);
  text-underline-offset: 12px;
  color: var(--text-color);
  position: relative;
  transition: 0.3s;
}
.footer-section h3::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: var(--primary-color);
  transition: height 0.3s;
  border-radius: 2px;
}
.footer-section:hover h3::before {
  height: 100%;
}
.footer-column-stacked {
  display: flex;
  flex-direction: column;
  gap: 25px;
  height: 100%;
  justify-content: space-between;
}
.footer-column-stacked .footer-section {
  min-height: 170px;
  flex: 1;
}
.footer-section p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.66;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-nav a {
  color: var(--text-color);
  text-decoration: underline;
  text-decoration-color: var(--primary-color);
  text-underline-offset: 6px;
  font-size: 18px;
  line-height: normal;
  opacity: 0.66;
  transition: 0.3s;
  display: block;
  padding: 8px 0;
  border-radius: 4px;
  position: relative;
}
.footer-nav a:hover {
  opacity: 1;
  color: var(--primary-color);
  text-decoration-color: var(--text-color);
  transform: translateX(8px);
}
.footer-nav a::before {
  content: '▶';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: 0.3s;
  color: var(--primary-color);
  font-size: 14px;
}
.footer-nav a:hover::before {
  opacity: 1;
  left: -15px;
}
.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.social-icons img {
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: 0.3s;
  filter: grayscale(30%);
  border-radius: 10px;
  padding: 8px;
  background: rgba(188, 108, 37, 0.1);
}
.social-icons img:hover {
  transform: translateY(-4px) scale(1.05);
  filter: grayscale(0);
  background: rgba(188, 108, 37, 0.2);
  box-shadow: 0 8px 20px rgba(188, 108, 37, 0.3);
}
.logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  min-height: auto !important;
  transition: none !important;
}
.logo-section:hover {
  background: none !important;
  border: none !important;
  transform: none !important;
  box-shadow: none !important;
}
.footer-logo {
  width: 300px;
  height: 300px;
  object-fit: contain;
  transition: 0.4s;
  filter: drop-shadow(0 4px 15px rgba(188, 108, 37, 0.2));
}
.footer-logo:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 8px 25px rgba(188, 108, 37, 0.4));
}
.footer-section.logo-section a {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: 0.3s;
}
.footer-section.logo-section a:hover {
  transform: translateY(-2px);
}
.footer-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--primary-color) 50%,
    transparent 100%
  );
  opacity: 0.3;
}

/* Copyright notice styling */
.copyright-notice {
  background: #97511D;
  color: var(--light-text);
  text-align: center;
  padding: 8px 20px;
  font-size: 10px;
  line-height: 1.4;
  font-family: 'Ponomar', 'Times New Roman', 'DejaVu Serif', Georgia, serif;
  border-top: 1px solid rgba(249, 245, 235, 0.1);
  opacity: 0.9;
}

.copyright-notice a {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 500;
}

.copyright-notice a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

@media (max-width: 768px) {
  /* Burger Menu Mobile Styles */
  .burger-menu {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    height: calc(100vh - 90px);
    background: linear-gradient(135deg, var(--background-color) 0%, #1e2d2b 100%);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px;
    gap: 30px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(188, 108, 37, 0.2);
    margin: 20px 0;
  }

  .nav-link {
    font-size: 28px;
    text-align: center;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(188, 108, 37, 0.2);
    color: var(--light-text);
    margin: 0;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(188, 108, 37, 0.2);
  }

  .dropdown-menu {
    position: static;
    background: rgba(30, 45, 43, 0.8);
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    margin-top: 0;
    padding: 0;
  }

  .dropdown-item {
    padding: 12px 20px;
    font-size: 24px;
    border-bottom: 1px solid rgba(188, 108, 37, 0.1);
  }

  .dropdown-item:last-child {
    border-bottom: none;
  }

  /* Style the location button for mobile */
  .header .btn-primary {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    font-size: 20px;
    height: 45px;
    padding: 0 20px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }

  .copyright-notice {
    font-size: 9px;
    padding: 6px 15px;
  }
}

@media (max-width: 480px) {
  .copyright-notice {
    font-size: 8px;
    padding: 5px 10px;
  }
}
