/* Palette: Snow White, Alpine Blue, Slate, Silver */
:root {
    --blue: #0060A0;
    --blue-dark: #004070;
    --blue-light: #E6F2FF;
    --white: #FFFFFF;
    --slate: #F5F7FA;
    --text: #333333;
    
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--white);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.club-header { padding: 20px 0; background: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.05); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--text); letter-spacing: 1px; }
.mountain-icon { color: var(--blue); margin: 0 5px; font-size: 1.2rem; vertical-align: middle; }

.alpine-nav a { margin-left: 30px; font-weight: 600; color: #555; font-size: 0.95rem; text-transform: uppercase; font-family: var(--font-head); }
.alpine-nav a:hover, .alpine-nav a.active { color: var(--blue); }

.btn-blue { background: var(--blue); color: var(--white); padding: 12px 30px; border-radius: 4px; font-weight: 600; font-family: var(--font-head); border: none; cursor: pointer; transition: 0.3s; display: inline-block; text-align: center; }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-blue.small { padding: 8px 20px; font-size: 0.8rem; margin-left: 20px; }

.mobile-toggle { display: none; background: transparent; border: none; font-size: 1.5rem; cursor: pointer; }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 300px; height: 100%; background: var(--blue); z-index: 2000; padding: 50px; transition: 0.4s; }
.mobile-menu.active { right: 0; }
.close-btn { background: none; border: none; color: var(--white); font-size: 1.5rem; margin-bottom: 30px; cursor: pointer; }
.mobile-menu a { display: block; font-family: var(--font-head); font-size: 1.5rem; color: var(--white); margin-bottom: 20px; font-weight: 700; }

@media (max-width: 900px) {
    .alpine-nav, .btn-blue.small { display: none; }
    .mobile-toggle { display: block; }
}

/* Hero */
.hero-alpine { height: 85vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; z-index: 0; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.7); z-index: 1; backdrop-filter: blur(2px); }
.hero-content { position: relative; z-index: 2; max-width: 800px; }

.pre-title { font-family: var(--font-head); font-weight: 600; color: var(--blue); letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 15px; }
.hero-content h1 { font-family: var(--font-head); font-size: 4rem; line-height: 1.1; margin-bottom: 25px; font-weight: 800; color: var(--text); }
.hero-content p { font-size: 1.3rem; margin-bottom: 40px; color: #444; max-width: 600px; margin-left: auto; margin-right: auto; }

.cta-wrapper { display: flex; justify-content: center; gap: 20px; }
.btn-white { background: var(--white); color: var(--blue); padding: 15px 35px; border-radius: 4px; font-weight: 600; font-family: var(--font-head); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.btn-white:hover { transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--blue); color: var(--blue); padding: 13px 35px; border-radius: 4px; font-weight: 600; font-family: var(--font-head); }
.btn-outline:hover { background: var(--blue); color: var(--white); }

.mountain-shape { position: absolute; bottom: 0; left: 0; width: 100%; height: 100px; background: var(--white); clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%); z-index: 2; }

/* Values */
.section-title h2 { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; margin-bottom: 5px; }
.blue-peak { color: var(--blue); font-size: 1.5rem; margin-bottom: 20px; }
.text-center { text-align: center; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.value-card { background: var(--slate); padding: 40px; border-radius: 8px; text-align: center; transition: 0.3s; }
.value-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); background: var(--white); }
.icon { font-size: 3rem; margin-bottom: 20px; }
.value-card h3 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 10px; color: var(--blue); }

/* Event Teaser */
.event-teaser { background: var(--blue); color: var(--white); padding: 40px 0; margin-top: 50px; }
.teaser-flex { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.date-badge { background: var(--white); color: var(--blue); padding: 15px; border-radius: 4px; text-align: center; min-width: 100px; }
.date-badge .day { display: block; font-size: 2rem; font-weight: 800; line-height: 1; font-family: var(--font-head); }
.date-badge .month { display: block; font-size: 0.8rem; font-weight: 600; }
.event-info h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 5px; }
.btn-arrow { color: var(--white); font-weight: 700; font-family: var(--font-head); font-size: 1.1rem; }

