/* about content */
.about_container{
    display: flex;
    width: 100%;
    height: 500px;

}

.about_image_container{
    width: 50%;
    height: auto;
}

.about_image_container > img{
    width: 100%;
    max-height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.about_content{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--gold-primary);
    color: white;
    gap: 20px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.about_content > h1{
    width: 100%;
    text-align: center;
    padding-top: 25px;
    font-size: 28px;
}

.about_subheading{
    width: 100%;
    text-align: center;
    font-size: 17px;
    padding: 0 70px;
}

.about_textcontent{
    width: 100%;
    padding: 20px 70px;
    line-height: 1.5;
}

.about_name{
    width: 100%;
    font-size: 15px;
    text-align: right;
    padding: 0 70px;
}

.cta_button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.cta_button > button {
    background: #fff;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    border-radius: 5px;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 
        background 0.3s cubic-bezier(.4,0,.2,1),
        color 0.3s cubic-bezier(.4,0,.2,1),
        box-shadow 0.3s cubic-bezier(.4,0,.2,1),
        transform 0.2s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.cta_button > button:hover {
    background: var(--whitegrey-background);
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    transform: translateY(-2px) scale(1.04);
}

@media (max-width: 1200px) {
    .about_container {
        height: 400px;
    }
    .about_subheading,
    .about_textcontent,
    .about_name {
        padding: 0 30px;
    }
}

@media screen and (max-width: 1100px){
    .about_content{
        gap: 5px;
    }

    .about_content > h1{
        padding-top: 25px;
        font-size: 22px;
    }

    .about_subheading{
        font-size: 14px;
        padding: 0 30px;
        margin-bottom: 0;
    }

    .about_textcontent{
        padding: 10px 30px;
    }

    .about_name{
        font-size: 12px;
        padding: 0 30px;
    }
}

@media (max-width: 900px) {
    .about_container {
        flex-direction: column;
        height: auto;
    }
    .about_image_container,
    .about_content {
        width: 100%;
        border-radius: 10px 10px 0 0;
    }
    .about_image_container > img {
        border-radius: 10px 10px 0 0;
        aspect-ratio: 2 / 1;
        max-height: 300px;
    }
    .about_content {
        border-radius: 0 0 10px 10px;
        padding-bottom: 30px;
    }
}

@media (max-width: 600px) {
    .about_textcontent,
    .about_name {
        font-size: 15px;
    }
    .about_content > h1 {
        font-size: 1.3rem;
        padding-top: 20px;
    }
    .cta_button > button {
        padding: 10px 18px;
        font-size: 0.95rem;
    }
}

/* Small heading + web_album */
.small_heading_section{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding-top: 50px;
}

.album_container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}

.album_container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

@media screen and (max-width: 900px) {
    .album_container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .album_container {
        grid-template-columns: repeat(1, 1fr);
    }
}