body{
    font-family: "Fira Sans", sans-serif;
    color: #004030;
    background-color: #f4f4f4;
}

h1{
    font-size: clamp(1.5rem, 5vw, 2rem);
}

.site-main{
    display: grid;
    grid-template-columns: 2fr 1fr;
    /* height: 100vh; */
    /* gap: 30px; */
    box-sizing: border-box;
}

.site-content{
    width: 90%; 
    margin: 0 auto;
    display: block;
}

/* header {
    width: 100%;
    padding: 10px 20px;
    background-color: #f8f9fa;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.logo {
    font-family: 'Fira Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    letter-spacing: 0.05em;
} */

.left-column {
    /* background-color: yellow; */
    padding: 20px;
    padding-left: 40px;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* text-align: justify; */
}

.left-column p {
    color: #004030;
    margin-bottom: 20px;
    /* padding-right: 40px; */
    width: 80%;
    font-weight: 400;
    font-size: clamp(0.8rem, 2.5vw, 1rem);;
}

.button-container {
    display: flex;
    align-items: center;
}

/* Button styling */
.check-work-button {
    background-color: #004030;
    color: #F6DFD8;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 25px; /* Rounded corners for rectangular-circular shape */
    padding: 10px 40px; /* Defines rectangular dimensions */
    cursor: pointer;
    transition: transform 0.3s ease;
    text-align: center;
    margin-top: 24px;
}

/* Button hover effect */
.check-work-button:hover {
    transform: scale(1.1); /* Slightly grow on hover */
    animation: bounce 0.5s infinite; /* Bouncing effect */
}

/* Bounce animation */
@keyframes bounce {
    0%, 100% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.05);
    }
}

.left-column .left-heading-title{
    color: #004030;
    font-size: 18px;
    font-weight: 500;
}

.left-heading-title2{
    font-weight: 400;
}

/* .right-column {
    background-image: url('/images/daisyy-grass-1.jpeg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
} */

/* Right column */
.right-column {
    display: flex;
    justify-content: center;  /* Horizontally center the photo grid */
    align-items: center;      /* Vertically center the photo grid */
    position: relative;
    padding: 15px;  /* Reduced padding for less space */
    padding-right: 40px;
    height: 100vh;  /* Ensure the right column takes up full viewport height */
}

/* Photo Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 15px; /* Space between grid items */
    position: relative;
    width: 100%;
    max-width: 1200px;
}


/* Grid Photo Styling */
.grid-photo {
    width: 100%; /* Ensure the images fit within their grid cells */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: round the corners of the images */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7); /* Optional: add a subtle shadow for depth */
    object-fit: cover; /* Ensure images cover the grid cell */
}

/* Overlay styling */
.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centers the overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10; /* Ensures the overlay is above the images */
    pointer-events: none; /* Prevents interaction with the images */
}

/* Circular Shop Button */
.shop-button {
    width: 100px;  /* Increased width */
    height: 100px; /* Increased height */
    font-size: 1.2rem; /* Adjusted font size for better proportion */
    background-color: #004030;
    color: white;
    border: none;
    border-radius: 50%; /* Ensure it's perfectly circular */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add drop shadow */
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center; /* Center text inside button */
    pointer-events: all; /* Makes the button clickable */
}

/* Hover effect */
.shop-button:hover {
    transform: scale(1.1); /* Slightly enlarge the button on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4); /* Increase shadow on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .site-main{
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .site-main > * {
        box-sizing: border-box;
    }

    .left-column, .right-column {
        padding: 10px;
    }

    .left-column {        
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: auto;
        margin: 0 auto;
        width: 90%;
    }

    .photo-grid {
        width: 85%;
    }

    #main {
        width: 100%;  
    }
}

/* @media (max-width: 480px) {
    .photo-grid {
        grid-template-columns: 1fr;
    }
} */
