@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
    --bg-base: #fffdfc;      /* Ultra pale soft pink/cream */
    --bg-alt: #fff3f1;       /* Soft blush for sections */
    --text-main: #4a3b37;    /* Warm espresso dark brown */
    --text-muted: #7a6862;
    --accent: #e29587;       /* Soft muted coral/blush */
    --accent-hover: #c97e6f;
    --border: #f0ddd8;
    --white: #ffffff;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    --transition: all 0.3s ease;
    --border-radius: 20px; /* soft corners everywhere */
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-main);
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.8rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.95rem;
    text-decoration: none;
    color: var(--white) !important;
    background-color: var(--accent);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    box-shadow: 0 5px 20px rgba(226, 149, 135, 0.3);
}

.btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(226, 149, 135, 0.45);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--text-main) !important;
    border: 1px solid var(--border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.btn-secondary:hover {
    background-color: var(--bg-alt);
    color: var(--text-main);
    border-color: var(--accent);
}

/* Container */
.container {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;
}

/* Normal Top Nav */
nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    transition: var(--transition);
    background: transparent;
}

nav.scrolled {
    background: rgba(255, 253, 252, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    padding: 1rem 0;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
    margin: 0;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background-color: var(--bg-alt);
    border-bottom-right-radius: 80px;
    border-bottom-left-radius: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.hero-image {
    width: 100%;
    height: 65vh;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Sections */
section {
    padding: 7rem 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

/* Offerings List */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.offering-card {
    background: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.offering-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(226, 149, 135, 0.15);
}

.card-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.offering-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Split Image & Text */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.split-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Simple Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.gallery-grid img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Footer */
footer {
    background-color: var(--bg-alt);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .hero-grid, .split-section, .gallery-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero {
        padding-top: 120px;
        padding-bottom: 4rem;
        border-radius: 0;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-image {
        height: 50vh;
    }
    .split-image {
        order: -1;
    }
    .gallery-grid img {
        height: 300px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .nav-links {
        display: none;
    }
}
