/* Modern CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* CSS Variables */
:root {
    --color-snow-dark: #1B222D;
    --color-snow-darker: #151a23;
    --color-snow-red: #D32F2F;
    --color-snow-red-hover: #b71c1c;
    --color-snow-gray: #2C3542;
    --color-text-main: #ffffff;
    --color-text-muted: #9ca3af;
    --color-bg-body: var(--color-snow-dark);

    --font-primary: 'Roboto', sans-serif;

    --spacing-sm: 0.5rem;
    /* 8px */
    --spacing-md: 1rem;
    /* 16px */
    --spacing-lg: 2rem;
    /* 32px */
    --spacing-xl: 4rem;
    /* 64px */
    --spacing-xxl: 6rem;
    /* 96px */

    --container-width: 1200px;
    --header-height: 80px;

    --transition-speed: 0.3s;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-body);
    color: var(--color-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.text-red {
    color: var(--color-snow-red);
}

.btn {
    display: inline-block;
    background-color: var(--color-snow-red);
    color: var(--color-text-main);
    padding: 12px 24px;
    font-weight: 700;
    border-radius: 6px;
    transition: background-color var(--transition-speed), transform 0.2s;
    text-transform: uppercase;
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background-color: var(--color-snow-red-hover);
    transform: translateY(-2px);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    position: relative;
}

h2,
h3 {
    margin-bottom: var(--spacing-lg);
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--color-snow-red);
    margin-top: var(--spacing-sm);
}


p {
    margin-bottom: var(--spacing-md);
    color: var(--color-text-muted);
}

/* =========================================
   Header
   ========================================= */
.header {
    background-color: var(--color-snow-darker);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
    background-color: rgba(21, 26, 35, 0.95);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header__logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--color-text-main);
}

.header__nav {
    display: none;
}

@media (min-width: 768px) {
    .header__nav {
        display: block;
    }
}

.header__menu {
    display: flex;
    gap: var(--spacing-lg);
}

.header__link {
    font-weight: 500;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.header__link:hover {
    color: var(--color-text-main);
}

.header__cta .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .header__cta {
        display: block;
    }
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    padding: var(--spacing-xl) 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

/* Background Image */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/Snow-CAT-Japan-Thunderbird-3.jpg');
    /* New local image */
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Gradient Overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(21, 26, 35, 0.9) 0%, rgba(21, 26, 35, 0.4) 50%, transparent 100%);
    z-index: 1;
}

/* Old overlay class - ensuring it doesn't interfere if present */
.hero__bg-overlay {
    display: none;
}

.hero__container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    /* Increased padding */
    display: flex;
    justify-content: flex-start;
}

.hero__content-wrapper {
    max-width: 900px;
    /* Widened to fit title */
    padding: var(--spacing-lg);
    /* Add padding wrapper */
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
    border-radius: 16px;
    animation: fadeInLeft 1s ease-out;
}

.hero__content {
    flex: 1;
    text-align: center;
}

@media (min-width: 992px) {
    .hero__content {
        text-align: left;
        max-width: 50%;
    }
}

.hero__title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    /* significantly larger */
    font-weight: 900;
    line-height: 1;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero__description {
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
    color: var(--color-text-main);
    opacity: 0.9;
}

@media (min-width: 992px) {
    .hero__description {
        margin-left: 0;
    }
}

.hero__btn {
    font-size: 1.125rem;
    padding: 16px 32px;
}

.hero__visual {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero__image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 4px solid var(--color-snow-gray);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.hero__image-wrapper:hover {
    transform: rotate(0deg);
    border-color: var(--color-snow-red);
}

.hero__image {
    width: 100%;
    height: auto;
    display: block;
}


/* =========================================
   Tours & Pricing Section
   ========================================= */
.tours {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-snow-darker);
}

.tours__container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xxl);
    max-width: 1200px;
    margin: 0 auto;
}

/* 1. Video Section (Top) */
.tours__video-section {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* 2. Content Grid (Bottom) contains Text + Cards Row */
.tours__content-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

/* Desktop: Side-by-Side (Text | Cards) */
@media (min-width: 992px) {
    .tours__content-grid {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        /* Text narrower than cards */
        gap: var(--spacing-xl);
        align-items: start;
    }
}

.tours__title {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.video-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    background-color: #000;
}

.video-card__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-card__thumb {
    opacity: 0.5;
}

.video-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card__play-icon {
    width: 64px;
    height: 64px;
    background-color: var(--color-snow-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.video-card:hover .video-card__play-icon {
    transform: scale(1.1);
    background-color: var(--color-snow-red-hover);
}

.video-card__label {
    position: absolute;
    bottom: var(--spacing-md);
    left: var(--spacing-md);
    background-color: rgba(0, 0, 0, 0.7);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
}

.tours__video-caption {
    margin-top: var(--spacing-sm);
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

.tours__description {
    margin-top: 0;
    text-align: left;
    max-width: 100%;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.tours__description p {
    margin-bottom: var(--spacing-md);
}

.text-sm {
    font-size: 0.9rem;
}

/* 3. Cards Section (Right Column) */
.tours__cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

/* Desktop: Cards Side-by-Side */
@media (min-width: 768px) {
    .tours__cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* Equal width cards */
        gap: var(--spacing-lg);
    }
}

.pricing-card {
    background-color: var(--color-snow-gray);
    border-radius: 12px;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
    border-color: var(--color-snow-red);
    transform: translateY(-5px);
}

/* Header Group (Title + Price) */
.pricing-card__header {
    margin-bottom: var(--spacing-md);
}

.pricing-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.pricing-card__price {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-snow-red);
}

/* Features List */
.pricing-card__features {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
}

.pricing-card__features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.pricing-card__features .icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    color: var(--color-snow-red);
}

.pricing-card__btn {
    width: 100%;
    margin-top: auto;
    text-align: center;
}

/* Desktop card layout is now vertical to fit 3-col grid */



/* =========================================
   Gallery Strip
   ========================================= */
.gallery {
    padding: 0;
    overflow: hidden;
}

.gallery__strip {
    display: flex;
    gap: var(--spacing-sm);
}

.gallery__item {
    flex: 1;
    height: 250px;
    overflow: hidden;
    min-width: 150px;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery__item:hover img {
    transform: scale(1.1);
}

/* =========================================
   Non-Skier Options
   ========================================= */
.info-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-snow-dark);
}

.info-section__container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    align-items: center;
}

