/* Colombia Adventures - Extreme Tourism Website Styles */
/* Темний і енергійний дизайн для туризму пригод */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Bebas+Neue&display=swap');

/* CSS Variables - Adventure Theme */
:root {
    /* Primary Colors - Energy & Adventure */
    --primary-orange: #FF6B35;
    --primary-dark: #1A1A2E;
    --primary-blue: #0F4C75;
    --accent-yellow: #FFD93D;
    --success-green: #6BCB77;

    /* Gradients for Adventure Feel */
    --gradient-adventure: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FF6B35 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #1A1A2E 100%);
    --gradient-energy: linear-gradient(135deg, #FFD93D 0%, #FF6B35 100%);
    --gradient-extreme: linear-gradient(135deg, #E94560 0%, #FF6B35 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 76, 117, 0.85) 50%, rgba(26, 26, 46, 0.9) 100%);

    /* Backgrounds */
    --bg-dark: #0F0F1E;
    --bg-darker: #1A1A2E;
    --bg-card: #16213E;
    --bg-light: #F5F5F5;

    /* Text */
    --text-white: #FFFFFF;
    --text-light: #E8E8E8;
    --text-gray: #B0B0B0;
    --text-dark: #2C3E50;

    /* Shadows */
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.2);
    --shadow-heavy: 0 12px 40px rgba(0, 0, 0, 0.3);
    --shadow-orange: 0 8px 25px rgba(255, 107, 53, 0.4);
    --shadow-blue: 0 8px 25px rgba(15, 76, 117, 0.4);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 25px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Sizes */
    --navbar-height: 80px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    letter-spacing: 1px;
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-adventure {
    background: var(--gradient-adventure);
    color: white;
    box-shadow: var(--shadow-orange);
}

.btn-adventure:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-dark);
}

.btn-large {
    padding: 1.3rem 2.5rem;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--navbar-height);
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo {
    font-size: 1.8rem;
    font-family: 'Bebas Neue', cursive;
    text-decoration: none;
    color: white;
    letter-spacing: 2px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-adventure);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-nav {
    background: var(--gradient-adventure);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    color: white !important;
}

.cta-nav::after {
    display: none;
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger .bar {
    width: 28px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 3px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--navbar-height);
        flex-direction: column;
        background: var(--bg-darker);
        width: 100%;
        padding: 2rem 0;
        transition: var(--transition);
        box-shadow: var(--shadow-heavy);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: var(--navbar-height);
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(45deg, #0F0F1E 0%, #1A1A2E 50%, #0F0F1E 100%),
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(15, 76, 117, 0.15) 0%, transparent 50%);
    animation: heroAnimation 20s ease infinite;
}

@keyframes heroAnimation {

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

    50% {
        transform: scale(1.1) rotate(2deg);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 2rem;
}

.hero-title {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.highlight-adventure {
    background: var(--gradient-adventure);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--accent-yellow);
    font-family: 'Bebas Neue', cursive;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: 'Bebas Neue', cursive;
    color: var(--primary-orange);
    display: block;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.stat-label {
    color: var(--text-gray);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.scroll-down {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
}

.arrow-down {
    font-size: 2rem;
    animation: bounce 2s infinite;
    color: var(--primary-orange);
}

@keyframes bounce {

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

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

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

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-adventure);
    color: white;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-orange);
}

.section-title {
    color: white;
    margin-bottom: 1.5rem;
}

.section-description {
    color: var(--text-gray);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Adventures Section */
.adventures {
    background: var(--bg-darker);
}

.adventure-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.adventure-filter {
    background: var(--bg-card);
    border: 2px solid rgba(255, 107, 53, 0.3);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.adventure-filter:hover,
.adventure-filter.active {
    background: var(--gradient-adventure);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-orange);
    transform: translateY(-2px);
}

.adventures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.adventure-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.adventure-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-orange);
}

.adventure-card.featured {
    border: 2px solid var(--primary-orange);
    box-shadow: var(--shadow-orange);
}

.adventure-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    transition: var(--transition);
}

.adventure-card:hover .image-placeholder {
    transform: scale(1.1);
}

.difficulty-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.difficulty-badge.extreme {
    background: rgba(233, 69, 96, 0.9);
    border: 2px solid #E94560;
}

.difficulty-badge.moderate {
    background: rgba(255, 215, 61, 0.9);
    border: 2px solid #FFD93D;
    color: var(--primary-dark);
}

.difficulty-badge.easy {
    background: rgba(107, 203, 119, 0.9);
    border: 2px solid #6BCB77;
}

.featured-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-adventure);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: var(--shadow-orange);
}

.adventure-content {
    padding: 2rem;
}

.adventure-title {
    color: white;
    margin-bottom: 0.5rem;
}

.adventure-location {
    color: var(--primary-orange);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.adventure-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.adventure-features {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.feature {
    background: rgba(255, 107, 53, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.adventure-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.price-info {
    text-align: left;
}

.price-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-orange);
    font-family: 'Bebas Neue', cursive;
}

.price-per {
    font-size: 1rem;
    color: var(--text-gray);
}

/* Destinations */
.destinations {
    background: var(--bg-dark);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.destination-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.destination-image {
    height: 200px;
}

.destination-content {
    padding: 1.5rem;
}

.destination-content h3 {
    color: white;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.destination-content p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.activities-count {
    display: inline-block;
    background: var(--gradient-adventure);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Equipment */
.equipment {
    background: var(--bg-darker);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.equipment-item {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.equipment-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-medium);
}

.equipment-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.equipment-item h3 {
    color: white;
    margin-bottom: 1rem;
}

.equipment-item p {
    color: var(--text-gray);
}

.safety-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.safety-card {
    background: var(--gradient-adventure);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-orange);
}

.safety-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.safety-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Testimonials */
.testimonials {
    background: var(--bg-dark);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-medium);
}

.stars {
    color: var(--accent-yellow);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-adventure);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.author-name {
    color: white;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.author-activity {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* CTA Booking */
.cta-booking {
    background: var(--bg-darker);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 968px) {
    .cta-content {
        grid-template-columns: 1fr;
    }
}

.cta-text h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cta-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.benefit {
    color: var(--text-light);
    font-weight: 600;
}

.booking-form-container {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-orange);
    box-shadow: var(--shadow-orange);
}

.booking-form-container h3 {
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 1rem;
    background: var(--bg-darker);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Contact */
.contact {
    background: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 4rem 0 2rem;
    border-top: 2px solid rgba(255, 107, 53, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-certifications {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-certifications span {
    color: var(--success-green);
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

.footer-bottom p {
    color: var(--text-gray);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 50%;
    font-size: 1.5rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--gradient-adventure);
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Responsive */
@media (max-width: 768px) {

    .adventures-grid,
    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}