#section-1{
    margin: 5% 10%;
    display: flex;
    justify-content: center;
}

#hero-card{
    width: min(100%);
    height: auto;
    border-radius: 90px;
    position: relative
}

#hero-banner{
    width: 100%;
    height: 100%;
    border-radius: 90px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

#hero-content{
    position: absolute;
    left: 6%;
    right: 6%;
    bottom: -20%;
    background: rgba(217, 217, 217, 0.56);
    backdrop-filter: blur(23px);
    border-radius: 90px;
    min-height: 500px;
    

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#hero-title{
    font-size: 48px;
    margin:0 0 8px;
    font-weight: 800;
    letter-spacing: -1px;
}

#hero-paragraph{
    font-size: 32px;
    margin: 0 0 70px;
}

#hero-button{
    background: black;
    color: white;
    text-decoration: none;
    padding: 34px 78px;
    border-radius: 90px;
    font-size: 32px;
    font-weight: 700;

    transition: all 0.3s ease;
}

#hero-button:hover{
    background: #333;
    transform: translateY(-3px);
    transform: scale(1.03);
}

#hero-button:active{
    transform: scale(0.97);
}

#section-line{
    margin-top: 10%;
    border: 8px solid black;
    border-radius: 999px;
    width: 57%;
}

#section-2{
    align-items: center;
    text-align: center;
    margin: 47px;
}

#gallery-section-paragraph{
    font-size: 64px;
    font-weight: bold;
}

#gallery-image-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 43px;
    padding-bottom: 70px;
}

#gallery-1{
    border-radius: 10px 60px 60px 10px;
}

#gallery-2{
    border-radius: 60px;
}

#gallery-3{
    border-radius: 60px 10px 10px 60px;
}

#gallery-image-grid img{
    width:100%;
    height: auto;
}

#gallery-button{
    background-color: #000000;
    color: white;
    padding: 25px 80px;
    text-decoration: none;
    border-radius: 70px;
    font-size: 37px;
    transition: all 0.3s ease;
}

#gallery-button:hover{
    background-color: #333;
    transform: translateY(-3px);
}

#section-3{
    margin-top: 120px;
    background-color: #d0d0d0;
    height: 634px;
    border-radius: 100px 100px 0px 0px;
    text-align: center;
    padding: 30px 350px;
}

#section-3 h1{
    font-size: 96px;
    margin:0;
    padding: 0px;
}

#section-3 p{
    font-size: 36px;
    padding: 0px 0px 70px 0px;
}

#section-3 a{
    padding: 30px 80px;
    font-size: 37px;
    background-color: black;
    text-decoration: none;
    color: white;
    border-radius: 60px;
    transition: all 0.3s ease;
}

#section-3 a:hover{
    background-color: #333;
    transform: translateY(-3px);
}