/* =====================================================
   SYATT WEBSITE - MAIN STYLESHEET
   =====================================================
   
   Färgschema:
   - Guld: #c9a227
   - Guld ljus: #e8d48a
   - Guld mörk: #8b7019
   - Svart: #0a0a0a
   - Kolgrå: #1a1a1a
   - Mörkgrå: #2a2a2a
   - Grå: #888888
   - Vit: #f5f5f0
   
   ===================================================== */

:root {
    --gold: #c9a227;
    --gold-light: #e8d48a;
    --gold-dark: #8b7019;
    --black: #0a0a0a;
    --charcoal: #1a1a1a;
    --grey-dark: #2a2a2a;
    --grey: #888888;
    --white: #f5f5f0;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .serif {
    font-family: 'Cormorant Garamond', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* =====================================================
   NAVIGATION
   ===================================================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(10,10,10,0.98);
    padding: 16px 48px;
    backdrop-filter: blur(20px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: var(--white);
}

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

.nav-links a {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-login {
    background: var(--gold);
    color: var(--black) !important;
    padding: 10px 20px;
    opacity: 1 !important;
}

.nav-login:hover {
    background: var(--gold-light);
}

.nav-login::after {
    display: none;
}

/* Mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    padding: 16px 40px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    transition: all 0.4s ease;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(201, 162, 39, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

/* =====================================================
   SECTIONS - COMMON
   ===================================================== */
section {
    padding: 120px 48px;
}

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

.section-label {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--grey);
    max-width: 600px;
    margin-bottom: 48px;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.65) 50%, rgba(10,10,10,0.8) 100%),
                url('images/hero-mountain.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-subtitle {
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-content {
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
    animation: fadeUp 1.2s ease-out;
}

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

.hero-pretitle {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 32px;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--grey);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* =====================================================
   PAGE HEADER (för undersidor)
   ===================================================== */
.page-header {
    padding: 180px 48px 80px;
    background: var(--charcoal);
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--grey);
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   PHILOSOPHY SECTION
   ===================================================== */
.philosophy {
    background: linear-gradient(135deg, #f5f5f0 0%, #e8e8e3 100%);
}

.philosophy .section-label {
    color: var(--gold-dark);
}

.philosophy .section-title {
    color: var(--black);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-content p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 24px;
    line-height: 1.8;
}

.philosophy-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-style: italic;
    color: var(--gold-dark);
    line-height: 1.4;
    position: relative;
    padding-left: 40px;
}

.philosophy-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -20px;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}

/* =====================================================
   MEMBERSHIP SECTION
   ===================================================== */
.membership {
    background: var(--black);
}

.membership-preview {
    max-width: 450px;
    margin: 48px auto 0;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.membership-card {
    background: var(--charcoal);
    padding: 48px 36px;
    border: 1px solid var(--grey-dark);
    position: relative;
    transition: all 0.4s ease;
}

.membership-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
}

.membership-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--charcoal), rgba(201, 162, 39, 0.08));
}

.membership-card.featured::before {
    content: 'Rekommenderas';
    position: absolute;
    top: -12px;
    left: 32px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    font-weight: 600;
}

.membership-card h3 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 12px;
}

.membership-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 8px;
}

.membership-price span {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--grey);
}

.membership-desc {
    font-size: 0.9rem;
    color: var(--grey);
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--grey-dark);
}

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

.membership-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 0.9rem;
    color: rgba(245, 245, 240, 0.85);
}

.membership-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* =====================================================
   SUMMIT SECTION
   ===================================================== */
.summit, .summit-preview {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.summit-preview-grid, .summit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.summit-preview-content h2, .summit-info h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    margin-bottom: 16px;
}

.summit-preview-content h2 span, .summit-info h2 span {
    color: var(--gold);
}

.summit-location {
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.summit-preview-content p, .summit-info > p {
    font-size: 1.05rem;
    color: var(--grey);
    margin-bottom: 24px;
    line-height: 1.8;
}

.summit-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.summit-highlight {
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border-left: 2px solid var(--gold);
}

.summit-highlight h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.summit-highlight p {
    font-size: 0.9rem;
    color: var(--grey);
    margin: 0;
    line-height: 1.5;
}

.summit-badge {
    background: var(--gold);
    color: var(--black);
    padding: 60px 40px;
    text-align: center;
    position: relative;
}

.summit-badge::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid var(--gold);
    opacity: 0.4;
}

.summit-badge h3 {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.summit-badge .year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 8px;
}

.summit-badge .theme {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-style: italic;
}

.summit-badge .dates {
    margin-top: 24px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    line-height: 1.6;
}

/* =====================================================
   EVENTS SECTION
   ===================================================== */
