/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-white: #ffffff;
    --color-off-white: #fafafa;
    --color-beige: #f5f1eb;
    --color-light-beige: #faf8f5;
    --color-rose: #f4e6e6;
    --color-peach: #f8e8d8;
    --color-lavender: #f0e8f0;
    --color-sage: #e8ede8;
    --color-grey: #6b6b6b;
    --color-light-grey: #e8e8e8;
    --color-dark-grey: #2c2c2c;
    --color-text: #333333;
    --color-text-light: #666666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin: 1rem 0;
    color: var(--color-text);
}

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-light);
    display: block;
    margin-bottom: 0.5rem;
}

.signature {
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    color: var(--color-text);
    display: block;
    margin-top: 1.5rem;
}

/* Header */
.header {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    padding-top: 6rem;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-light-beige) 50%, var(--color-white) 100%);
    overflow: hidden;
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(244, 230, 230, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(248, 232, 216, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(240, 232, 240, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.header > * {
    position: relative;
    z-index: 1;
}

/* Sticky Navigation */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.menu-toggle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text);
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 4px;
}

.menu-toggle:hover {
    color: var(--color-text-light);
    border-color: var(--color-light-grey);
}

/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    left: -400px;
    width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-light-beige) 50%, var(--color-rose) 100%);
    z-index: 1001;
    transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

.side-menu.active {
    left: 0;
}

.side-menu-close {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 2.5rem;
    color: var(--color-text);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    line-height: 1;
}

.side-menu-close:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: rotate(90deg);
}

.side-menu-content {
    padding: 5rem 3rem 3rem;
    height: 100%;
}

.side-menu-logo {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.side-menu-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-text);
    margin: 0 0 0.5rem 0;
}

.side-menu-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--color-text);
    margin: 0;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    margin-bottom: 0.5rem;
}

.menu-link {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--color-text);
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.3s ease;
    z-index: -1;
}

.menu-link:hover {
    color: var(--color-text);
    padding-left: 2rem;
}

.menu-link:hover::before {
    width: 100%;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.header-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 2rem;
    min-height: 700px;
    padding: 0 2rem;
}

.header-images {
    position: relative;
    width: 70%;
    height: 100%;
    min-height: 700px;
}

.header-image-large {
    position: absolute;
    width: 60%;
    height: 90%;
    min-height: 600px;
    left: 0;
    top: 5%;
    z-index: 1;
    border: 4px solid var(--color-white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    overflow: hidden;
    background: var(--color-off-white);
    visibility: visible;
}

.header-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.8s ease-in-out;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.header-image-small-left {
    position: absolute;
    width: 35%;
    height: 50%;
    min-height: 320px;
    left: 45%;
    bottom: 0;
    z-index: 2;
    border: 4px solid var(--color-white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    overflow: hidden;
    background: var(--color-off-white);
    visibility: visible;
}

.header-image-small-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.8s ease-in-out;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.header-image-small-right {
    position: absolute;
    width: 32%;
    height: 55%;
    min-height: 350px;
    right: 0;
    bottom: 0;
    z-index: 2;
    border: 4px solid var(--color-white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    overflow: hidden;
    background: var(--color-off-white);
    visibility: visible;
}

.header-image-small-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.8s ease-in-out;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.logo-container {
    position: relative;
    z-index: 5;
    text-align: center;
    width: 28%;
    padding: 2rem 1rem;
    flex-shrink: 0;
}

.logo {
    margin-bottom: 1rem;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 400;
    color: var(--color-text);
    margin: 0;
    line-height: 1;
}

.logo-sub {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--color-text);
    margin: 0;
    line-height: 1;
}

.tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-top: 1rem;
}

/* Quote Section */
.quote-section {
    position: relative;
    padding: 8rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-rose) 50%, var(--color-white) 100%);
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(248, 232, 216, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(232, 237, 232, 0.3) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.quote-section > * {
    position: relative;
    z-index: 1;
}

.quote-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--color-beige);
    opacity: 0.3;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.quote-text {
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text);
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
}


/* Bloom Section */
.bloom-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--color-light-beige) 0%, var(--color-white) 50%, var(--color-sage) 100%);
    position: relative;
}

