/* Modern CSS Variables */
:root {
  /* New Color Palette */
  --deep-teal: #0D9488;
  --navy-blue: #1E40AF;
  --warm-gold: #F59E0B;
  --light-background: #F3F4F6;
  --dark-background: #111827;
  --text-primary: #1F2937;
  --text-secondary: #6B7280;
  --white: #FFFFFF;
  --whatsapp-green: #25D366;
  
  /* Gradients */
  --hero-overlay: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
  --button-gradient: linear-gradient(135deg, #0D9488 0%, #0891B2 100%);
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-xxl: 3rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Import Components */
@import url('./components/hero.css');
@import url('./components/navigation.css');
@import url('./components/cards.css');
@import url('./components/buttons.css');
@import url('./components/forms.css');
@import url('./components/testimonials.css');
@import url('./components/loading.css');
@import url('./components/animations.css');

/* Base Styles */
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 1.6;
  background-color: var(--light-background);
  padding-top: 70px; /* Adjusted for compact navbar - removed top bar */
}

.font-heading {
  font-family: var(--font-heading);
}

/* Navigation Styles */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  margin-top: 0; /* Remove top margin */
}

.navbar-brand {
  font-weight: 700;
  color: var(--warm-gold) !important;
  font-size: 1.5rem;
	display: flex;
	align-items: center;
}

.navbar-brand img {
	height: 40px; /* Smaller logo */
	width: auto;
}

.nav-link {
  font-weight: 500;
  color: var(--text-primary) !important;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.4rem 0.75rem; /* More compact padding */
}

.nav-link:hover {
  color: var(--warm-gold) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background-color: var(--warm-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

.dropdown-menu {
  border: none;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  padding: 0.5rem 0;
  margin-top: 0.5rem;
}

.dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(245, 158, 11, 0.15); /* Warm gold background with transparency */
  color: var(--warm-gold) !important; /* Warm gold text color */
}

.btn-primary {
  background: linear-gradient(135deg, var(--warm-gold), #e69500);
  border: 1px solid #e69500;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
  background: linear-gradient(135deg, #e69500, #cc8400);
  border-color: #cc8400;
}

.btn-outline-primary {
  border: 2px solid var(--warm-gold);
  color: var(--warm-gold);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(245, 158, 11, 0.1);
}

.btn-outline-primary:hover {
  background: linear-gradient(135deg, var(--warm-gold), #e69500);
  border-color: #e69500;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}

/* Section Titles */
.section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

/* Footer */
.footer {
  background: var(--dark-background);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer h5 {
  color: var(--warm-gold);
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.footer a {
  color: #ccc;
  text-decoration: none;
  transition: color var(--transition-normal);
}

.footer a:hover {
  color: var(--warm-gold);
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366; /* Direct color instead of variable */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1032; /* Higher than top-promo-bar z-index of 1031 */
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  outline: none;
}

.floating-whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  background-color: #128C7E;
}

/* Make sure the icon is visible */
.fab.fa-whatsapp {
  color: white;
  font-size: 30px;
}

/* Accessibility - Visually Hidden */
.visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.section-title {
		font-size: 2rem;
	}
	
	.hero-section .display-2 {
		font-size: 2.5rem;
	}
	
	.hero-section .lead {
		font-size: 1rem;
	}
	
	.hero-content {
		padding: var(--spacing-lg);
		margin: 0 var(--spacing-md);
	}
	
	/* Adjust for mobile */
	body {
		padding-top: 60px; /* Adjust for mobile */
	}
}