/* 
  Theme: Dra. Bruna - Editorial Luxury 
  Concept: Disruptive, High-End, Magazine Aesthetic
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400;1,600&family=Manrope:wght@300;400;500;600&display=swap');

:root {
    /* Palette */
    --bg-main: #FDFCF8;
    /* Crema / Warm Off-white */
    --bg-alt: #F4F1EA;
    /* Slightly darker stone */
    --text-main: #2C2828;
    /* Charcoal */
    --text-muted: #5D5555;

    --accent: #B96D66;
    /* Terracotta / Clay */
    --accent-dark: #8F4F49;
    --accent-light: #E8D6D4;

    --line-color: rgba(44, 40, 40, 0.1);

    /* Spacing */
    --container: 1300px;
    --gutter: 20px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-main);
}

.italic {
    font-style: italic;
    font-weight: 300;
}

.display-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    letter-spacing: -0.02em;
}

.subtitle {
    font-family: 'Manrope', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
    display: inline-block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section {
    padding: 120px 0;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--text-main);
    color: var(--bg-main);
    border: 1px solid var(--text-main);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--text-main);
}

.btn-outline {
    border: 1px solid var(--line-color);
    color: var(--text-main);
}

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

/* --- Header --- */
header {
    padding: 30px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-main);
    text-decoration: none;
}

.logo span {
    font-style: italic;
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 5.5rem;
    /* Massive */
    line-height: 0.95;
    margin-bottom: 30px;
}

.hero-content h1 span.block-italic {
    display: block;
    font-style: italic;
    font-weight: 300;
    margin-left: 4rem;
    /* Offset for aesthetic */
    color: var(--accent);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 400px;
    margin-bottom: 40px;
    color: var(--text-muted);
}

/* --- Hero Image --- */
.hero-image-wrapper {
    position: relative;
    height: 85vh;
    /* Slightly taller */
    border-radius: 200px 200px 20px 20px;
    /* Editorial Arch */
    overflow: hidden;
    box-shadow: 20px 20px 0px rgba(185, 109, 102, 0.2);
    /* Terracotta Shadow */
}

.hero-image-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top center;
}

/* --- Marquee --- */
.marquee-section {
    padding: 0;
    border-top: 1px solid var(--line-color);
    border-bottom: 1px solid var(--line-color);
    overflow: hidden;
    white-space: nowrap;
    background-color: var(--bg-alt);
}

.marquee-content {
    display: inline-block;
    padding: 20px 0;
    animation: scroll 20s linear infinite;
}

.marquee-content span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    text-transform: uppercase;
    margin: 0 40px;
    font-style: italic;
    color: var(--text-main);
    opacity: 0.8;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- About --- */
.about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img {
    height: 600px;
    border-radius: 20px 20px 200px 200px;
    /* Inverted Arch */
    overflow: hidden;
    position: relative;
    box-shadow: -20px 20px 0px rgba(44, 40, 40, 0.1);
    /* Charcoal Shadow */
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.about-text h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    max-width: 90%;
}

.about-text blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--accent);
    margin: 30px 0;
    line-height: 1.3;
    border-left: 2px solid var(--accent);
    padding-left: 20px;
}

/* --- Services (Editorial List) --- */
.services-section {
    background-color: var(--bg-alt);
}

.services-list {
    margin-top: 60px;
    border-top: 1px solid var(--line-color);
}

.service-item {
    display: grid;
    grid-template-columns: 0.5fr 1.5fr 1fr;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid var(--line-color);
    transition: background-color 0.3s;
    cursor: default;
}

.service-item:hover {
    background-color: rgba(185, 109, 102, 0.05);
    /* Tint of accent */
}

.service-num {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
}

.service-title {
    font-size: 2.5rem;
    /* Big */
    font-family: 'Cormorant Garamond', serif;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}


/* --- Reviews / Social Proof --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.review-card {
    border: 1px solid var(--line-color);
    padding: 40px;
    background-color: var(--bg-alt);
    transition: transform 0.3s ease;
}

.review-card:hover {
    background-color: var(--bg-main);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.review-stars {
    color: #F4B400;
    /* Google Star Color */
    font-size: 1rem;
    margin-bottom: 20px;
}

.review-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.4;
    color: var(--text-main);
    margin-bottom: 20px;
}

.review-author {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

/* --- Contact & Footer --- */
.contact {
    padding-bottom: 0;
    background-color: var(--text-main);
    color: var(--bg-main);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 100px 0;
}

.contact-left h2 {
    color: var(--bg-main);
    font-size: 4rem;
    margin-bottom: 30px;
}

.contact-link {
    display: block;
    font-size: 2rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--accent);
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px var(--gutter);
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .hero-content h1 span.block-italic {
        margin-left: 0;
    }

    .hero-content p {
        margin: 0 auto 30px;
    }

    .hero-image-wrapper {
        height: 50vh;
    }

    .about-grid,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }

    .service-title {
        font-size: 2rem;
    }

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

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
        /* Reduce padding significantly */
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--bg-main);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
        font-size: 1.5rem;
    }

    /* Mobile specific adjustments to ensure "Disruptive" layout breaks gracefully */
    .hero-content h1 {
        font-size: 3.2rem;
    }

    .display-text {
        font-size: 3rem;
    }

    .contact-left h2 {
        font-size: 2.5rem;
    }

    /* Adjust Editorial Arches for Mobile */
    .hero-image-wrapper {
        height: 60vh;
        border-radius: 100px 100px 20px 20px;
        box-shadow: 10px 10px 0px rgba(185, 109, 102, 0.2);
        margin-bottom: 0;
        /* Removing internal margin if any */
    }

    .about-img {
        height: 400px;
        border-radius: 20px 20px 100px 100px;
        box-shadow: -10px 10px 0px rgba(44, 40, 40, 0.1);
        margin-top: 0;
    }

    /* Marquee Spacing Fix */
    .marquee-section {
        margin: 60px 0;
        /* Add vertical spacing to separate from images */
    }

    .marquee-content span {
        font-size: 1.5rem;
        margin: 0 20px;
    }

    /* Reduce Reviews Size on Mobile */
    .review-card {
        padding: 25px;
        /* Smaller padding */
    }

    .review-text {
        font-size: 1.1rem;
        /* Smaller text */
        margin-bottom: 15px;
    }

    .review-stars {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    /* Hide Hero Button on Mobile */
    .hero-btns {
        display: none;
    }
}