/* Container for the entire studio section */
.studio-cont {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
    justify-content: space-evenly; /* Evenly space content vertically */
    min-height: 100vh;
    max-width: 100vw;
    background: transparent;
}

/* Title styling */
.studio-title {
    letter-spacing: 4px;
}

/* Paragraphs within the studio container */
.studio-cont p {
    margin: 0 15%; /* Horizontal margins */
}

@media (max-width: 1000px) {
    .studio-cont p {
        margin: 0 5%;
    }
}

/* Container for studio icons */
.studio-icons-cont {
    max-width: 100vw;
    display: flex;
    align-items: center; /* Center content horizontally */
    justify-content: center; /* Center content vertically */
    flex-wrap: wrap; /* Allow wrapping of icons */
}

/* Individual studio icon */
.studio-icon {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Icon image */
.studio-icon img {
    margin: 50px 75px 25px;
    height: 150px;
    width: 150px;
    transition: ease 0.5s;/* Transition effects */
    filter: grayscale(70%) drop-shadow(-2px -2px 4px rgba(183, 137, 112, 0.8));
    cursor: pointer;
}

/* Hover effect for icon image */
.studio-icon img:hover {
    width: 170px; /* Enlarged width on hover */
    height: 170px;
}

/* Your existing CSS code */

/* Your existing CSS code */

.hero-opener {
    display: flex;
    flex-direction: column-reverse; /* Stack image on top and writing underneath */
    justify-content: center;
    align-items: center; /* Center horizontally */
    min-height: 100vh;
    max-width: 100%;
    overflow: hidden;
}

.workshop-left {
    width: 100%; /* Full width for smaller screens */
    display: flex;
    flex-direction: column; /* Stack content vertically */
    justify-content: center;
    align-items: center;
    margin: 0 50px 0 50px;
}

.workshop-right {
    width: 100%; /* Full width for smaller screens */
}

.workshop-right img {
    object-fit: cover;
    width: 100%;
    height: 100vh; /* Make sure the image takes up 100% of the viewport height */
}

@media (min-width: 900px) {
    /* Revert to original styles for screens wider than 900px */
    .hero-opener {
        flex-direction: row;
    }

    .workshop-left {
        width: 50%;
        flex-direction: column;
        height: 100%;
    }

    .workshop-right {
        width: 50%;
        height: 100vh; /* Adjust height for larger screens */
    }

    .workshop-right img {
        height: 100%; /* Adjust image height for larger screens */
    }
}




