/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
:root {
    --bg-main: #FDFBFB;
    --bg-secondary: #FFFFFF;
    --bg-accent: #F9F1F2; /* Soft Blush Pink */
    --text-main: #2A2A2A;
    --text-muted: #777777;
    --primary: #B76E79; /* Rose Gold */
    --primary-hover: #9E5B65;
    --border: #F0E6E7;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;
    --transition: all 0.3s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 1.05rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 5%;
}

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

.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.w-100 { width: 100%; }

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.btn-solid {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-solid:hover {
    background: var(--text-main);
    color: #fff;
}

.btn-solid-small {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary);
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-solid-small:hover {
    background: var(--text-main);
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--text-main);
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-outline-small {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: transparent;
    color: var(--text-main);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline-small:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.link-text {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-text i {
    transition: transform 0.3s ease;
}

.link-text:hover {
    color: var(--primary);
}

.link-text:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    padding: 1rem 5%;
    background: var(--bg-secondary);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-main);
}

.logo span {
    font-family: var(--font-body);
    color: var(--primary);
    font-weight: 300;
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links li a {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-main);
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0; width: 0; height: 1px;
    background: var(--primary);
    transition: var(--transition);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: var(--text-main);
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: var(--bg-accent);
}

.hero-content {
    padding: 8rem 5% 5rem 10%;
    z-index: 2;
    animation: fadeRight 1s ease forwards;
}

@keyframes fadeRight {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero .subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 450px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-image {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

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

.decorative-circle {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    z-index: 1;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
    padding: 8rem 0;
    background: var(--bg-main);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px;
}

.img-back {
    position: absolute;
    top: 0; right: 0;
    width: 70%; height: 80%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.img-front {
    position: absolute;
    bottom: 0; left: 0;
    width: 65%; height: 75%;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 10px solid var(--bg-main);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
    padding: 7rem 0;
    background: var(--bg-accent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--bg-secondary);
    padding: 3rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(183, 110, 121, 0.08);
    border-color: var(--primary);
}

.icon-wrapper {
    width: 60px; height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--bg-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .icon-wrapper {
    background: var(--primary);
    color: #fff;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.price {
    display: block;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 1px;
}

/* ==========================================================================
   Banner Quote Section
   ========================================================================== */
.banner {
    padding: 8rem 0;
    background: var(--bg-main);
    text-align: center;
}

.banner-content h2 {
    font-size: 2.5rem;
    font-style: italic;
    color: var(--primary);
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.4;
}

.banner-content p {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ==========================================================================
   Portfolio / Gallery Section
   ========================================================================== */
.portfolio {
    padding: 7rem 0;
    background: var(--bg-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.gallery-item {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   Booking Section
   ========================================================================== */
.booking {
    padding: 8rem 0;
    background: var(--bg-accent);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.booking-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.contact-details i {
    color: var(--primary);
    font-size: 1.2rem;
}

.booking-form-box {
    background: var(--bg-secondary);
    padding: 3.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border);
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    padding: 5rem 0 3rem;
    background: var(--bg-main);
    text-align: center;
}

footer .logo {
    margin-bottom: 1.5rem;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.socials a {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.socials a:hover {
    color: var(--primary);
}

footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ==========================================================================
   Sidebar & Responsive
   ========================================================================== */
.sidebar-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 999;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
}

.sidebar-overlay.active {
    opacity: 1; visibility: visible;
}

@media (max-width: 992px) {
    .hero { grid-template-columns: 1fr; }
    .hero-image { display: none; }
    .hero-content { padding: 10rem 5%; text-align: center; }
    .hero-buttons { justify-content: center; }
    
    .about-wrapper { grid-template-columns: 1fr; }
    .about-images { height: 400px; max-width: 500px; margin: 0 auto; }
    .about-text { text-align: center; }
    
    .booking-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .booking-text { text-align: center; }
    .contact-details p { justify-content: center; }
    
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .desktop-btn { display: none; }
    
    .nav-links {
        position: fixed;
        top: 0; right: -300px;
        width: 300px; height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 6rem 2rem;
        gap: 2rem;
        box-shadow: -5px 0 30px rgba(0,0,0,0.05);
        transition: 0.4s ease-in-out;
        z-index: 1001;
    }
    
    .nav-links.active { right: 0; }
    .nav-links li a { color: var(--text-main); font-size: 1.1rem; }
    
    .hero h1 { font-size: 3rem; }
    .services-grid { grid-template-columns: 1fr; }
    .banner-content h2 { font-size: 1.8rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .booking-form-box { padding: 2rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; gap: 1.2rem; }
}
