/* Font Declarations */
@font-face {
    font-family: 'Volksans';
    src: url('../fonts/volksans-Light.otf') format('opentype');
    font-weight: 300;
  }
  @font-face {
    font-family: 'Volksans';
    src: url('../fonts/volksans-Regular.otf') format('opentype');
    font-weight: 400;
  }
  @font-face {
    font-family: 'Volksans';
    src: url('../fonts/volksans-Normal.otf') format('opentype');
    font-weight: 500;
  }
  @font-face {
    font-family: 'Volksans';
    src: url('../fonts/volksans-SemiBold.otf') format('opentype');
    font-weight: 600;
  }
  @font-face {
    font-family: 'Volksans';
    src: url('../fonts/volksans-Bold.otf') format('opentype');
    font-weight: 700;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Volksans', sans-serif;
    background-color: #0F2F35;
    color: #B8A06F;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
/* Navigation */
.navbar {
  padding: 20px 0;
  
}

.navbar-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-logo {
  position: absolute;
  left: 0;
  text-decoration: none;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.navbar-logo .logo-img {
  height: 41px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(67%) sepia(35%) saturate(407%) hue-rotate(21deg) brightness(93%) contrast(89%);
}

.navbar-logo:hover {
  opacity: 0.8;
}

.nav-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: #B8A06F;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}

.nav-link:hover {
  opacity: 0.8;
}

.nav-link.active {
  font-weight: bold;
  text-decoration: underline;
}
  
  /* Main Content */
  main {
    flex: 1;
    padding: 60px 0;
  }
  
  /* Title */
  .title-section {
    text-align: left;
    margin-bottom: 80px;
  }
  .main-title {
    font-size: 48px;
    font-weight: bold;
    color: #B8A06F;
    margin-bottom: 5px;
    line-height: 1.2;
  }
  .subtitle {
    font-size: 18px;
    color: #B8A06F;
    max-width: 600px;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 300;
  }
  
  /* Contact Grid */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
  }
  .contact-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .contact-card {
    background-color: rgba(184,160,111,0.05);
    border: 1px solid rgba(184,160,111,0.3);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }
  .contact-icon {
    font-size: 28px;
    min-width: 40px;
  }
  .contact-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #B8A06F;
  }
  .contact-list {
    list-style: none;
  }
  .contact-list li {
    font-size: 18px;
    margin-bottom: 4px;
    color: #B8A06F;
    opacity: 0.9;
  }
  .contact-list li:last-child { margin-bottom: 0; }
  .contact-list a {
    color: #B8A06F;
    text-decoration: none;
  }
  .contact-list a:hover {
    text-decoration: underline;
  }
  .address-text {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
  }
  
    /* Map */
    .map-container {
    border-radius: 12px;
    overflow: hidden;
    height: 100%; /* match card height */
    display: flex;
  }
  
    .map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 220px; /* same typical card height */
    border: 1px solid rgba(184,160,111,0.3);
    border-radius: 12px;
  }
  
  
/* Footer */
.footer {
    background-color: #0F2F35;
    border-top: 1px solid rgba(217, 185, 110, 0.3);
    padding: 40px 0;
    margin-top: auto;
  }
  
  .footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-center {
    text-align: center;
    max-width: 500px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer-center p {
    color: #B8A06F;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 10px;
}

.contact-link {
    color: #B8A06F;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #FFFFFF;
    text-decoration: underline;
}
  
  /* Mobile Responsive Design - Preserving Desktop Look */
  
  /* Tablet Layout */
  @media (max-width: 1024px) {
    .contact-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
    
    .title-section {
      text-align: center;
      margin-bottom: 60px;
    }
    
    .title-nav-section {
      flex-direction: column;
      gap: 30px;
      align-items: center;
    }
    
    .nav-submenu {
      flex-direction: row;
      gap: 20px;
      align-self: center;
    }
    
    .nav-submenu .nav-link {
      text-align: center;
    }
  }
  
  /* Mobile Layout */
  @media (max-width: 768px) {
    .container {
      padding: 0 20px;
    }
    
    .navbar-content {
      flex-direction: column;
      gap: 15px;
      text-align: center;
      padding: 10px 0;
    }
    
    .nav-menu {
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .nav-link {
      padding: 8px 12px;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    
    .navbar-logo {
      position: static;
      font-size: 24px;
    }
    
    .navbar-logo .logo-img {
      height: 32px;
    }
    
    .contact-grid { 
      grid-template-columns: 1fr; 
      gap: 25px;
    }
    
    .contact-card {
      padding: 25px 20px;
      height: auto;
      min-height: 180px;
    }
    
    .map-container {
      height: 250px;
      padding: 0;
    }
    
    .map-container iframe {
      height: 100%;
      width: 100%;
    }
    
    .title-section { 
      text-align: center;
      margin-bottom: 50px;
    }
    
    .main-title {
      font-size: 32px;
    }
    
    .subtitle {
      font-size: 16px;
      line-height: 1.5;
    }
    
    .contact-icon {
      min-width: 40px;
      height: 40px;
    }
    
    .contact-content h3 {
      font-size: 16px;
      margin-bottom: 8px;
    }
    
    .contact-content p {
      font-size: 14px;
      line-height: 1.4;
    }
    
    .footer-content { 
      flex-direction: column; 
      gap: 20px;
      text-align: center; 
    }
    
         .footer-center {
         text-align: center;
     }
     
     .footer-logo {
         height: 40px;
     }
    
    .footer-logo {
      height: 50px;
    }
  }
  
  /* Small Mobile Layout */
  @media (max-width: 480px) {
    .container {
      padding: 0 15px;
    }
    
    .main-title {
      font-size: 24px;
      margin-bottom: 15px;
    }
    
    .subtitle {
      font-size: 14px;
    }
    
    .navbar-logo {
      font-size: 20px;
    }
    
    .navbar-logo .logo-img {
      height: 28px;
    }
    
    .nav-menu {
      gap: 15px;
    }
    
    .nav-link {
      font-size: 13px;
      padding: 6px 10px;
      min-height: 40px;
    }
    
    .contact-grid {
      gap: 20px;
    }
    
    .contact-card {
      padding: 20px 15px;
      min-height: 160px;
    }
    
    .map-container {
      height: 220px;
    }
    
    .contact-icon {
      min-width: 35px;
      height: 35px;
    }
    
    .contact-content h3 {
      font-size: 15px;
    }
    
    .contact-content p {
      font-size: 13px;
    }
    
    .title-section {
      margin-bottom: 40px;
    }
    
        .footer-content {
        gap: 20px;
    }
    
    .footer-center {
        text-align: center;
    }
  }
  
/* Mobile responsive styles for footer logo */
@media (max-width: 768px) {
    .footer-logo {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        height: 40px;
    }
}
  