@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
:root {
  --primary-teal: #1ABC9C;
  --dark-gray: #2c3e50;
  --white: #FFFFFF;
  --warm-gold: #D4AF37;
  --font-main: 'Poppins', sans-serif;
  --shadow: 0 4px 24px rgba(28,28,28,0.08);
  --radius: 1rem;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--dark-gray);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Override Bootstrap navbar styles for light theme */
.navbar-light .navbar-nav .nav-link {
  color: #2c3e50 !important;
  font-weight: 600 !important;
  transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #1ABC9C !important;
  background-color: rgba(26, 188, 156, 0.1);
  transform: translateY(-1px);
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link.active {
  color: #1ABC9C !important;
}

/* Button Styles */
.btn-primary {
  background-color: var(--primary-teal);
  border: none;
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #16a085;
  box-shadow: 0 6px 32px rgba(26,188,156,0.25);
  transform: translateY(-2px);
}

.btn-outline-primary {
  color: #1ABC9C;
  border-color: #1ABC9C;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: #1ABC9C;
  border-color: #1ABC9C;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(26, 188, 156, 0.3);
}

.btn-gold {
  background-color: var(--warm-gold);
  color: var(--dark-gray);
  border: none;
  font-weight: 600;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.btn-gold:hover, .btn-gold:focus {
  background-color: #bfa133;
  box-shadow: 0 6px 32px rgba(212,175,55,0.25);
  transform: translateY(-2px);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Card Styles */
.card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: none;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(26,26,26,0.15);
}

/* Footer */
footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 2rem 0;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  box-shadow: 0 -2px 16px rgba(26,26,26,0.08);
}

/* Animations */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.animate-bounce {
  animation: bounce 2s infinite;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
    padding: 2rem 0;
  }
  
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(26, 188, 156, 0.1);
    border-radius: 1rem;
    margin-top: 1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    margin: 0.25rem 0;
    border-radius: 0.5rem;
  }
  
  .btn-lg {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    margin-left: calc(50% - 50vw);
    width: 100vw;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

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

/* Text contrast improvements */
.text-contrast-high {
  color: #2c3e50 !important;
}

.bg-light-contrast {
  background-color: #f8f9fa !important;
}

/* Accessibility improvements */
.btn:focus,
.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.25) !important;
  outline: none;
}

/* Dropdown improvements */
.dropdown-menu {
  border: 1px solid rgba(26, 188, 156, 0.1);
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover {
  background-color: rgba(26, 188, 156, 0.1);
  color: #1ABC9C;
} 