.events, .events-preview {
    background: var(--charcoal);
}

.events-intro {
    max-width: 600px;
    margin-bottom: 48px;
}

.events-intro p {
    font-size: 1.05rem;
    color: var(--grey);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.event-card {
    padding: 32px;
    background: var(--black);
    border: 1px solid var(--grey-dark);
    transition: all 0.3s ease;
}

.event-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.event-freq {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.event-card h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 12px;
}

.event-card p {
    font-size: 0.85rem;
    color: var(--grey);
    line-height: 1.6;
}

.luma-embed-container {
    background: var(--black);
    border: 1px solid var(--grey-dark);
    padding: 40px;
    margin-top: 40px;
}

.luma-embed-container h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--white);
    text-align: center;
}

.luma-calendar-container {
    margin-top: 48px;
    border-radius: 8px;
    overflow: hidden;
}

.luma-calendar-container iframe {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */
.testimonials {
    background: linear-gradient(135deg, #f5f5f0 0%, #e8e8e3 100%);
    text-align: center;
}

.testimonials .section-label {
    color: var(--gold-dark);
}

.testimonials .section-title {
    color: var(--black);
}

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

.testimonial {
    padding: 40px;
    background: var(--white);
    border: 1px solid #ddd;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--black);
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 0.8rem;
    color: var(--gold-dark);
    letter-spacing: 1px;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact {
    background: var(--charcoal);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
}

.contact-info p {
    font-size: 1.05rem;
    color: var(--grey);
    margin-bottom: 24px;
    line-height: 1.8;
}

.contact-details {
    margin-top: 40px;
}

.contact-details a {
    display: block;
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 12px;
    transition: opacity 0.3s ease;
}

.contact-details a:hover {
    opacity: 0.7;
}

.contact-form {
    background: var(--black);
    padding: 40px;
    border: 1px solid var(--grey-dark);
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    text-align: center;
    padding: 100px 48px;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--black);
    margin-bottom: 16px;
}

.cta p {
    font-size: 1.1rem;
    color: rgba(0,0,0,0.7);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.cta .btn:hover {
    background: var(--white);
    color: var(--black);
}

/* =====================================================
   MEMBERS SECTION (inloggade)
   ===================================================== */
.members-dashboard {
    background: var(--black);
    min-height: 60vh;
}

.members-welcome {
    text-align: center;
    margin-bottom: 64px;
}

.members-welcome h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

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

.member-card {
    background: var(--charcoal);
    padding: 40px;
    border: 1px solid var(--grey-dark);
    text-align: center;
    transition: all 0.3s ease;
}

.member-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.member-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.member-card p {
    font-size: 0.9rem;
    color: var(--grey);
    margin-bottom: 24px;
}

/* =====================================================
   TEAM SECTION
   ===================================================== */
.team-section {
    background: var(--black);
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.team-intro p {
    font-size: 1.1rem;
    color: var(--grey);
    line-height: 1.8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 24px;
    border: 3px solid var(--gold);
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.team-member:hover .team-photo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.team-member .title {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.team-member p {
    font-size: 0.95rem;
    color: var(--grey);
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto 16px;
}

.team-member a {
    color: var(--gold);
    font-size: 0.85rem;
    transition: opacity 0.3s ease;
}

.team-member a:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
    background: var(--black);
    padding: 64px 48px 32px;
    border-top: 1px solid var(--grey-dark);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--grey);
    max-width: 300px;
    line-height: 1.6;
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: var(--grey);
    font-size: 0.9rem;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid var(--grey-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--grey);
}

/* =====================================================
   CONTENT PAGE STYLES
   ===================================================== */
.content-section {
    background: var(--black);
}

.content-section.alt {
    background: var(--charcoal);
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.content-block p {
    font-size: 1.05rem;
    color: var(--grey);
    margin-bottom: 24px;
    line-height: 1.8;
}

.content-block ul {
    list-style: none;
    margin-bottom: 24px;
}

.content-block ul li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--grey);
}

.content-block ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1024px) {
    .philosophy-grid,
    .summit-grid,
    .summit-preview-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .membership-grid,
    .members-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 16px 24px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10,10,10,0.98);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
    }

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

    .menu-toggle {
        display: flex;
    }

    section {
        padding: 80px 24px;
    }

    .page-header {
        padding: 140px 24px 60px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .summit-highlights {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
/* Fix: Knappar i ljusa sektioner (philosophy, testimonials) */
.philosophy .btn-secondary,
.testimonials .btn-secondary {
    color: var(--black);
    border-color: var(--black);
}

.philosophy .btn-secondary:hover,
.testimonials .btn-secondary:hover {
    background: var(--black);
    color: var(--white);
}
