@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@400;500;700&family=Lato:wght@400;700&family=Playfair+Display:wght@400;700&display=swap');


:root {
    --pink: #d4bdb8;
    --black: #111;
    --white: #fff;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--white, #fff);
    color: var(--black, #111);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant', serif;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.landing-header {
    background: var(--white, #fff);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 1rem 0;
}

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

.nav-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.burger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--black, #111);
    cursor: pointer;
    align-self: flex-end;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

/* Desktop nav */
.nav-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
    transition: max-height 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--black, #111);
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: 'Cormorant', serif;
}

.nav-logo img {
    height: 50px;
}

.hero-nav {
    position: absolute;
    top: 50%;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.nav-arrow {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    pointer-events: auto;
    cursor: pointer;
}

.btn {
    background: var(--black, #111);
    color: var(--white, #fff);
    padding: 0.75rem 2rem;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: inline-block;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
}

/* Footer */
.footer {
    background: var(--black, #111);
    color: #eee;
    padding: 3rem 1rem;
    font-family: 'Cormorant', serif;
}

.footer-main {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    font-size: 0.95rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Lato', sans-serif;
}

.footer-column p,
.footer-column li {
    font-size: 0.9rem;
    line-height: 1.7;
    font-family: 'Lato', serif;
}

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

.footer-logo {
    font-size: 3rem;
    font-weight: bold;
    color: #ccc;
    margin-bottom: 0.5rem;
    font-family: 'Lato', sans-serif;
}

.footer-desc {
    font-size: 0.8rem;
    line-height: 1.3;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.social-icon {
    display: inline-block;
    padding: 0.3rem 0.6rem;
    text-align: center;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
}

/* Mobile styles */
@media (max-width: 768px) {
    .burger {
        display: block;
    }

    .nav-content {
        flex-direction: column;
        gap: 1rem;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .nav-content.open {
        max-height: 500px;
        opacity: 1;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0.5rem;
    }

    .nav-links a {
        padding: 0.5rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-logo {
        margin: 1rem 0;
        text-align: center;
    }

    .nav-logo img {
        height: 40px;
    }

    .hero {
        padding: 5rem 1.5rem;
    }

    .hero-content {
        margin-left: 0;
        text-align: center;
    }

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

    .btn {
        font-size: 0.8rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 2rem;
    }

    .footer-social {
        justify-content: center;
    }
}

.hero {
    padding: 8rem 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 700px;
}

.custom-hero {
    background-color: #e2e0d2;
    background-image: url('/images/hero.png');
    background-position: calc(100% - 200px) center;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 8rem 7rem;
    min-height: 700px;
}

.hero-content {
    max-width: 600px;
    margin-left: 8%;
    color: #111;
}

.hero-title {
    font-family: 'Cormorant', serif;
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #111;
    white-space: pre-line;
}

.hero-btn {
    background: #111;
    color: #fff;
    padding: 0.85rem 2.2rem;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    display: inline-block;
    border: none;
}

@media (max-width: 768px) {
    .custom-hero {
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        background-position: top center;
        background-size: cover;
        padding: 2rem 1.5rem 4rem;
        text-align: center;
        min-height: 90vh;
    }

    .hero-content {
        background: rgba(255, 255, 255, 0.8);
        padding: 1.5rem;
        border-radius: 8px;
        margin-top: auto;
    }

    .hero-title {
        font-size: 1.8rem;
        color: #111;
        margin-bottom: 1rem;
    }

    .hero-btn {
        font-size: 0.85rem;
        padding: 0.75rem 1.8rem;
    }
}

@media (max-width: 1024px) {
    .custom-hero {
        background-position: center center;
        background-size: cover;
        padding: 4rem 2rem;
        flex-direction: column;
        justify-content: flex-end;
    }

    .hero-content {
        margin-left: 0;
        text-align: center;
        max-width: 100%;
        background: rgba(255, 255, 255, 0.7);
        padding: 1.2rem;
        border-radius: 8px;
    }
}

.nav-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex: 1 1 0;
    justify-content: flex-end;
}

.nav-links:first-of-type {
    justify-content: flex-end;
}

.nav-links:last-of-type {
    justify-content: flex-start;
}

.nav-logo {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1024px) {
    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }
    .nav-links {
        flex: unset;
        justify-content: center;
    }
    .nav-logo {
        margin: 1rem 0;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@400;500;700&family=Lato:wght@400;700&family=Playfair+Display:wght@400;700&display=swap');

/* CONTENT */
.landing-content {
    font-size: 1.125rem; /* ~18px */
    line-height: 1.9;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem;
    box-sizing: border-box;
}

.landing-content > div {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
}

/* Typography */
.landing-content p {
    font-size: 1.125rem;
    line-height: 1.9;
    text-align: left;
    color: #444;
}

.landing-content h1 {
    font-size: 2rem;
    font-family: 'Lato', serif;
    font-weight: 700;
    text-align: center;
}

.landing-content h2 {
    font-size: 1.625rem;
    font-family: 'Lato', serif;
    font-weight: 700;
    text-align: center;
}

.landing-content h3 {
    font-size: 1.375rem;
    font-family: 'Lato', serif;
    font-weight: 600;
    text-align: center;
}

.landing-content h4,
.landing-content h5,
.landing-content h6 {
    font-family: 'Lato', serif;
    font-weight: 600;
    text-align: center;
}

.landing-content strong,
.landing-content u {
    display: inline;
    font-weight: 700;
}

.landing-content h2 + p,
.landing-content h3 + p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

/* Lists */
.landing-content ul,
.landing-content ol {
    padding-left: 1.75rem;
    font-size: 1.125rem;
    line-height: 1.9;
    color: #444;
    text-align: left;
    list-style-position: outside;
}

.landing-content li {
    margin-bottom: 0.75rem;
}

/* Blockquote */
.landing-content blockquote {
    margin: 2.5rem auto;
    padding: 1.5rem 2rem;
    background: #f9f4f2;
    border-left: 4px solid var(--pink, #d4bdb8);
    font-style: italic;
    color: #555;
    max-width: 700px;
    text-align: center;
}

/* Images */
.landing-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 2rem auto;
}

.landing-content p:has(img:only-child):has(+ p img:only-child),
.landing-content p:has(img:only-child):has(+ p:has(img:only-child)) {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}
.landing-content p:has(img:only-child):has(+ p img:only-child) img {
    max-width: 48%;
    margin: 0;
}

.landing-content .elementor-section,
.landing-content .elementor-container,
.landing-content .elementor-widget-wrap {
    all: unset;
    display: contents;
}

/* Horizontal rule */
.landing-content hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 3rem 0;
}

@media (max-width: 640px) {
    .landing-content { font-size: 1rem; }
    .landing-content h2 { font-size: 1.5rem; }
    .landing-content h3 { font-size: 1.25rem; }
}

.landing-content { text-align: left; }

.landing-content h1,
.landing-content h2,
.landing-content h3,
.landing-content h4,
.landing-content h5,
.landing-content h6 {
    text-align: center !important;
    margin-top: 0;
    margin-bottom: .75rem;
}

.landing-content > div > :is(h2,h3) + p {
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

.landing-content p { text-align: left !important; }

.landing-content ul,
.landing-content ol {
    list-style: disc outside;
    padding-left: 1.25rem;
    margin: .25rem 0 1.25rem;
    text-align: left !important;
}
.landing-content li { margin: .35rem 0; }
