:root {
    /* Brown and Green Color Palette */
    --primary-brown: #8B4513;
    --secondary-brown: #A0522D;
    --light-brown: #D2691E;
    --dark-brown: #654321;

    --primary-green: #4A7C59;
    --secondary-green: #6B8E23;
    --light-green: #8FBC8F;
    --dark-green: #2F4F2F;

    --cream: #F5E6D3;
    --white: #FEFEFE;

    /* Typography */
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--dark-brown);
    line-height: 1.6;
    background-color: var(--cream);
}

/* Hero Section */
.hero {
    background-color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem 2rem 2rem;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: bold;
    color: var(--primary-brown);
    letter-spacing: 1rem;
    margin-bottom: 3rem;
    animation: fadeIn 1.5s ease-in;
}

.hero-image-link {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image-link:hover {
    transform: translateY(-5px);
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about {
    padding: 2rem 2rem 2rem 2rem;
    background-color: var(--cream);
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-brown);
    margin-bottom: 2rem;
    text-align: center;
}

.about p {
    font-size: 1.2rem;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Early Days Section */
.early-days-section {
    padding: 2rem 2rem;
}

.early-days-section h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-brown);
    margin-bottom: 3rem;
    text-align: center;
}

.early-days-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.early-days-gallery a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.early-days-gallery a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.early-days-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.early-days-gallery a:hover img {
    transform: scale(1.05);
}

/* Gallery Section */
.gallery-section {
    padding: 2rem 2rem 2rem 2rem;
    background-color: var(--cream);
}

.gallery-section h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-brown);
    margin-bottom: 3rem;
    text-align: center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 0.5rem;
        margin-bottom: 2rem;
    }

    .hero {
        padding: 3rem 1.5rem;
    }

    .about h2 {
        font-size: 2rem;
    }

    .about p {
        font-size: 1rem;
        text-align: left;
    }

    .about {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }

    .early-days-section {
        padding: 1.5rem 1.5rem;
    }

    .early-days-section h2 {
        font-size: 2rem;
    }

    .early-days-gallery {
        gap: 1rem;
    }

    .gallery-section {
        padding: 1.5rem 1.5rem;
    }

    .gallery-section h2 {
        font-size: 2rem;
    }

    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 0.3rem;
    }

    .early-days-gallery {
        grid-template-columns: 1fr;
    }

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

.sl-wrapper.simple-lightbox {
    background: white;
}

/* Share Button */
.share-button {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--primary-brown);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1000;
}

.share-button:hover {
    background-color: var(--secondary-brown);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.share-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.share-button svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .share-button {
        width: 48px;
        height: 48px;
        top: 16px;
        right: 16px;
    }

    .share-button svg {
        width: 20px;
        height: 20px;
    }
}