@font-face {
    font-family: 'Manrope';
    src: url('/font/Manrope-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/font/Satoshi-Variable.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

/* CSS Variables */
:root {
    --primary-color: #ffa011;
    --primary-dark: #00196c;
    --primary-light: #FED16A;
    --accent-color: #386641;
    --accent-light: #FFF4A4;
    --secondary-color: #6c757d;
    --success-color: #386641;
    --info-color: #17a2b8;
    --warning-color: #FED16A;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
    --gradient-overlay: linear-gradient(45deg, rgba(249, 122, 0, 0.8) 0%, rgba(254, 209, 106, 0.8) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, #2d4d32 100%);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --box-shadow-orange: 0 10px 30px rgba(249, 122, 0, 0.2);
    --border-radius: 15px;
    --transition: all 0.3s ease;
    /* --font-family: 'Poppins', sans-serif; */
    --font-family: "Satoshi" !important
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.display-4 {
    font-weight: 700;
    line-height: 1.2;
}

/* Main Content Padding for Fixed Navbar */
.main-content {
    margin-top: 80px;
}

/* Navigation Styles */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
    transition: var(--transition);
    z-index: 1030;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::before {
    width: 80%;
}

.search-form .form-control {
    border-radius: 25px;
    border: 1px solid #e9ecef;
    padding: 0.5rem 1rem;
}

.search-form .btn {
    border-radius: 25px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    /* background: #FFA011; */
    background: linear-gradient(90deg, rgba(255, 160, 17, 1) 0%, rgba(35, 38, 46, 1) 50%);
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--white);
}

.hero-content p.lead {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    margin: 0.5rem;
}

.hero-buttons .btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: var(--box-shadow-orange);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 122, 0, 0.4);
}

.hero-buttons .btn-outline-primary {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.hero-buttons .btn-outline-primary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-stats {
    margin-top: 3rem;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    height: 100vh;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px 0 0 50px;
}

/* Floating Card */
.floating-card {
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    z-index: 10;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(-60%);
    }
}

.floating-card .card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    max-width: 280px;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar {
    width: 35px;
    height: 35px;
    border: 2px solid var(--white);
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

/* Floating Dots */
.floating-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.dot {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatDots 8s ease-in-out infinite;
}

.dot-1 {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.dot-2 {
    width: 15px;
    height: 15px;
    background: var(--accent-color);
    top: 40%;
    right: 15%;
    animation-delay: 2s;
}

.dot-3 {
    width: 25px;
    height: 25px;
    background: var(--primary-light);
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.dot-4 {
    width: 18px;
    height: 18px;
    background: var(--accent-light);
    top: 60%;
    right: 25%;
    animation-delay: 1s;
}

.dot-5 {
    width: 22px;
    height: 22px;
    background: var(--primary-dark);
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes floatDots {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(90deg);
    }

    50% {
        transform: translateY(-40px) rotate(180deg);
    }

    75% {
        transform: translateY(-20px) rotate(270deg);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    z-index: 10;
}

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

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Card Styles */
.shadow-hover {
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.shadow-hover:hover {
    /* No hover animations */
}

/* Tour Cards */
.tour-card .card-img-container {
    height: 250px;
    overflow: hidden;
}

/* Destination Cards - Same height for all images */
.destination-card .card-img-container {
    height: 250px;
    overflow: hidden;
}

.destination-card .card-img-top {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.tour-image,
.destination-image {
    height: 250px;
    width: 100%;
    object-fit: cover;
    /* No transitions */
}

.tour-card:hover .tour-image,
.destination-card:hover .destination-image {
    /* No hover scaling */
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    opacity: 0;
    /* No transitions */
}

.tour-card:hover .card-overlay,
.destination-card:hover .card-overlay {
    /* No hover overlay changes */
}

/* Badges */
.badge-featured {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-popular {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-discount {
    background: var(--gradient-secondary);
    color: var(--accent-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    border-radius: var(--border-radius);
    /* No transitions */
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    /* No hover animations */
}

.feature-icon i {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.newsletter-form .form-control {
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
}

.newsletter-form .btn {
    border-radius: 50px;
    padding: 1rem 1.5rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--gradient-primary);
    position: relative;
}

.footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    /* No transitions */
}

.footer .social-links a:hover {
    background: var(--primary-color);
    /* No transform animations */
}

/* Utility Classes */
.object-cover {
    object-fit: cover;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Button Styles */
.btn {
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
    padding: 0.75rem 1.5rem;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-orange);
}

.btn-outline-primary {
    /* border: 2px solid var(--primary-color); */
    color: white;
    background: var(--gradient-primary);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Form Styles */
.form-control {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(249, 122, 0, 0.25);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

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

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

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

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