@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root{
    --primary-color: #ffab36;
     --primary-color-dark:#ffab36;
     --text-dark:#000000;
     --white: #ffffff;
     --max-width: 1200px;

}



*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}



img{
    display: flex;
    width: 100%;

}



a{
    text-decoration: none;
    transition: 0,3s;

}



ul{
    list-style: none;

}



body{
    font-family: "Montserrat", "sans-serif";
}



nav{
    position: fixed;
    isolation: isolate;
    width: 100%;
    z-index: 9;

}



.nav__header{
    padding: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-color);    
}




.nav__logo a img{
    max-width: 200px;

}


.nav__logo .logo-dark{
    display: none;  
}



.nav__menu__btn{
    font-size: 1.5rem; 
    color: var(--white);
    cursor: pointer;

}


.nav__links{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    background-color: var(--primary-color);
    transition: transform 0.5s;
    z-index: -1;

}

    .nav__links.open{
        transform: translateY(100%);
    }

.nav__links a{
    font-weight: 500;
    color: var(--white);
    white-space: nowrap;

}

header{
    max-width: var(--max-width);
    margin: auto;
    padding: 2rem 1rem ;

    display: grid;
    gap: 4rem 1rem ;
}



.header__image{
    overflow: hidden;
}

.header__image img{
    max-width: 500px;
    margin-inline: auto;

}


.header__content h2{
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;    
}


.header__content h1{
    margin-bottom: 1rem;
    font-size: 4rem;
    font-weight: 800;
    line-height: 4,5rem;
    color: var(--text-dark);
    text-align: center;

}


.header__content p{
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.75; 
    color: var(--text-dark);
    text-align: center;   
}


.header__btn{
    margin-bottom: 5rem;
    text-align: center;
}


.header__btn button{
    padding: 1rem 1.5rem;
    outline: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 5rem;
    transition: .3s;
    cursor: pointer;
}



.header__btn button:hover{
    background-color: var(--primary-color);    
}



.header__socials{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;

}


.header__socials a{
    padding: 8px 10px;
    font-size: 1.5rem;
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 100%;
}


.header__socials a :hover{
    color: var(--primary-color);
}

header{
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}


.header__content{
    grid-area: 1/1/2/2;
}



.header__content :is(h2, h1, p, .header__btn){
text-align: left;    
}


.header__socials{
justify-content: flex-start;           
}

@media (width > 768px){
    nav{
        position: static;
        padding: 2rem 1rem 1rem;
        max-width: var(--max-width);
        margin-inline: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;

    }


    .nav__header{
      padding: 0;
      background-color: transparent;    
    }

    .nav__logo a img{
       max-width: 125px;

    }


    .nav__logo .logo-dark {
        display: flex;  
    }

    .nav__logo .logo-white {
        display: none;
    }

    .nav__menu__btn{
        display: none;
    }


    .nav__links{
        position: static;
        width: fit-content;
        padding: 0;
        flex-direction: row;
        background-color: transparent;
        transform: none !important;


    }


    .nav__links a{
        font-weight: 600;
        color: var(--text-dark);
    }


    .nav__links a:hover{
        color: var(--primary-color);
    }
}




h2{
    width: 200px;
    font-size: 3rem;
}


.contact-map-section {
    display: flex;
    flex-wrap: wrap; /* Allows stacking on mobile */
    width: 200%;
    height: 450px; /* Adjust height as needed */
    background-color: #ffffff;
}

.contact-info {
    flex: 1; /* Takes up 50% of the width */
    min-width: 300px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    color: #ffab36; /* Your brand's gold/bronze color */
    font-size: 24px;
    margin-bottom: 20px;
}

.map-box {
    flex: 1; /* Takes up the other 50% */
    min-width: 100px;
    height: 100%;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    display: block;
}


