:root {
    /* Brand Palette - Electric Travel */
    --dtf-primary: #35c6e3; /* Sky Blue */
    --dtf-secondary: #7ffbc7; /* Light Aqua */
    --dtf-accent: #27ff97; /* Neon Green */
    --dtf-dark: #0f3d4a; /* Deep Teal/Dark Text */
    --dtf-light: #f0fdff; /* Lightest tint for backgrounds */
    
    /* Bootstrap Overrides */
    --bs-primary: var(--dtf-primary);
    --bs-secondary: var(--dtf-secondary);
    --bs-body-color: #333;
    
    /* Gradients */
    --dtf-hero-gradient: linear-gradient(135deg, #35c6e3 0%, #27ff97 100%);
    --dtf-overlay-gradient: linear-gradient(to bottom, rgba(53, 198, 227, 0.2), rgba(15, 61, 74, 0.9));
}

body {
    font-family: 'Montserrat', sans-serif;
}

/* Primary Buttons */
.btn-primary, 
.hero-cta .btn-primary {
    background: var(--dtf-primary) !important;
    border-color: var(--dtf-primary) !important;
    color: #fff !important;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(53, 198, 227, 0.4);
}

.btn-primary:hover,
.hero-cta .btn-primary:hover {
    background: #2cb2cc !important; /* Slightly darker */
    transform: translateY(-2px);
}

/* Secondary/Outline Buttons */
.btn-outline-secondary {
    border-color: var(--dtf-primary) !important;
    color: var(--dtf-dark) !important;
}

.btn-outline-secondary:hover {
    background: var(--dtf-primary) !important;
    color: #fff !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--dtf-dark);
}

/* Top Bar/Footer Accents */
.header-top-area {
    background: var(--dtf-light);
    border-bottom: 1px solid rgba(53, 198, 227, 0.2);
}

/* Map Area Gradient Override */
.hero-map-area {
    background: var(--dtf-hero-gradient) !important;
    color: #fff; /* White text on bright gradient usually works, but check contrast */
}

.hero-main-title {
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Stats */
.stat-number {
    color: #fff !important; /* White stats on the gradient background */
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Featured Card */
.hero-featured-image::after {
    /* Improve overlay readability */
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: var(--dtf-overlay-gradient);
}

/* Map Legend Overrides */
.legend-color.light {
    background: rgba(255, 255, 255, 0.4) !important;
    border: 1px solid #fff;
}

.legend-color.medium {
    background: rgba(255, 255, 255, 0.7) !important;
}

.legend-color.dark {
    background: #ffffff !important;
}
