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

:root {
  --primary-color: #d85935; /* Kept legacy orange but will refine usage */
  --primary-hover: #b94221;
  --secondary-color: #1f2937; /* Dark gray/blue */
  --accent-color: #f3f4f6;
  --text-color: #374151;
  --bg-color: #ffffff;
  --card-bg: #ffffff;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background-color: #f8fafc;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--secondary-color);
  line-height: 1.2;
}

/* Premium Card Styles */
.card-premium {
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.card-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Typography Enhancements */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), #ff8a5c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Button Upgrades */
.btn-premium {
  background: linear-gradient(135deg, var(--primary-color), #e06c4b);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(216, 89, 53, 0.3);
  display: inline-block;
  text-decoration: none;
}

.btn-premium:hover {
  background: linear-gradient(135deg, #b94221, #d85935);
  transform: translateY(-2px);
  box-shadow: 0 6px 10px -1px rgba(216, 89, 53, 0.4);
  color: white;
  text-decoration: none;
}

/* Navbar Improvements */
nav {
  backdrop-filter: blur(10px);
  background-color: rgba(31, 41, 55, 0.95) !important; /* Tailwind gray-800 with opacity */
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

nav a {
  transition: color 0.3s ease, background-color 0.3s ease;
}

/* Carousel Polish */
.carousel-inner img {
  border-radius: 0;
  height: 500px; /* Force consistent height */
  object-fit: cover;
  filter: brightness(0.9);
}

/* Section Spacing & Layout */
section {
  padding: 5rem 0;
}

/* Image Styling */
img.rounded-premium {
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-hover);
}