@media (min-width: 992px) {
    .info-section__container {
        flex-direction: row;
        align-items: stretch;
        /* Ensure columns match height */
    }
}

.info-section__content {
    flex: 1;
}

.info-section__header {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.info-section__icon-circle {
    background-color: var(--color-snow-red);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-md);
}

.icon-lg {
    width: 24px;
    height: 24px;
    color: white;
}

.icon-md {
    width: 20px;
    height: 20px;
}

.info-section__title {
    margin-bottom: 0;
    font-size: 2rem;
}

.info-section__text {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.info-section__actions {
    display: flex;
    gap: var(--spacing-md);
}

.icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--color-text-muted);
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.icon-btn:hover {
    border-color: var(--color-snow-red);
    color: var(--color-snow-red);
    background-color: rgba(211, 47, 47, 0.1);
}

.info-section__images {
    flex: 1;
    display: flex;
    gap: var(--spacing-md);
    /* Removed fixed height so it follows parent stretch */
    min-height: 300px;
    /* Minimum height for visual balance */
}

.info-section__img-wrapper {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    /* Ensure img child fills height */
}

.cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* =========================================
   Commercial Services
   ========================================= */
.commercial {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-snow-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.commercial__container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

@media (min-width: 992px) {
    .commercial__container {
        flex-direction: row;
    }
}

.commercial__info {
    flex: 1;
    max-width: 100%;
}

@media (min-width: 992px) {
    .commercial__info {
        max-width: 33%;
    }
}

.icon-xl {
    width: 48px;
    height: 48px;
    margin-bottom: var(--spacing-md);
}

.commercial__title {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}



.commercial__description {
    color: var(--color-text-muted);
}

.commercial__grid {
    flex: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .commercial__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.service-card {
    background-color: var(--color-snow-gray);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.service-card__image-wrapper {
    height: 200px;
    overflow: hidden;
}

.service-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-card__img {
    transform: scale(1.05);
}

.service-card__content {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card__title {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.service-card__subtitle {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
}

.service-card__footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-card__price {
    font-size: 1.5rem;
    font-weight: 700;
}

.service-card__btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* =========================================
   Booking Inquiry Banner
   ========================================= */
/* =========================================
   Booking Inquiry Section
   ========================================= */
.booking-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-snow-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.booking-section__header {
    text-align: left;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.booking-section__title {
    font-size: 2.5rem;
    font-weight: 700;
}

.booking-section__subtitle {
    margin-top: var(--spacing-md);
    color: var(--color-text-muted);
    font-size: 1.125rem;
}

.booking-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

@media (min-width: 992px) {
    .booking-section__grid {
        grid-template-columns: 1fr 1.5fr;
        gap: var(--spacing-2xl);
    }
}

/* Contact Info */
.booking-section__info {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--spacing-lg);
    border-radius: 12px;
}

.booking-section__heading {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    color: white;
}

.booking-section__list {
    list-style: none;
    padding: 0;
}

.booking-section__item {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-section__item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.booking-section__label {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.booking-section__link,
.booking-section__text {
    font-size: 1.125rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Booking CTA (Replaces Form) */
.booking-cta {
    position: relative;
    width: 100%;
    min-height: 500px;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.booking-cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.booking-cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
    z-index: 2;
}

.booking-cta__content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: var(--spacing-xl);
    width: 100%;
}

.booking-cta__title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.booking-cta__text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.booking-cta__btn {
    font-size: 1.1rem;
    padding: 12px 32px;
    background-color: var(--color-snow-red);
    color: white;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.4);
}

.booking-cta__btn:hover {
    background-color: var(--color-snow-red-hover);
    transform: translateY(-2px);
}

.btn--white {
    background-color: white;
    color: var(--color-snow-red);
}

.btn--white:hover {
    background-color: #f1f1f1;
    color: var(--color-snow-red-hover);
    transform: translateY(-2px);
}

/* Conditions of Service */
.conditions {
    margin-top: var(--spacing-xxl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
}

.conditions__title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    color: white;
}

.conditions__item {
    margin-bottom: var(--spacing-lg);
}

.conditions__subtitle {
    font-size: 1.1rem;
    color: white;
    margin-bottom: var(--spacing-sm);
}

.conditions__content p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: var(--color-snow-darker);
    padding: var(--spacing-xxl) 0 var(--spacing-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }
}

.footer__col {
    text-align: center;
}

.footer__logo {
    display: inline-block;
    /* Center aligned */
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: white;
    margin-bottom: var(--spacing-md);
}

.footer__text {
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer__heading {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
    color: white;
}

.footer__socials {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.footer__social-link {
    color: var(--color-text-muted);
    font-weight: 500;
}

.footer__social-link:hover {
    color: white;
}

.footer__copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    color: #4b5563;
    width: 100%;
    margin-top: var(--spacing-xl);
}