/* Alpine Mountains Website Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #006d77;
    --secondary-color: #83c5be;
    --accent-color: #edf6f9;
    --dark-color: #2b2d42;
    --light-color: #f8f9fa;
    --text-color: #333;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --glow: 0 0 20px rgba(255,255,255,0.3);
}

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

#mountainsCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(to bottom, #87CEEB, #E0F6FF);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo svg {
    width: 40px;
    height: 40px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 80px;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 24px;
    color: #666;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    font-family: 'Lato', sans-serif;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,109,119,0.3);
}

.btn-primary:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,109,119,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 3px solid var(--primary-color);
    border-right: 3px solid var(--primary-color);
    transform: rotate(45deg);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff, #f0f8ff);
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

.about-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
}

.mountain-mist {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 50%, #80deea 100%);
    position: relative;
    animation: mistMove 10s ease-in-out infinite;
}

.mountain-mist::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: white;
}

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

.gallery-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.gallery-subtitle {
    font-size: 18px;
    color: #666;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-image {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,109,119,0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    margin-bottom: 10px;
}

.gallery-overlay p {
    font-size: 16px;
}

/* Activities Section */
.activities-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f0f8ff, #e0f7fa);
}

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

.activities-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.activity-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,109,119,0.2);
}

.activity-card:hover::before {
    transform: scaleX(1);
}

.activity-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.activity-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.activity-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Weather Section */
.weather-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #87CEEB, #E0F6FF);
}

.weather-card {
    background: rgba(255,255,255,0.95);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.weather-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.weather-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: var(--primary-color);
}

.location-btn {
    padding: 10px 20px;
    border: none;
    background: transparent;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 8px;
}

.location-btn:hover, .location-btn.active {
    background: var(--primary-color);
    color: white;
}

.weather-content {
    display: flex;
    gap: 50px;
}

.current-weather {
    flex: 1;
}

.weather-main {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.weather-icon {
    font-size: 96px;
}

.weather-temp {
    font-size: 72px;
    font-weight: 700;
    color: var(--primary-color);
}

.weather-temp .temp-unit {
    font-size: 32px;
}

.weather-info {
    display: flex;
    gap: 60px;
}

.weather-desc {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
}

.weather-details {
    display: flex;
    gap: 30px;
}

.weather-detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-icon {
    font-size: 24px;
}

.detail-label {
    font-size: 14px;
    color: #666;
}

.detail-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.forecast {
    flex: 1;
}

.forecast h4 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.forecast-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.forecast-day {
    text-align: center;
    padding: 20px;
    background: #f0f8ff;
    border-radius: 15px;
}

.day-name {
    font-weight: 600;
    margin-bottom: 10px;
}

.day-icon {
    font-size: 32px;
    margin: 10px 0;
}

.day-temp {
    font-weight: 600;
    color: var(--primary-color);
}

/* Booking Section */
.booking-section {
    padding: 100px 0;
    background: white;
}

.booking-content {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 30px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.booking-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    margin-bottom: 20px;
}

.booking-text p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
}

.form-input {
    padding: 12px 15px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    font-size: 16px;
    background: rgba(255,255,255,0.9);
    font-family: 'Lato', sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: white;
}

.form-input select {
    cursor: pointer;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #f0f8ff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.contact-info h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

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

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

.contact-icon {
    font-size: 32px;
}

.contact-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form .form-input {
    border: 2px solid #e0e0e0;
}

.contact-form textarea.form-input {
    resize: vertical;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
}

.footer-logo svg {
    width: 36px;
    height: 36px;
}

.footer-logo span {
    color: var(--secondary-color);
}

.footer-menu {
    display: flex;
    gap: 30px;
}

.footer-menu a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: white;
}

.footer-social a {
    color: #aaa;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #333;
    color: #888;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

@keyframes mistMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(20px);
    }
}

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

/* Responsive */
@media (max-width: 992px) {
    .gallery-grid, .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .weather-content {
        flex-direction: column;
    }

    .booking-form {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

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

    .gallery-grid, .activities-grid, .stats-grid {
        grid-template-columns: 1fr;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}
