@import url('https://fonts.googleapis.com/css2?family=Alice&family=Bitter:ital,wght@0,100..900;1,100..900&family=Molle&display=swap');

:root {
    --pure-white: #FFFFFF;
    --neutral-grey: #ECEBE6;
    --antique-gold: #b48e56;
    --transformative-teal: #23545b;
    --deep-burgundy: #3c2a3d;

    --titles-font:  'Alice', serif;
    --main-font: 'Bitter', serif;
    --enhe-font: 'Molle', cursive; 

    --max-width-page:1200px;
}

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

body {
    font-family: var(--main-font);
    background-color: var(--pure-white);
    color: var(--deep-burgundy);
    line-height: 1.7;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    /* background-color: var(--deep-burgundy); */
    position: sticky;
    top: 0;
    z-index: 100;
    margin: 0 auto;
    max-width: var(--max-width-page);
    /* position: relative; */
}

nav::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    z-index: -1;
    background-color: var(--deep-burgundy);
    border-bottom: 1px solid var(--neutral-grey);

}

nav .logo {
    font-family: var(--titles-font);
    font-size: 1.5rem;
    color: var(--antique-gold);
    font-weight: 600;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--pure-white);
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--antique-gold);
}

/* Hero Section */
.hero {
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 0 auto;
    max-width: var(--max-width-page);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    z-index: -1;
    background-color: var(--neutral-grey);
}

.hero-content h1 {
    font-family: var(--titles-font);
    font-size: 2.5rem;
    color: var(--deep-burgundy);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.hero-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    color: var(--transformative-teal);
    font-size: 0.9rem;
    object-fit: cover;
    border: solid;
    margin: auto;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.9rem 1.8rem;
    border: 2px solid;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--main-font);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background-color: var(--transformative-teal);
    color: var(--pure-white);
    border-color: var(--transformative-teal);
}

.btn-primary:hover {
    background-color: var(--deep-burgundy);
    border-color: var(--deep-burgundy);
}

.btn-secondary {
    background-color: transparent;
    color: var(--antique-gold);
    border-color: var(--antique-gold);
}

.btn-secondary:hover {
    background-color: var(--antique-gold);
    color: var(--pure-white);
}

/* Philosophy Section */
.philosophy {
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 0 auto;
    max-width: var(--max-width-page);
    position: relative;
}

.philosophy::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    z-index: -1;
    background-color: var(--transformative-teal);
}

.philosophy-image {
    width: 100%;
    height: 350px;
    /* background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%); */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.philosophy-content h2 {
    font-family: var(--titles-font);
    font-size: 2rem;
    color: var(--antique-gold);
    margin-bottom: 1.5rem;
}

.philosophy-content p {
    margin-bottom: 1.2rem;
    color: var(--neutral-grey);
    font-size: 1rem;
}

/* Offerings Section */
.offerings {
    padding: 4rem 5%;
    margin: 0 auto;
    max-width: var(--max-width-page);
    position: relative;
}

.offerings::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    z-index: -1;
    background-color: var(--neutral-grey);
}

.offerings h2 {
    font-family: var(--titles-font);
    font-size: 2rem;
    color: var(--deep-burgundy);
    margin-bottom: 3rem;
    text-align: center;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.offering-card {
    background-color: var(--pure-white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--antique-gold);
    transition: transform 0.3s, box-shadow 0.3s;
}

.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.offering-card h3 {
    font-family: var(--titles-font);
    color: var(--deep-burgundy);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.offering-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.offering-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

/* Contact Section */
.contact {
    color: var(--pure-white);
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 0 auto;
    max-width: var(--max-width-page);
    position: relative;
}

.contact::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    z-index: -1;
    background-color: var(--deep-burgundy);
}

.contact h2 {
    font-family: var(--titles-font);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    grid-column: 1 / -1;
    color: var(--antique-gold);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid var(--neutral-grey);
    border-radius: 4px;
    font-family: var(--main-font);
    background-color: var(--pure-white);
    color: var(--deep-burgundy);
    font-size: 0.95rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--antique-gold);
    box-shadow: 0 0 0 3px rgba(180, 142, 86, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.contact-info p {
    font-size: 1rem;
    line-height: 1.7;
}

.contact-info a {
    color: var(--antique-gold);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--neutral-grey);
}

.booking-button {
    background-color: var(--antique-gold);
    color: var(--deep-burgundy);
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s;
    display: inline-block;
    font-family: var(--main-font);
}

.booking-button:hover {
    background-color: var(--neutral-grey);
}

/* Footer */
footer {
    border-top: 1px solid var(--neutral-grey);
    padding: 2rem 5%;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    margin: 0 auto;
    max-width: var(--max-width-page);
    position: relative;
}

footer::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    z-index: -1;
    background-color: var(--pure-white);
}

.social-icon {
    width: 28px;
}


/* Responsive */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 1rem;
        font-size: 0.85rem;
    }

    .hero,
    .philosophy {
        grid-template-columns: 1fr;
        padding: 2.5rem 5%;
    }

    .hero-content h1,
    .philosophy-content h2,
    .offerings h2,
    .contact h2 {
        font-size: 1.8rem;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .contact {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
    nav {
        position: static;
    }
}