/* 
  ========================================
  BY NINA - Premium Website Styles
  ========================================
*/

/* --- CSS Variables / Design System --- */
:root {
    /* Color Palette */
    --clr-bg-main: #FDFBF7; /* Soft cream */
    --clr-bg-soft: #F4EFEB; /* Light beige/stone for alternating sections */
    --clr-primary: #9A7E6F; /* Elegant light brown / taupe */
    --clr-primary-hover: #7E6355;
    --clr-text-main: #2C2A29; /* Soft black/dark brown */
    --clr-text-light: #6B635E; /* Muted text */
    --clr-accent: #E2C9C5; /* Blush pink */
    
    /* Typography */
    --font-main: 'Outfit', sans-serif;
    
    /* Spacing */
    --section-pad: 5rem 0;
    
    /* Transitions */
    --trans-fast: 0.3s ease;
    --trans-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Shadows */
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.03);
    --shadow-hover: 0 15px 35px rgba(0,0,0,0.06);
    
    /* Border Radius */
    --br-sm: 8px;
    --br-md: 16px;
    --br-lg: 24px;
}

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

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

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: var(--section-pad);
}

.bg-soft {
    background-color: var(--clr-bg-soft);
}

/* --- Typography Classes --- */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--clr-text-light);
    font-size: 1.1rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--clr-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--clr-primary);
    border-color: var(--clr-primary);
}

.btn-secondary:hover {
    background-color: var(--clr-primary);
    color: #fff;
}

.link-arrow {
    display: inline-block;
    margin-top: 1rem;
    color: var(--clr-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.link-arrow:hover {
    color: var(--clr-primary-hover);
    transform: translateX(5px);
}

/* --- Header & Nav --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--trans-fast);
    padding: 0.6rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
}

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

.nav-links a {
    font-size: 1rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--clr-primary);
    transition: var(--trans-fast);
}

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

.nav-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--clr-text-main);
    transition: var(--trans-fast);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    /* justify-content: center; removed to align content to the left over the dark gradient */
    background-image: url('assets/hero/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Dark gradient covers the left side completely, fading to transparent on the right */
    background: linear-gradient(to right, rgba(15, 15, 15, 0.98) 0%, rgba(15, 15, 15, 0.85) 45%, rgba(15, 15, 15, 0) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 4rem; /* Shifted slightly to the right */
    color: #fff;
}

.hero .badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: var(--clr-accent);
    color: var(--clr-text-main);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

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

/* --- About Section --- */
.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image {
    flex: 0.8;
    max-width: 450px;
    margin: 0 auto;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--br-lg);
    box-shadow: var(--shadow-hover);
    object-fit: cover;
    aspect-ratio: 4/5;
    display: block;
}

.about-image::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--clr-primary);
    border-radius: var(--br-lg);
    z-index: -1;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.about-text .subtitle {
    font-size: 1.2rem;
    color: var(--clr-primary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-text p {
    color: var(--clr-text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 2.5rem;
}

.category-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(154, 126, 111, 0.2);
    padding-bottom: 0.5rem;
}

.service-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--br-md);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: var(--trans-fast);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-info h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.service-info h4 span {
    font-size: 0.85rem;
    color: var(--clr-text-light);
    font-weight: 400;
    background: var(--clr-bg-soft);
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 10px;
}

.service-info p {
    font-size: 0.95rem;
    color: var(--clr-text-light);
}

.service-price {
    font-weight: 500;
    color: var(--clr-primary);
    font-size: 1.1rem;
    white-space: nowrap;
    margin-left: 1rem;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* --- Masonry Gallery & Reviews --- */
.gallery-columns {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-col > .masonry-item {
    margin-bottom: 0;
}



@media (max-width: 900px) {
    .gallery-columns {
        flex-direction: column;
    }
}

.masonry-item {
    border-radius: var(--br-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--trans-fast);
    display: flex;
    flex-direction: column;
}

.masonry-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.img-card {
    border-radius: var(--br-md);
    overflow: hidden;
}

/* Image & Video Cards */
.img-card img,
.img-card video {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Review Cards */
.review-card {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-card .quote {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--clr-text-main);
    line-height: 1.5;
}

.review-card .author {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--clr-text-main);
    opacity: 0.8;
}

/* Pastel Backgrounds for Reviews */
.bg-cream { background-color: #FDFBF7; }
.bg-blush { background-color: #F4EFEB; }
.bg-peach { background-color: #F9EBE0; }
.bg-lavender { background-color: #F0EDF5; }

.mb-1 { margin-bottom: 1rem; }

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

/* --- FAQ Section --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: var(--br-md);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-question .icon {
    font-size: 1.5rem;
    color: var(--clr-primary);
    transition: var(--trans-fast);
}

.faq-item.active .icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 200px; /* arbitrary max height for transition */
}

.faq-answer p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
}

/* --- Testimonials --- */
.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.stars {
    color: #D4AF37; /* Gold */
    font-size: 1.5rem;
    letter-spacing: 2px;
}



/* --- Contact Section --- */
.contact-container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--clr-text-light);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--clr-primary);
}

.info-block p {
    color: var(--clr-text-light);
    line-height: 1.8;
}

.mt-2 { margin-top: 1rem; }

.map-container {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: var(--br-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    aspect-ratio: 4/3;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.9);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    box-shadow: var(--shadow-soft);
}

/* --- Footer --- */
.footer {
    background-color: #2C2A29;
    color: #fff;
    padding: 4rem 0 2rem 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
}

.footer h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links a, .footer-social a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.8rem;
}

.footer-links a:hover, .footer-social a:hover {
    color: var(--clr-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--trans-slow), transform var(--trans-slow);
}

.fade-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity var(--trans-slow), transform var(--trans-slow);
}

.fade-left {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity var(--trans-slow), transform var(--trans-slow);
}

.fade-up.visible, .fade-right.visible, .fade-left.visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .about-container, .contact-container { flex-direction: column; gap: 2rem; }
    .footer-container { grid-template-columns: 1fr; gap: 2rem; }
    .about-image { max-width: 100%; }
}

@media (max-width: 768px) {
    .container { padding: 0 1rem; }
    
    .nav-links, .nav-btn { display: none; }
    
    .mobile-menu-toggle { display: flex; }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(253, 251, 247, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem;
        box-shadow: 0 10px 15px rgba(0,0,0,0.08);
        gap: 1.5rem;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .hero-content {
        margin-left: 0; /* Reset the extreme left margin for mobile */
        text-align: center;
        width: 100%;
    }

    .hero-overlay {
        /* Make the dark overlay more uniform on mobile so centered text is fully readable */
        background: linear-gradient(to right, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.8) 100%);
    }

    .hero h1 { font-size: 2.5rem; }
    .masonry-grid { column-count: 1; }
    
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
}
