/*
==============================================
FUN JOURNEY TRAVEL - CUSTOM STYLES
==============================================

Author: Fun Journey Travel
Description: Custom styling for travel agency website
Colors: Blue (#1c75bc) & Gold (#b9902e)
Framework: Bootstrap 5 + Custom CSS

==============================================
*/

:root {
    /* Brand Colors */
    --primary-blue: #1c75bc;
    --secondary-blue: #268ecd;
    --tertiary-blue: #27aae1;
    
    --primary-gold: #b9902e;
    --secondary-gold: #d7ac60;
    --tertiary-gold: #ffdb9f;
    
    /* Neutral Colors */
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --white: #ffffff;
    --black: #000000;
    
    /* Transitions */
    --transition-normal: 0.3s ease-in-out;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Hero Section - Sunset Style */
.hero-sunset {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 25%, #f7931e 50%, #ffb347 75%, #ffd700 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-sunset::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(0,0,0,0.1) 0%, 
        rgba(0,0,0,0.2) 50%, 
        rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: rgba(185, 144, 46, 0.9);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.btn-hero-primary:hover {
    background: rgba(185, 144, 46, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(185, 144, 46, 0.3);
    color: white;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    padding: 10px 28px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    color: white;
}

/* Silhouette Elements */
.hero-silhouettes {
    position: absolute;
    bottom: 0;
    right: 10%;
    z-index: 2;
    opacity: 0.6;
}

.silhouette-group {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.silhouette {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50% 50% 0 0;
}

.silhouette-1 {
    width: 80px;
    height: 140px;
    position: relative;
}

.silhouette-1::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 25px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
}

.silhouette-2 {
    width: 70px;
    height: 120px;
    position: relative;
}

.silhouette-2::before {
    content: '';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 22px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
}

.silhouette-3 {
    width: 75px;
    height: 130px;
    position: relative;
}

.silhouette-3::before {
    content: '';
    position: absolute;
    top: -19px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
}

.silhouette-4 {
    width: 65px;
    height: 110px;
    position: relative;
}

.silhouette-4::before {
    content: '';
    position: absolute;
    top: -17px;
    left: 50%;
    transform: translateX(-50%);
    width: 21px;
    height: 21px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
}

/* Navigation */
.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-logo {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition-normal);
}

.nav-link {
    font-weight: 500;
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--secondary-blue) !important;
    transform: translateY(-1px);
}

/* Cards */
.card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition-normal);
    border-radius: 1rem;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Buttons */
.btn {
    font-weight: 500;
    transition: var(--transition-normal);
    border-radius: 0.5rem;
}

.btn-primary {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background: var(--secondary-blue);
    border-color: var(--secondary-blue);
    transform: translateY(-2px);
}

/* Utilities */
.text-gradient-blue {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hover-lift {
    transition: var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.bg-gradient-mixed {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-gold) 100%);
}

.accent-divider {
    height: 3px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    border: none;
    border-radius: 2px;
    margin: 2rem 0;
}

.hero-text-shadow {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

/* Debug CSS */
.debug-css-loaded {
    border: 3px solid red !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 200px;
        text-align: center;
    }
    
    .hero-silhouettes {
        right: 5%;
        transform: scale(0.8);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-silhouettes {
        display: none;
    }
}
