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


#wrapper {
    display: grid;
    grid-template-columns: 1fr minmax(1200px, 1200px) 1fr;
    grid-template-rows: minmax(0px, 100px) repeat(2, minmax(0px, 455px)) minmax(0px, 450px) minmax(0px,auto) minmax(0px,100px);
}

header {
    grid-column: 1/4;
    grid-row: 1/2;
    background-color:rgba(240, 80, 176, 0.40);
    
}

header h1 {
    grid-column: 1/4;
    grid-row: 2/3; 
    height: 450px;
    background-image: linear-gradient(rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.5)), url('hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center; 
    padding: 9.5rem ;
    font-size: 4rem;
    letter-spacing: 0.05em;
    font-family: "joan";

}

header a {
    text-decoration: none;
    color: #302e2e;
    
}

nav {
    grid-column: 2/3;
    grid-row:1/2;
    font-family: "joan";
    font-size: 1.2rem;
    background-color: #AFA0A0;
    padding: 0.9em;
    margin:0;
    height:110px;
    font-weight: bold;
    position: sticky;
    
}

nav a {

    color:black;
    padding: 2rem;
    display: block;
    text-align: left;

}

nav a:hover {
    background-color: #e29696;
    color: white
}

nav ul {
        margin: 0; 
        padding: 0; 
        display: flex;
        flex-flow: row nowrap;
        list-style-type: none;
}

main {
    grid-column: 2/3;
    grid-row:3/6;
    gap: 2rem;
    padding: 2rem;
    background-color: #ddc7c72e;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content:space-between;
    max-width: 1500px;
    margin: 0 auto;
}
.about-images {
    position: relative;
    width: 60%;
    display: flex;
    flex-direction: column;
    margin-top: -8rem;
   
}

.about-images img:first-child {
    width: 300px;
    height: auto;
    position: relative;
    z-index:2;
}

.about-images img:last-child {
    width: 300px;
    position: absolute;
    top: 140px;
    left: 220px;
    z-index: 1;

}

.about-text { 
    width: 60%;
    padding-left: 2rem;
    text-align: left;
    position: relative;
    margin-top: 4rem;
    font-family: 'Ledger', serif;
}

.about-text h2{

    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.55rem;
    line-height:1.6;
    margin-bottom: 2rem;
}

.gallery-section {
    background-color: #ffffff;
    padding: 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.gallery-header { 
    text-align: center;
    font-size: 3rem;
    font-family: "Ledger";
    color: #302e2e;
    margin-bottom: 1rem; 
    margin-top: 1rem;

}
.gallery-container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
}

.gallery-container img { 
    width: 32%;
    height: auto;
    opacity: 0.8;

}

.cta-section { 
    display: flex;
    justify-content:center;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding: 1rem 0;
}

.cta-button {

    background-color: #AFA0A0;
    color:#302e2e;
    font-size: 1.8rem;
    padding: 1rem 2rem;
    text-decoration: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-family: "Ledger";
}

.cta-button:hover {
    background-color: #e29696;
}

footer {
    grid-column: 1/4;
    grid-row: 6/7;
    background-color: #AFA0A0;
    padding: 1rem 0;
    color: #ffffff;
    font-size: 1.2rem;
    font-family: "joan";
    text-decoration: none;
}

.footer-content {

    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    width: 100%;
}

.footer-right p {
    text-align: right;

}
