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

:root {
    --snow-white: #FFFFFF;
    --glacier-blue: #87CEEB;
    --mountain-purple: #8A2BE2;
    --accent-orange: #FF8C00;
    --pine-green: #228B22;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --shadow: rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--snow-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--snow-white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px var(--shadow);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--glacier-blue);
    text-decoration: underline;
}

/* Header & Navigation */
.header {
    background: var(--snow-white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--mountain-purple);
    letter-spacing: -1px;
}

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

.nav-menu a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: linear-gradient(135deg, var(--glacier-blue), var(--mountain-purple));
    color: var(--snow-white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--mountain-purple);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--glacier-blue) 0%, var(--mountain-purple) 50%, var(--pine-green) 100%);
    opacity: 0.9;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.1) 49%, rgba(255,255,255,0.1) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.05) 49%, rgba(255,255,255,0.05) 51%, transparent 52%);
    background-size: 80px 80px;
    animation: snowPattern 30s linear infinite;
}

@keyframes snowPattern {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 80px 80px, -80px 80px; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--snow-white);
    animation: fadeInUp 1s ease;
}

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

.hero-title {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.hero-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--snow-white);
    animation: fadeInUp 1s ease;
}

.hero-icon svg {
    width: 60px;
    height: 60px;
    color: var(--snow-white);
}

.hero-icon span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--snow-white);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn-primary:hover {
    background: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-white {
    background: var(--snow-white);
}

.section-gradient {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--mountain-purple);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-dark);
    opacity: 0.8;
}

/* Activation Section */
.activation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.activation-card {
    background: var(--snow-white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.activation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
}

.activation-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--glacier-blue), var(--mountain-purple));
    color: var(--snow-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.activation-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--mountain-purple);
}

.activation-card p {
    color: var(--text-dark);
    opacity: 0.8;
}

/* Resort Cards */
.resort-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.resort-card {
    background: var(--snow-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.resort-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.resort-image {
    height: 220px;
    overflow: hidden;
}

.resort-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.resort-card:hover .resort-image img {
    transform: scale(1.1);
}

.resort-content {
    padding: 25px;
}

.resort-content h3 {
    font-size: 26px;
    color: var(--mountain-purple);
    margin-bottom: 15px;
}

.resort-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--pine-green);
}

.stat svg {
    width: 20px;
    height: 20px;
}

.resort-content p {
    margin-bottom: 15px;
    opacity: 0.8;
}

.resort-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.resort-features li {
    background: var(--glacier-blue);
    color: var(--snow-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Pass Cards */
.pass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pass-card {
    background: var(--snow-white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px var(--shadow);
    position: relative;
    transition: all 0.3s ease;
}

.pass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.2);
}

.pass-featured {
    background: linear-gradient(135deg, var(--mountain-purple), var(--glacier-blue));
    color: var(--snow-white);
    transform: scale(1.05);
}

.pass-featured .pass-header h3,
.pass-featured .pass-features {
    color: var(--snow-white);
}

.pass-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--accent-orange);
    color: var(--snow-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.pass-header {
    text-align: center;
    margin-bottom: 30px;
}

.pass-header h3 {
    font-size: 28px;
    color: var(--mountain-purple);
    margin-bottom: 20px;
}

.pass-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    color: var(--mountain-purple);
}

.pass-featured .pass-icon {
    color: var(--snow-white);
}

.pass-icon svg {
    width: 100%;
    height: 100%;
}

.pass-features {
    list-style: none;
}

.pass-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

.pass-featured .pass-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
    color: var(--snow-white);
}

.pass-features li:last-child {
    border-bottom: none;
}

/* Weather Cards */
.weather-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.weather-card {
    background: var(--snow-white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.weather-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(135, 206, 235, 0.3);
}

.weather-card h3 {
    font-size: 22px;
    color: var(--mountain-purple);
    margin-bottom: 20px;
}

.weather-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: var(--glacier-blue);
}

.weather-icon svg {
    width: 100%;
    height: 100%;
}

.weather-temp {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.weather-condition {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.weather-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail {
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.8;
}

/* Slope Categories */
.slope-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.slope-category {
    background: var(--snow-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.slope-category:hover {
    transform: translateY(-10px);
}

.slope-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.slope-blue .slope-icon {
    color: #4A90E2;
}

.slope-red .slope-icon {
    color: #E74C3C;
}

.slope-black .slope-icon {
    color: #2C3E50;
}

.slope-category h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--mountain-purple);
}

.slope-number {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* App Section */
.app-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-content h2 {
    font-size: 42px;
    color: var(--mountain-purple);
    margin-bottom: 15px;
}

.app-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.app-features {
    list-style: none;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    font-size: 18px;
}

.app-features svg {
    width: 24px;
    height: 24px;
    color: var(--pine-green);
    flex-shrink: 0;
}

.app-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
}

.app-image img {
    width: 100%;
    height: auto;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--snow-white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(34, 139, 34, 0.2);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    color: var(--pine-green);
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-card h3 {
    font-size: 22px;
    color: var(--mountain-purple);
    margin-bottom: 15px;
}

.benefit-card p {
    opacity: 0.8;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 36px;
    color: var(--mountain-purple);
    margin-bottom: 15px;
}

.contact-info > p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item svg {
    width: 40px;
    height: 40px;
    color: var(--mountain-purple);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 18px;
    color: var(--mountain-purple);
    margin-bottom: 5px;
}

.contact-item p {
    opacity: 0.8;
}

/* Contact Form */
.contact-form {
    background: var(--snow-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--mountain-purple);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 60px 0 30px;
}

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

.footer-col h3.logo {
    color: var(--snow-white);
    margin-bottom: 15px;
}

.footer-col p {
    opacity: 0.8;
}

.footer-col h4 {
    color: var(--snow-white);
    margin-bottom: 20px;
    font-size: 18px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-light);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--glacier-blue);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.8;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--snow-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px var(--shadow);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        gap: 10px;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu a {
        width: 100%;
        display: block;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-icons {
        flex-direction: column;
        gap: 30px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .contact-wrapper,
    .app-section {
        grid-template-columns: 1fr;
    }

    .app-section {
        gap: 40px;
    }

    .app-image {
        order: -1;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .pass-featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .activation-grid,
    .resort-grid,
    .pass-grid,
    .weather-grid,
    .slope-categories,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 360px) {
    .container {
        padding: 0 15px;
    }
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-icon:nth-child(1) {
    animation: float 3s ease-in-out infinite;
}

.hero-icon:nth-child(2) {
    animation: float 3s ease-in-out infinite 0.5s;
}

.hero-icon:nth-child(3) {
    animation: float 3s ease-in-out infinite 1s;
}

/* Smooth Scrolling for Internal Links */
html {
    scroll-padding-top: 80px;
}