/* About */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text h1 { font-family: var(--font-head); font-size: 3rem; line-height: 1.1; margin-bottom: 20px; }
.blue-line { width: 60px; height: 4px; background: var(--blue); margin-bottom: 30px; }
.blue-line.left { margin-right: auto; }
.stats-list { list-style: none; margin-top: 30px; border-top: 1px solid #eee; padding-top: 20px; display: flex; gap: 40px; }
.stats-list li { font-size: 0.9rem; }
.stats-list strong { display: block; font-size: 1.8rem; color: var(--blue); font-family: var(--font-head); }
.about-image { position: relative; }
.about-image img { border-radius: 8px; }
.img-overlay { position: absolute; bottom: -20px; right: -20px; width: 150px; height: 150px; background: var(--blue-light); z-index: -1; border-radius: 8px; }

/* Events Grid */
.events-grid { display: flex; flex-direction: column; gap: 20px; max-width: 900px; margin: 0 auto; }
.event-card { display: flex; background: var(--white); border: 1px solid #eee; border-radius: 8px; overflow: hidden; transition: 0.3s; }
.event-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.05); transform: translateX(10px); }
.e-date { background: var(--slate); padding: 30px; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; color: var(--blue); font-size: 1.2rem; min-width: 120px; }
.e-content { padding: 30px; flex: 1; }
.e-cat { font-size: 0.7rem; font-weight: 700; color: #999; letter-spacing: 1px; }
.e-content h3 { font-family: var(--font-head); font-size: 1.5rem; margin: 5px 0 10px; }
.e-meta { margin-top: 15px; font-size: 0.9rem; color: #666; font-weight: 600; }
.btn-link { float: right; color: var(--blue); font-weight: 700; margin-top: -20px; font-family: var(--font-head); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.price-card { background: var(--white); border: 1px solid #eee; border-radius: 8px; padding: 40px 30px; text-align: center; position: relative; transition: 0.3s; }
.price-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.05); }
.price-card.popular { border: 2px solid var(--blue); transform: scale(1.05); z-index: 2; }
.badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--blue); color: var(--white); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; }
.price-card h3 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 15px; }
.price { font-size: 2.5rem; font-weight: 800; color: var(--text); font-family: var(--font-head); margin-bottom: 10px; }
.price span { font-size: 1rem; font-weight: 400; color: #999; }
.desc { color: #666; margin-bottom: 30px; font-size: 0.9rem; }
.price-card ul { list-style: none; margin-bottom: 30px; text-align: left; padding: 0 10px; }
.price-card li { margin-bottom: 10px; font-size: 0.9rem; padding-left: 20px; position: relative; }
.price-card li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.full { width: 100%; display: block; }

/* Contact Form */
.contact-clean { max-width: 800px; margin: 0 auto; background: var(--slate); padding: 60px; border-radius: 8px; }
.c-header { text-align: center; margin-bottom: 40px; }
.c-header h2 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 10px; }
.c-info { margin-top: 20px; font-weight: 600; color: var(--blue); }

.alpine-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.f-group { margin-bottom: 20px; }
.f-group label { display: block; font-size: 0.9rem; margin-bottom: 5px; font-weight: 600; }
.f-group input, .f-group select, .f-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-family: var(--font-body); }
.f-group input:focus, .f-group select:focus, .f-group textarea:focus { border-color: var(--blue); outline: none; }

/* Legal */
.legal-text { max-width: 800px; margin: 0 auto; }
.legal-text h1 { font-family: var(--font-head); }

/* Footer */
.club-footer { background: #1a1a1a; color: #ccc; padding: 60px 0 20px; margin-top: 100px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.f-brand h4 { font-family: var(--font-head); color: var(--white); margin-bottom: 5px; }
.f-nav a { margin-left: 20px; color: #ccc; }
.f-nav a:hover { color: var(--blue); }
.copyright { text-align: center; font-size: 0.8rem; border-top: 1px solid #333; padding-top: 20px; }

@media (max-width: 900px) {
    .hero-content h1 { font-size: 3rem; }
    .cta-wrapper { flex-direction: column; }
    .grid-3, .about-layout, .teaser-flex, .pricing-grid, .alpine-form .form-row { grid-template-columns: 1fr; }
    .pricing-grid { gap: 50px; } /* Space for scaled card */
    .teaser-flex { flex-direction: column; text-align: center; }
    .btn-link { float: none; display: inline-block; margin-top: 10px; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}