.bloom-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 15%, rgba(244, 230, 230, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 85% 85%, rgba(248, 232, 216, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.bloom-section > * {
    position: relative;
    z-index: 1;
}

.bloom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bloom-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.bloom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.bloom-text {
    padding: 2rem;
}

.bloom-text .section-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-top: 1.5rem;
}

/* Handmade Section */
.handmade-section {
    padding: 6rem 2rem;
    background: var(--color-light-beige);
}

.handmade-box {
    max-width: 1200px;
    margin: 0 auto 4rem;
    background: var(--color-light-grey);
    padding: 4rem;
    text-align: center;
}

.handmade-images {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.handmade-image-1,
.handmade-image-2,
.handmade-image-3 {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.handmade-image-1 img,
.handmade-image-2 img,
.handmade-image-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.handmade-image-1:hover img,
.handmade-image-2:hover img,
.handmade-image-3:hover img {
    transform: scale(1.05);
}

/* Weddings Section */
.weddings-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-lavender) 50%, var(--color-white) 100%);
    text-align: center;
    position: relative;
}

.weddings-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 30%, rgba(244, 230, 230, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 20% 70%, rgba(232, 237, 232, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.weddings-section > * {
    position: relative;
    z-index: 1;
}

.weddings-content {
    max-width: 800px;
    margin: 0 auto;
}

.weddings-content .section-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin: 2rem 0;
}

.cta-link {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: var(--color-text);
    text-decoration: none;
    display: inline-block;
    margin-top: 2rem;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: var(--color-text-light);
}



/* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.grid-item {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.grid-item:hover img {
    transform: scale(1.1);
}

/* Footer */
.footer {
    position: relative;
    padding: 6rem 2rem 2rem;
    background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-light-beige) 50%, var(--color-rose) 100%);
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(248, 232, 216, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(240, 232, 240, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.footer > * {
    position: relative;
    z-index: 1;
}

.footer-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: var(--color-beige);
    opacity: 0.2;
    border-radius: 50% 50% 0 0;
    filter: blur(40px);
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.footer-left {
    flex: 1;
}

.footer-question {
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.footer-cta {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text);
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-social {
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-icon {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-grey);
    text-decoration: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--color-text);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--color-light-grey);
    text-align: center;
}

.footer-bottom p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-content {
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .header-images {
        width: 65%;
        min-height: 500px;
    }

    .header-image-large {
        width: 55%;
        height: 80%;
        min-height: 400px;
    }

    .header-image-small-left {
        width: 32%;
        height: 40%;
        min-height: 200px;
        left: 40%;
    }

    .header-image-small-right {
        width: 30%;
        height: 45%;
        min-height: 220px;
    }

    .logo-container {
        width: 32%;
        padding: 1.5rem 0.5rem;
    }

    .logo-main {
        font-size: 4rem;
    }

    .logo-sub {
        font-size: 3rem;
    }

    .bloom-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .bloom-image {
        order: 1;
    }

    .bloom-text {
        order: 2;
    }

    .handmade-images {
        grid-template-columns: 1fr;
    }

    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sticky-nav {
        padding: 1rem 1.5rem;
    }

    .menu-toggle {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .side-menu {
        width: 100%;
        left: -100%;
    }

    .side-menu-content {
        padding: 4rem 2rem 2rem;
    }

    .side-menu-logo h2 {
        font-size: 2rem;
    }

    .side-menu-logo h3 {
        font-size: 1.5rem;
    }

    .menu-link {
        font-size: 1rem;
        padding: 0.9rem 1.2rem;
    }

    .header {
        min-height: auto;
        padding: 1rem;
        padding-top: 5rem;
    }

    .header-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 0.5rem;
        height: 100vh;
        max-height: 800px;
    }

    .header-images {
        display: contents;
    }

    /* 1st part - Top left image */
    .header-image-large {
        position: relative;
        width: 100%;
        height: 100%;
        left: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
        margin: 0;
        transform: none !important;
        grid-column: 1;
        grid-row: 1;
    }

    /* 2nd part - Logo/wording in top right */
    .logo-container {
        grid-column: 2;
        grid-row: 1;
        width: 100%;
        height: 100%;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0;
    }

    /* 3rd part - Bottom left image */
    .header-image-small-left {
        position: relative;
        width: 100%;
        height: 100%;
        left: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
        margin: 0;
        transform: none !important;
        grid-column: 1;
        grid-row: 2;
    }

    /* 4th part - Bottom right image */
    .header-image-small-right {
        position: relative;
        width: 100%;
        height: 100%;
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
        margin: 0;
        transform: none !important;
        grid-column: 2;
        grid-row: 2;
    }

    .logo-main {
        font-size: 3rem;
    }

    .logo-sub {
        font-size: 2.5rem;
    }

    .quote-section {
        padding: 4rem 1.5rem;
    }

    .quote-text {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .bloom-section,
    .handmade-section,
    .weddings-section {
        padding: 4rem 1.5rem;
    }

    .bloom-image {
        height: 350px;
    }

    .handmade-box {
        padding: 2.5rem 1.5rem;
    }

    .handmade-image-1,
    .handmade-image-2,
    .handmade-image-3 {
        height: 350px;
    }

    .gallery-contact-section {
        grid-template-columns: 1fr;
        height: auto;
    }

    .gallery-box,
    .contact-box {
        height: 400px;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }

    .grid-item {
        height: 300px;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-right {
        text-align: left;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .footer {
        padding: 4rem 1.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .logo-main {
        font-size: 2.5rem;
    }

    .logo-sub {
        font-size: 2rem;
    }

    .quote-text {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .box-overlay h3 {
        font-size: 1.5rem;
    }
}

/* Smooth Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bloom-text,
.handmade-box,
.weddings-content {
    animation: fadeIn 0.8s ease-out;
}

/* Image Loading */
img {
    display: block;
    max-width: 100%;
    height: auto;
}


/* Page Title Section */
.page-title-section {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--color-light-beige) 0%, var(--color-white) 50%, var(--color-sage) 100%);
}

.page-title-section .section-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-top: 2rem;
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 2rem;
    background: var(--color-white);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-view {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1rem 2rem;
    border: 2px solid var(--color-white);
    border-radius: 4px;
    transition: background 0.3s ease, color 0.3s ease;
}

.gallery-item:hover .gallery-view {
    background: var(--color-white);
    color: var(--color-text);
}

.no-images {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--color-text-light);
    font-family: 'Montserrat', sans-serif;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--color-white);
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 2001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: var(--color-white);
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
    z-index: 2001;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Story Section */
.story-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--color-light-beige) 0%, var(--color-white) 50%, var(--color-sage) 100%);
    position: relative;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 15%, rgba(244, 230, 230, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 85% 85%, rgba(248, 232, 216, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.story-section > * {
    position: relative;
    z-index: 1;
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-text {
    padding: 2rem;
}

.story-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-top: 1.5rem;
}

.story-description p {
    margin-bottom: 1.5rem;
}

/* Values Section */
.values-section {
    padding: 6rem 2rem;
    background: var(--color-light-beige);
}

.values-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin: 1rem 0;
    color: var(--color-text);
}

.value-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-top: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-light-beige) 50%, var(--color-white) 100%);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    padding: 2rem;
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.contact-item a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--color-text);
}

.contact-social {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.contact-social-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--color-text-light);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-light-grey);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    color: var(--color-text);
    border-color: var(--color-text);
    background: var(--color-light-beige);
}

/* Contact Form */
.contact-form-container {
    padding: 2rem;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-light-grey);
    border-radius: 4px;
    color: var(--color-text);
    background: var(--color-white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-text);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    background: var(--color-text);
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 1rem;
}

.form-submit:hover {
    background: var(--color-text-light);
    transform: translateY(-2px);
}

.form-submit:active {
    transform: translateY(0);
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .story-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .values-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        min-height: 30vh;
        padding: 6rem 1.5rem 3rem;
    }

    .page-title-section {
        padding: 3rem 1.5rem;
    }

    .gallery-section {
        padding: 3rem 1.5rem;
    }

    .gallery-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item {
        height: 300px;
    }

    .story-section {
        padding: 4rem 1.5rem;
    }

    .story-image {
        height: 400px;
    }

    .values-section {
        padding: 4rem 1.5rem;
    }

    .contact-section {
        padding: 4rem 1.5rem;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }
}

