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

:root {
    --alpine-white: #FFFFFF;
    --mountain-blue: #0057B7;
    --swiss-red: #FF0000;
    --pine-green: #2E8B57;
    --accent-gold: #FFD700;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
}

body {
    font-family: 'Helvetica Neue', 'Lato', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--mountain-blue), var(--pine-green));
    color: var(--alpine-white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.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 {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.btn-accept {
    background: var(--swiss-red);
    color: var(--alpine-white);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s;
}

.btn-accept:hover {
    transform: scale(1.05);
    background: #cc0000;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--alpine-white) 0%, #f8f9fa 100%);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-desktop ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-desktop a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mountain-blue);
    transition: width 0.3s;
}

.nav-desktop a:hover {
    color: var(--mountain-blue);
}

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

.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(--text-dark);
    border-radius: 3px;
    transition: all 0.3s;
}

.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(6px, -6px);
}

.nav-mobile {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--alpine-white);
    box-shadow: var(--shadow);
    z-index: 999;
}

.nav-mobile.active {
    display: block;
}

.nav-mobile ul {
    list-style: none;
}

.nav-mobile a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
}

.nav-mobile a:hover {
    background: #f8f9fa;
    color: var(--mountain-blue);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--mountain-blue) 0%, var(--pine-green) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--alpine-white);
    padding: 40px 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: slideDown 0.8s ease-out;
}

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

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.6s both;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--swiss-red);
    color: var(--alpine-white);
}

.btn-primary:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}

.btn-secondary {
    background: var(--alpine-white);
    color: var(--mountain-blue);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

/* Quick Info Section */
.quick-info {
    padding: 60px 0;
    background: var(--alpine-white);
}

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

.info-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.info-icon {
    margin-bottom: 15px;
}

.info-card h3 {
    color: var(--mountain-blue);
    margin-bottom: 10px;
    font-size: 22px;
}

.info-card p {
    color: var(--text-light);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

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

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Ski Resorts Section */
.ski-resorts {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, var(--alpine-white) 100%);
}

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

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

.resort-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

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

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

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

.resort-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--swiss-red);
    color: var(--alpine-white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.resort-content {
    padding: 25px;
}

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

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

.stat {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
    font-size: 14px;
}

.resort-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.difficulty-indicators {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.difficulty {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    color: var(--alpine-white);
}

.difficulty.easy {
    background: var(--mountain-blue);
}

.difficulty.medium {
    background: var(--swiss-red);
}

.difficulty.hard {
    background: var(--text-dark);
}

/* Regions Section */
.regions {
    padding: 80px 0;
    background: var(--alpine-white);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.region-card {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.region-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

.region-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.region-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--alpine-white);
    padding: 30px 20px;
    transform: translateY(60%);
    transition: transform 0.3s;
}

.region-card:hover .region-overlay {
    transform: translateY(0);
}

.region-overlay h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.region-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.region-list {
    list-style: none;
    font-size: 14px;
}

.region-list li {
    padding: 5px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.region-list li:first-child {
    border-top: none;
}

/* Webcams Section */
.webcams {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, var(--alpine-white) 100%);
}

.webcams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.webcam-card {
    background: var(--alpine-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.webcam-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.webcam-image {
    position: relative;
    height: 200px;
}

.webcam-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.webcam-live {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: var(--alpine-white);
    padding: 5px 10px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
}

.webcam-live svg circle {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.webcam-card h3 {
    padding: 15px 20px 5px;
    color: var(--mountain-blue);
    font-size: 18px;
}

.webcam-details {
    padding: 0 20px 15px;
    color: var(--text-light);
    font-size: 14px;
}

/* Snow Report Section */
.snow-report {
    padding: 80px 0;
    background: var(--alpine-white);
}

.snow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.snow-card {
    background: linear-gradient(135deg, var(--mountain-blue), var(--pine-green));
    color: var(--alpine-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.snow-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.snow-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 10px;
}

.snow-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.snow-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.snow-label {
    font-size: 14px;
    opacity: 0.9;
}

.snow-value {
    font-size: 20px;
    font-weight: 700;
}

.snow-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.snow-status.excellent {
    background: var(--accent-gold);
    color: var(--text-dark);
}

.snow-status.good {
    background: rgba(255,255,255,0.2);
    color: var(--alpine-white);
}

/* Transportation Section */
.transportation {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, var(--alpine-white) 100%);
}

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

.transport-card {
    text-align: center;
    padding: 30px;
    background: var(--alpine-white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.transport-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.transport-icon {
    margin-bottom: 20px;
}

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

.transport-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--alpine-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

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

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.contact-item {
    display: flex;
    gap: 15px;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-item strong {
    display: block;
    color: var(--mountain-blue);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #333 100%);
    color: var(--alpine-white);
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
}

.footer-column h4 {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 18px;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--accent-gold);
}

.footer-column p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .resorts-grid,
    .regions-grid,
    .webcams-grid,
    .snow-grid,
    .transport-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 360px) and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Animations */
@keyframes skiSlide {
    from {
        transform: translateX(-100px) translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0) translateY(0);
        opacity: 1;
    }
}

.resort-card,
.region-card,
.webcam-card,
.snow-card,
.transport-card {
    animation: skiSlide 0.6s ease-out;
}


