/* Imelda's Beauty Studio - Modern Terracotta Design */

:root {
    --terracotta: #E07A5F;
    --terra-light: #F2A390;
    --terra-dark: #C4604B;

    --cream: #F4F1DE;
    --off-white: #FDFBF7;
    --warm-brown: #9C6644;
    --deep-teal: #3D5A80;
    --sage: #81B29A;

    --charcoal: #2D2D2A;
    --gray: #6B6B68;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--off-white);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Minimal Navigation */
.minimal-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--off-white);
    border-bottom: 1px solid rgba(224, 122, 95, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.minimal-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--charcoal);
}

.minimal-logo i {
    color: var(--terracotta);
    font-size: 28px;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray);
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--terracotta);
}

.book-btn {
    padding: 12px 28px;
    background: var(--terracotta);
    color: white;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.book-btn:hover {
    background: var(--terra-dark);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
}

/* Split Hero */
.split-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    padding-top: 80px;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 80px 80px 80px 120px;
    background: var(--cream);
}

.hero-content {
    max-width: 600px;
}

.hero-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--terracotta);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 25px;
}

.hero-content h1 span {
    color: var(--terracotta);
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.cta-primary {
    padding: 16px 36px;
    background: var(--terracotta);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: var(--terra-dark);
    transform: translateY(-2px);
}

.cta-secondary {
    padding: 16px 36px;
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: var(--charcoal);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--terracotta);
    line-height: 1;
    margin-bottom: 5px;
}

.stat span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-image {
    height: 100%;
    position: relative;
}

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

.floating-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.floating-badge i {
    font-size: 32px;
    color: var(--terracotta);
    margin-bottom: 10px;
}

.floating-badge p {
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
}

/* Services Showcase */
.services-showcase {
    padding: 120px 0;
    background: var(--off-white);
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--terracotta);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.section-intro h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--charcoal);
}

.services-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-tile {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    transition: transform 0.3s;
}

.service-tile.large {
    grid-column: span 2;
}

.service-tile:hover {
    transform: translateY(-5px);
}

.service-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
}

.tile-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: white;
}

.tile-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 5px;
}

.tile-content p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.tile-content .price {
    display: inline-block;
    padding: 6px 16px;
    background: var(--terracotta);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--charcoal);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.view-all-btn:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
}

/* Why Choose */
.why-choose {
    padding: 120px 0;
    background: var(--cream);
}

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

.why-text h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 25px;
}

.lead {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 35px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    margin-bottom: 18px;
    color: var(--charcoal);
}

.benefits-list i {
    color: var(--terracotta);
    font-size: 20px;
}

.why-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.grid-image {
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
}

.grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials */
.testimonials-slider {
    padding: 120px 0;
    background: var(--off-white);
}

.center {
    text-align: center;
}

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-slide {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: var(--terracotta);
    font-size: 16px;
}

.testimonial-slide p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.author {
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
}

/* CTA Banner */
.cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--terra-dark) 100%);
    color: white;
    text-align: center;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cta-primary.large {
    padding: 18px 42px;
    background: white;
    color: var(--terracotta);
}

.cta-primary.large:hover {
    background: var(--cream);
}

.cta-secondary.large {
    padding: 18px 42px;
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-secondary.large:hover {
    background: white;
    color: var(--terracotta);
}

/* Footer */
.modern-footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--terracotta);
    font-size: 28px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(224, 122, 95, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--terracotta);
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-group h4 {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    margin-bottom: 20px;
}

.link-group a {
    display: block;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.link-group a:hover {
    color: var(--terracotta);
}

.link-group p {
    font-size: 14px;
    margin-bottom: 12px;
}

.link-group i {
    color: var(--terracotta);
    margin-right: 8px;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 1200px) {
    .container-wide {
        padding: 0 30px;
    }

    .split-hero {
        grid-template-columns: 1fr;
    }

    .hero-left {
        padding: 60px;
    }

    .hero-right {
        min-height: 500px;
    }

    .services-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .book-btn {
        display: none;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-left {
        padding: 40px 30px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .services-masonry {
        grid-template-columns: 1fr;
    }

    .service-tile.large {
        grid-column: span 1;
    }

    .testimonials-track {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}
