@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Raleway:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Allura&display=swap');

body {
    font-family: 'Raleway', sans-serif;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.text-beige { color: #F5E6D3; }
.bg-beige { background-color: #F5E6D3; }
.border-beige { border-color: #F5E6D3; }

.gradient-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.6) 100%);
}

/* About page: quote bubble */
.quote-bubble {
    position: relative;
    background: #f8f8f8;
    border-left: 5px solid #F5E6D3;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.quote-bubble::before {
    content: "\201C";
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    font-size: 4rem;
    color: #ccc;
    opacity: 0.5;
    line-height: 1;
}

/* About page: large script statement */
.statement {
    width: 100%;
    padding: 90px 40px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #f5f5f6;
}

.statement p {
    margin: 0;
    max-width: 1200px;
    font-family: "Allura", "Brush Script MT", cursive;
    font-size: clamp(55px, 5.5vw, 105px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.5px;
    color: #c9a227;
}

/* Portfolio page: lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-content {
    position: relative;
    max-width: 92%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,.6);
}
.lightbox-close {
    position: absolute;
    top: -32px;
    right: -32px;
    color: white;
    font-size: 2.4rem;
    cursor: pointer;
    line-height: 1;
}
@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
        background-color: rgba(0,0,0,.45);
        border-radius: 999px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
    }
}
.lightbox-caption { color: white; margin-top: 0.75rem; text-align: center; font-size: 1.05rem; }

/* Services page: FAQ accordion */
.accordion-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: #f8f8f8;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}
.accordion-header:hover { background-color: #efefef; }
.accordion-content {
    padding: 1rem 1.5rem;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.accordion-content.active {
    max-height: 200px;
    transition: max-height 0.3s ease-in;
}
.accordion-icon { transition: transform 0.3s ease; }
.accordion-header.active .accordion-icon { transform: rotate(180deg); }

/* Full-page hero, shared by every page */
.hero-full {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
