/* Color Palette based on logo (adjusted for black background) */
:root {
    --primary-dark-bg: #000000; /* Main background color, now black */
    --secondary-dark-bg: #000000; /* Changed to pure black */
    --red-accent: #b02a2a; /* Red from "Olga Lopez" */
    --gold-accent: #a88d66; /* Gold/Bronze from logo ornamentation */
    --light-text: #f0f0f0; /* Lighter text for dark background */
    --medium-text: #ccc;
    --whatsapp-green: #25D366;
    --whatsapp-green-hover: #1DA851;
}

/* Basic Reset & Body Styles */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Crucial fix for horizontal scroll/white line */
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--light-text); /* Default text color now light */
    background-color: var(--primary-dark-bg); /* Body background is black */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    box-sizing: border-box;
    padding-bottom: 90px; /* Space for sticky WhatsApp CTA */
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--light-text); /* Headings are now light by default */
}


.main-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--secondary-dark-bg); /* This will now be black */
    box-shadow: 0 2px 15px rgba(0,0,0,0.3); /* Darker shadow for black background */
    text-align: center;
    flex-grow: 1;
}

/* Header - This entire section is effectively removed due to HTML change */
.studio-header {
    display: none; /* Hide the header completely */
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 100px 20px;
    background-size: cover;
    background-position: center;
    background-color: var(--primary-dark-bg); /* Fallback background, now black */
    color: var(--light-text);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 550px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65); /* Darker overlay for better text contrast on image */
}

.hero-main-title,
.hero-content-box {
    position: relative;
    z-index: 1;
}

.hero-main-title {
    font-size: 3.2em;
    margin-bottom: 40px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.9); /* More prominent text shadow */
    max-width: 800px;
    line-height: 1.2;
}

.hero-content-box {
    border: 1px solid rgba(255,255,255,0.4); /* Lighter border for contrast */
    padding: 30px 40px;
    max-width: 700px;
    background: rgba(0,0,0,0.55); /* Darker box background for contrast */
    border-radius: 8px;
}

.hero-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3em;
    margin-bottom: 20px;
    color: var(--gold-accent);
}

.hero-sub-title {
    font-size: 2em;
    margin-bottom: 30px;
    line-height: 1.3;
    color: var(--light-text);
}

.booking-button {
    display: inline-block;
    background-color: var(--red-accent);
    color: var(--light-text);
    padding: 15px 40px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.booking-button:hover {
    background-color: #8f2020;
}

/* About Us Section */
.about-us {
    padding: 60px 20px;
    text-align: left;
    background-color: var(--secondary-dark-bg); /* This will now be black */
}

.about-us h4, .contact-info h4 {
    font-size: 2.5em;
    color: var(--light-text); /* Headings in dark sections are light */
    margin-bottom: 40px;
    text-align: center;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    line-height: 1.8;
    color: var(--medium-text); /* Slightly softer text color */
    background-color: var(--primary-dark-bg); /* Text box background is black */
    border-left: 5px solid var(--red-accent);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2); /* Darker shadow */
    border-radius: 5px;
}

.about-text p {
    margin-bottom: 15px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3); /* Darker shadow */
}

/* Contact Info Section */
.contact-info {
    padding: 50px 20px;
    background-color: var(--primary-dark-bg); /* Use primary dark background */
    color: var(--light-text);
    margin-top: 50px;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-details a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.contact-details a:hover {
    color: var(--gold-accent);
}

.contact-details i {
    margin-right: 8px;
    color: var(--red-accent);
}

.social-icons {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icons a {
    font-size: 1.8em;
    color: var(--light-text);
}

.social-icons a:hover {
    color: var(--gold-accent);
}


/* Site Footer */
.site-footer {
    padding: 30px 20px;
    background-color: var(--primary-dark-bg); /* Use primary dark background */
    color: var(--medium-text); /* Slightly softer text for footer */
    font-size: 0.9em;
    width: 100%;
}

/* Sticky WhatsApp CTA */
.sticky-whatsapp-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-dark-bg); /* Use primary dark background */
    color: var(--light-text);
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3); /* Darker shadow */
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sticky-whatsapp-cta h2 {
    color: var(--light-text);
    font-size: 1.4em;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.sticky-whatsapp-cta .whatsapp-button {
    background-color: var(--whatsapp-green);
    color: var(--light-text);
    padding: 10px 25px;
    text-decoration: none;
    font-size: 1.1em;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.sticky-whatsapp-cta .whatsapp-button:hover {
    background-color: var(--whatsapp-green-hover);
}

.sticky-whatsapp-cta .whatsapp-button i {
    margin-right: 8px;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .hero-main-title {
        font-size: 2.5em;
    }
    .hero-sub-title {
        font-size: 1.6em;
    }
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    .about-text, .about-image {
        min-width: unset;
        width: 100%;
    }
    .about-image img {
        max-width: 80%;
    }
    .contact-details {
        flex-direction: column;
        gap: 15px;
    }
    .social-icons {
        margin-top: 15px;
    }
}

@media (max-width: 600px) {
    .hero-section {
        padding: 60px 15px;
        min-height: 400px;
    }
    .hero-main-title {
        font-size: 2em;
        margin-bottom: 25px;
    }
    .hero-content-box {
        padding: 20px;
    }
    .hero-quote {
        font-size: 1.1em;
    }
    .hero-sub-title {
        font-size: 1.3em;
        margin-bottom: 20px;
    }
    .booking-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    .about-us h4, .contact-info h4 {
        font-size: 2em;
        margin-bottom: 30px;
    }
    .about-text {
        padding: 15px;
    }
    .sticky-whatsapp-cta h2 {
        font-size: 1.2em;
    }
    .sticky-whatsapp-cta .whatsapp-button {
        padding: 8px 20px;
        font-size: 1em;
    }
    body {
        padding-bottom: 100px;
    }
}

/* Smallest mobile adjustments */
@media (max-width: 380px) {
    .hero-main-title {
        font-size: 1.7em;
    }
    .hero-sub-title {
        font-size: 1.1em;
    }
    .sticky-whatsapp-cta h2 {
        font-size: 1em;
    }
    .sticky-whatsapp-cta .whatsapp-button {
        font-size: 0.9em;
        padding: 7px 15px;
    }
}