
body {
    font-family: 'Inter', sans-serif;
    background-color: #0e0e0e;
    color: #f0f0f0;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    scroll-behavior: smooth;
}

header {
    text-align: center;
    padding: 2.5rem 1rem;
    background: linear-gradient(145deg, #121212, #1c1c1c);
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 1rem;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 3rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li a {
    text-decoration: none;
    color: #ccc;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #fff;
}

.hero {
    text-align: center;
    padding: 7rem 2rem 5rem;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #0e0e0e 100%);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
}

.hero p {
    font-size: 1.2rem;
    color: #aaa;
}

.cta-btn {
    display: inline-block;
    background: #ffffff;
    color: #111;
    padding: 0.9rem 1.8rem;
    border-radius: 40px;
    margin-top: 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255,255,255,0.1);
}

.cta-btn:hover {
    background-color: #e6e6e6;
    transform: translateY(-2px);
}

.services {
    padding: 5rem 2rem;
    text-align: center;
}

.services h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.service-card {
    background: linear-gradient(145deg, #1a1a1a, #121212);
    border-radius: 24px;
    padding: 2rem;
    max-width: 300px;
    flex: 1 1 240px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.image-wrapper {
    width: 100%;
    height: 230px;
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 14px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin: 0.75rem 0 0.6rem;
    color: #fff;
}

.service-card p {
    font-size: 1rem;
    color: #bbb;
}

footer {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    padding: 2rem;
    background-color: #1c1c1c;
    border-top: 1px solid #333;
}

@media (max-width: 768px) {
    .service-grid {
        flex-direction: column;
        align-items: center;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.4rem;
    }
}



.about,
.why,
.memberships,
.book {
    padding: 5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about h2,
.why h2,
.memberships h2,
.book h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.about p {
    font-size: 1.05rem;
    color: #cccccc;
    line-height: 1.8;
}

.why ul,
.memberships ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.why li,
.memberships li {
    font-size: 1.05rem;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    background: linear-gradient(145deg, #151515, #0e0e0e);
    box-shadow: inset 0 0 4px rgba(255,255,255,0.05);
    color: #e0e0e0;
}

.book .cta-btn {
    background: #ffffff;
    color: #111;
    font-weight: 500;
    padding: 0.9rem 1.8rem;
    border-radius: 40px;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255,255,255,0.1);
    font-size: 1.05rem;
}

.book .cta-btn:hover {
    background-color: #e6e6e6;
    transform: translateY(-3px);
}



/* Global fade-in on load */
body {
    opacity: 0;
    animation: fadeIn 1.4s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Section reveal animation */
section {
    opacity: 0;
    transform: translateY(30px);
    animation: sectionFade 1.2s ease forwards;
    animation-delay: 0.5s;
}

@keyframes sectionFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Soft header refinements */
h1, h2, h3 {
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Button glow on hover */
.cta-btn:hover {
    background-color: #fff;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

/* Footer top glow border */
footer {
    border-top: 1px solid #333;
    box-shadow: 0 -1px 12px rgba(255, 255, 255, 0.05);
}

/* Optional soft gradient background (subtle) */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.01), transparent 70%),
                radial-gradient(circle at bottom right, rgba(255,255,255,0.01), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Instagram embed styling */
.instagram {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #0e0e0e;
}

.instagram h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.instagram iframe {
    border: none;
    width: 100%;
    max-width: 320px;
    height: 400px;
    margin: auto;
}
