@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary-color: #1A3636; /* Deep, serious slate/forest green */
  --secondary-color: #B38D5A; /* Muted, professional ochre */
  --bg-color: #FFFFFF; /* Pure white background for maximum contrast */
  --text-primary: #222222;
  --text-secondary: #555555;
}

body, html {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  overflow-x: hidden;
  width: 100%;
  position: relative;
  line-height: 1.7;
}

section, div, container {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

.hero-section {
  width: 100%;
  overflow: hidden;
}

.hero-section img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  /* mobile optimization */
  body {
    overflow-x: hidden;
    width: 100%;
  }
  
  .hero-section {
    min-height: 70vh;
  }

  .hero-section img {
    height: 70vh;
    object-fit: cover;
    object-position: center;
  }

  .hero-content {
    padding: 20px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }

  .hero-content p {
    font-size: 1rem !important;
  }
}

h1, h2, h3, h4, h5, h6, .font-display {
  font-family: 'Lora', serif;
}

/* Removed glassmorphism and gradient utilities for a flatter, foundation-style design */

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }

/* Submenu Hover for Navbar */
.group:hover .group-hover\:block {
  display: block;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Button enhancements */
.btn-primary {
  @apply px-6 py-3 rounded-sm font-medium transition-all duration-300;
  background-color: var(--primary-color);
  color: white;
}
.btn-primary:hover {
  background-color: #122626;
}
.btn-primary:active {
  transform: scale(0.98);
}

/* Premium Tab Styles */
.tabs-nav {
  @apply flex p-0 border-b border-gray-200 mb-10 overflow-x-auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.tabs-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  @apply px-5 sm:px-6 py-3 sm:py-4 text-sm font-medium transition-colors duration-300 text-gray-500 hover:text-primary whitespace-nowrap flex-shrink-0 flex items-center min-h-[44px] border-b-2 border-transparent;
}
.tab-btn.active {
  @apply text-primary border-primary bg-transparent shadow-none ring-0;
}

.tab-content {
  @apply hidden transition-opacity duration-700 ease-in-out;
}
.tab-content.active {
  @apply block animate-fade-in;
}

/* Icon Wrapper */
.icon-box {
  @apply w-10 h-10 bg-gray-50 text-primary flex items-center justify-center mb-4 transition-colors duration-300 group-hover:text-secondary;
}

/* Hover Effects */
.hover-lift {
  @apply transition-colors duration-300;
}

.image-zoom-container {
  @apply overflow-hidden rounded-sm;
}
.image-zoom-container img {
  @apply transition-opacity duration-500 hover:opacity-90;
}

