/* Design tokens */
:root {
    --font: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --bg-dark: #1a1a1a;
    --bg-header: linear-gradient(135deg, #1f1f1f 0%, #2d2d2d 100%);
    --accent: #d4a017;
    --accent-hover: #e8b82a;
    --text: #f5f5f5;
    --text-muted: #b0b0b0;
    --card-bg: rgba(0, 0, 0, 0.65);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    --radius: 12px;
    --radius-sm: 8px;
}

/* General Styles */
* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: url("image5.jpeg") no-repeat center center fixed;
    background-size: cover;
    position: relative;
    color: #333;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.55) 100%);
    z-index: -1;
}

a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent);
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: var(--bg-header);
    color: white;
    position: relative;
    box-shadow: var(--shadow);
}

header h1 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

header h1 a:hover {
    color: var(--accent);
}

.logo {
    position: absolute;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
    width: 48px;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Main Content */
main {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    flex: 1;
    align-items: flex-start;
}

/* Hero / Welcome (index) */
.Welcome {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.journey {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #444;
    margin: 0;
    font-weight: 500;
}

/* Navigation */
nav {
    position: absolute;
    top: 50px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: var(--card-bg);
    padding: 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

nav a {
    color: var(--text);
    background: transparent;
    padding: 10px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.25s ease;
    text-align: center;
    box-shadow: none;
}

nav a:hover {
    background: var(--accent);
    color: #1a1a1a;
    border-color: var(--accent);
    transform: translateX(4px);
}

/* Instagram Section */
section {
    text-align: center;
    margin: 24px 0;
    padding: 16px;
}

section p {
    margin: 0 0 8px 0;
    color: #444;
    font-weight: 500;
}

#instagram-link {
    font-weight: 600;
    color: #c13584;
    text-decoration: none;
    transition: color 0.2s ease;
}

#instagram-link:hover {
    color: #e1306c;
}

/* Footer */
footer {
    background: var(--bg-header);
    color: var(--text-muted);
    text-align: center;
    padding: 20px 16px;
    position: static;
    width: 100%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

footer p:first-of-type {
    font-style: italic;
    font-weight: 500;
    color: var(--text);
    margin: 0 0 12px 0;
}

.footer-logo p {
    margin: 4px 0 0 0;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Image gallery */
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 100px;
    margin-bottom: 100px;
    margin-left: 30px;
    margin-right: 250px;
    flex-wrap: nowrap;
}

.image-container img {
    width: 200px;
    height: auto;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.image-container img:hover {
    transform: scale(1.08);
    z-index: 2;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

/* Review Section */
.reviews {
    padding: 28px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    color: var(--accent);
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,0.08);
}

.reviews h2 {
    font-size: clamp(1.35rem, 3vw, 1.5rem);
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--accent);
}

.review-box {
    background: rgba(255, 255, 255, 0.12);
    padding: 20px 24px;
    margin: 10px 0;
    border-radius: var(--radius-sm);
    font-style: italic;
    border: 1px solid rgba(255,255,255,0.2);
    transition: background 0.2s ease;
    color: var(--accent);
}

.review-box:hover {
    background: rgba(255, 255, 255, 0.18);
}

.review-box p {
    margin: 8px 0;
    color: var(--accent);
}

.reviews .review-box:not(:last-child) {
    margin-bottom: 16px;
}

/* Coach Marvi */
#bio-text h2 {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

#bio-text blockquote {
    text-align: left;
    margin: auto;
    padding: 16px 24px 16px 20px;
    padding-right: 250px;
    padding-left: 20px;
    border-left: 4px solid var(--accent);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #2a2a2a;
    background: rgba(255,255,255,0.5);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    box-shadow: var(--shadow);
}

.contact-p {
    font-size: 1.15rem;
    font-weight: 500;
    color: #2a2a2a;
}

.contact-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-logo img {
    width: 22px;
    height: auto;
}

main > div h2 {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}
/* Mobile */
@media screen and (max-width: 768px) {
    body {
        font-size: 15px;
        padding: 10px;
    }

    header {
        padding: 14px 16px;
        flex-wrap: wrap;
    }

    header h1 {
        font-size: 1.15rem;
        text-align: center;
    }

    .journey {
        text-align: center;
        font-size: 1.05rem;
    }

    .Welcome {
        text-align: center;
        font-size: 1.5rem;
    }

    .logo {
        width: 40px;
    }

    main {
        display: block;
        padding: 24px 16px;
    }

    .image-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 24px 0;
        margin-left: 0;
        margin-right: 0;
    }

    .image-container img {
        width: 100%;
        max-width: 280px;
        margin-bottom: 12px;
    }

    .marvibio {
        width: 100%;
    }

    #bio-text blockquote {
        text-align: left;
        margin: auto;
        padding: 14px 16px 14px 16px;
        padding-right: 16px;
        padding-left: 16px;
        border-left: 4px solid var(--accent);
        font-style: italic;
        font-size: 1rem;
    }

    nav {
        position: static;
        flex-direction: column;
        gap: 10px;
        padding: 20px;
        align-items: stretch;
        margin-top: 24px;
    }

    nav a:hover {
        transform: none;
    }

    footer {
        padding: 20px 16px;
        text-align: center;
    }

    .footer-logo {
        position: static;
        margin-top: 12px;
    }

    .footer-logo p {
        font-size: 0.7rem;
    }

    nav a {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    #instagram-link {
        font-size: 1rem;
    }
}