/* Clean white hero + uniform image sizes across the page */

:root {
    --beige-bg: #f8f5f0;
    --soft-green: #a8d5ba;
    --gold-accent: #e0b070;
    --coral-pop: #ff6b6b;
    --text-dark: #000000;
    --text-light: #444444;
    --shadow-soft: 0 8px 32px rgba(0,0,0,0.12);
    --radius: 20px;
    --content-max: 1000px;       /* All major sections & images use this max-width */
}

body {
    margin: 0;
    font-family: system-ui, sans-serif;
    background: linear-gradient(135deg, var(--beige-bg), #e8f0f5);
    color: #333;
    line-height: 1.7;
}

nav {
    background: rgba(255,255,255,0.95);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

nav a {
    color: var(--text-dark);
    margin: 0 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

nav a:hover { color: var(--coral-pop); }

/* All images use this class – same size, style, alignment */
.image-container {
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    background: #fff;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Top intro – Business card LEFT, Profile RIGHT */
.intro-section {
    background: #fff;
    padding: 4rem 5% 2rem;
}

.intro-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: var(--content-max);
    margin: 0 auto;
}

.intro-left, .intro-right {
    flex: 1 1 45%;
    min-width: 320px;
}

/* Hero – White background, no light blue */
header#home {
    background: #ffffff;           /* Solid white – no gradient */
    padding: 5rem 0 7rem;
}

.hero-container {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 5%;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 6rem;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1 1 45%;
    min-width: 340px;
}

.hero-left h1 { font-size: 4.8rem; font-weight: 800; color: var(--gold-accent); margin: 0 0 1.2rem; line-height: 1.05; }
.hero-title { font-size: 1.8rem; color: var(--text-light); margin: 0 0 2rem; }
.hero-description { font-size: 1.3rem; line-height: 1.85; color: var(--text-dark); margin: 0 0 3rem; }
.hero-description p { margin: 0 0 1.4rem; }

.hero-right {
    flex: 1 1 55%;
    min-width: 400px;
}

/* Button under hero – centered */
.hero-button-wrapper {
    text-align: center;
    margin-top: 3rem;
}

/* Envision – same image size */
#envision {
    background: var(--soft-green);
    color: white;
    text-align: center;
    padding: 6rem 5%;
}

.envision-image {
    max-width: var(--content-max);
    margin: 2rem auto;
}

/* About */
section#about {
    padding: 6rem 5%;
    max-width: var(--content-max);
    margin: 0 auto;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: rgba(255,255,255,0.95);
    padding: 2.5rem;
    border-radius: var(--radius);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-soft);
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2.5rem;
    cursor: pointer;
    color: #000;
}

/* Button */
.book-btn {
    background: linear-gradient(135deg, var(--coral-pop), #ff7043);
    color: white;
    padding: 1.3rem 3.2rem;
    border: none;
    border-radius: 60px;
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(255,107,107,0.4);
    transition: all 0.35s ease;
    min-width: 280px;
}

.book-btn:hover {
    transform: translateY(-6px) scale(1.06);
    box-shadow: 0 20px 40px rgba(255,107,107,0.5);
}

/* Mobile uniformity */
@media (max-width: 1024px) {
    .intro-container, .hero-content {
        flex-direction: column;
        gap: 4rem;
        text-align: center;
    }
    .intro-left, .intro-right, .hero-left, .hero-right {
        flex: 1 1 100%;
    }
}