@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

:root {
    --primary-color: #031d36;
    --secondary-color: #fbad0a;
    --tertiary-color:#a7a7a7;
    --text-dark: #212529;
    --white: #ffffff;
    --max-width: 1200px;
    --header-font-1: "Alfa Slab One", serif;
    --header-font-2: "Bebas Neue", sans-serif;
    --header-font-3: "Lexend";
}

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

.section__container {
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem;
}

.section__header {
    font-size: 3rem;
    font-weight: 500;
    font-family: var(--header-font-1);
    color: var(--primary-color);
    text-align: center;
    line-height: 3.75rem;
    text-shadow: 2px 2px var(--secondary-color);
}

.section__description {
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.75rem;
}

.btn {
    padding: 1rem 1.5rem;
    outline: none;
    border: none;
    font-size: 1rem;
    color: var(--white);
    background-color: var(--tertiary-color);
    transition: 0.3s;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-color);
}

img {
    display: flex;
    width: 100%;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

html,
body {
    scroll-behavior: smooth; 
    margin: 0;        
    padding: 0;
    overflow-x: hidden;
    height: 100%;
}

body {
    font-family: "Montserrat", sans-serif;
}

nav {
    position: fixed;
    width: 100%;
    height: 125px;
    margin-inline: auto;
    z-index: 200;
}

.nav__header {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-color);
}

.nav__logo img {
    max-width: 150px;
    height: 250px;
}

.nav__logo-dark {
    display: none;
}

.nav__menu__btn {
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

.nav__links {
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    padding: 2rem;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    background-color: var(--primary-color);
    transition: 0.5s;
    z-index: -1;
    transform: translateY(-100%);
}

.nav__links.open {
    transform: translateY(0);
}

.nav__links a {
    font-weight: 600;
    white-space: nowrap;
    color: var(--white);
    transition: 0.3s;
}

.nav__links a:hover {
    color: var(--secondary-color);
}

.header__content h1 {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--header-font-3, Arial, sans-serif);
    color: var(--primary-color, #fff);
    line-height: 2rem;
    text-align: left;
    margin-top: -90px;
}

.header__content h2 {
    max-width: 400px;
    padding: 5px 5px;
    font-size: 1.25rem;
    font-weight: 400;
    font-family: var(--header-font-3, Arial, sans-serif);
    text-align: left;
    color: #92b6d5;
}

.order__container .section__header {
    margin-bottom: 1rem;
}

.order__container .section__description {
    margin-bottom: 1rem;
}

.order__grid-1 {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.order__grid-2 {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: -50px;
}

.order__card {
    margin-bottom: 5px;
    padding-bottom: 5px;
    transition: 0.3s;
}

.slide-3 {
    border-radius: 15px 0px 0px 0px;
}

.slide-2 {
    border-radius: 0px 15px 0px 0px;
}

.slide-1 {
    border-radius: 0px 0px 0px 15px;
}

.slide-4 {
    border-radius: 0px 0px 15px 0px;
}

.image-slider {
    position: relative;
}

.slides-row-1 {
    transition: transform 0.5s ease-in-out;
}

.slides-row-2 {
    transition: transform 0.5s ease-in-out;
}

.event__details h1 {
    margin-top: -100px;
}

.event__details h4 {
    margin: 10px 0px;
    color: #92b6d5;
}

.event__details li {
    text-align: left;
    padding-top: 20px;
    font-family: var(--header-font-3);
    font-weight: 400;
    font-size: 1rem;
    color: var(--text-dark);
}

.event__details ul {
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    text-align: left;
    margin-right: 400px;
    padding-bottom: 80px;
    border-bottom: 1px solid #a7a7a7;
}  

.info__card {
    display: flex;
    flex-direction: column; 
    border: 1px solid #bcbcbc;
    margin-bottom: 100px;
    margin-left: 1100px;
    margin-top: -420px;
    max-width: 325px;
    height: 325px;
    border-radius: 15px;
    padding-top: 50px;
}

.info__card h3 {
    font-weight: 700;
    color: #031d36;
    line-height: 20px;
    margin-left: 20px;
}

.info__card h3 span {
    color: #fbad0a;
}

.info__card h2 {
    margin-top: 20px;
    margin-left: 20px;
}

.info__card button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 5px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 285px;
    margin-top: 20px;
    margin-left: 20px;
}

button i {
    margin-right: 5px;
    font-size: 19px;
}

.info__card h4 {
    font-size: 15px;
}

.info__card img {
    max-height: 60px;
    max-width: 60px;
    margin-left: 20px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.info__text {
    margin: 0px 180px;
}

.info__text h3 {
    padding: 10px 0px;
    margin-top: -20px;
}

.info__text ul {
    color: #5f5f5f;
    margin-bottom: 50px;
    padding-right: 300px;
    list-style-type: none;
    display: grid;
    font-size: 0.9rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    text-align: left;   
}

.info__text ul span {
    color: #4b4b4b;
    font-weight: 800; 
}

.footer {
    background-color: #031d36;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
}
  
.google-map {
    padding-bottom: 50%;
    position: relative;
}

.google-map iframe {
    height: 500px;
    width: 1300px;
    border-radius: 15px;
    margin-left: -85px;
    margin-top: -30px;
    position: absolute;
} 

.footer__content {
    display: grid;
    gap: 2rem 1rem;
    justify-content: space-between; 
    align-items: stretch;
}

.footer-section {
    flex: 1;
    margin: 10px;
    min-width: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer__logo {
    transform: translateY(-30%);
}

.footer__contact li {
    font-weight: 600;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.social-media li {
    margin: 0 10px;
}

.footer__logo img {
    max-width: 150px;
}
  
.footer__content {
    margin-top: 0rem;
    display: grid;
    gap: 0rem;
    margin-left: -70px;
}
  
.footer__bar {
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--white);
    justify-content: center;
    text-align: center;
    background-color: #92b6d5;
    display: flex;
    gap: 5px;
}

.footer__bar h4 {
    font-weight: 400;
    justify-content: center;
    align-items: center;
}

.whatsapp-button {
    position: fixed;
    bottom: 13px;
    right: 30px;
    width: 60px;
    height: 60px;
    z-index: 2000;
}

.whatsapp-button img {
    width: 100%;
    border-radius: 50px;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-text-button {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

@media (width < 768px) {
    .nav__header__h2 {
        color: #fff;
        font-size: 1rem;
        text-shadow: 1px 1px #041c40;
    }

    .nav__logo img {
        max-width: 100px;
        height: auto;
    }
    
    .nav__logo-dark {
        display: none;
    }
    
    .nav__menu__btn {
        font-size: 1.5rem;
        color: var(--white);
        cursor: pointer;
    }

    .header__content h1 {
        font-size: 1.6rem;
        line-height: 1.6rem;
        text-align: left;
        margin-top: 0px;
    }

    .header__content h2 {
       font-size: 1.1rem;
       font-weight: 400;
       text-align: left;
       padding: 0px;
    }

    .event__details h1 {
       margin-top: -120px;
    }

    .event__details li {
        text-align: left;
        padding-top: 20px;
        font-family: var(--header-font-3);
        font-weight: 400;
        font-size: 0.9rem;
        color: var(--text-dark);
    }
    
    .event__details ul {
        list-style-type: none;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
        text-align: left;
        margin-right: 0px;
        padding-bottom: 80px;
        border-bottom: 1px solid #a7a7a7;
    } 

    .info__text {
        margin: 20px;
    }

    .info__text ul {
        color: #5f5f5f;
        margin-bottom: 50px;
        padding-right: 0px;
        list-style-type: none;
        display: grid;
        font-size: 0.9rem;
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
        text-align: left;   
    }

    .order__grid-1 {
        display: flex;
        justify-content: flex-end;
        gap: 3px;
        margin-top: -7px;
    }
    
    .order__grid-2 {
        display: flex;
        justify-content: flex-end;
        gap: 3px;
        margin-top: -50px;
    }

    .huren__header h4 {
        font-size: 1rem;
        margin-top: -100px;
        margin-left: 0px;
        font-weight: 600;
        font-family: var(--header-font-3);
        color: var(--color-3);
        text-align: center;
    }
    
    .huren__header h2 {
        font-size: 2rem;
        margin-top: 15px;
        margin-bottom: 30px;
        font-weight: 700;
        font-family: var(--header-font-3);
        color: var(--color-2);
        text-align: center;
    }

    .huren__stappen {
        display: grid;
        align-items: center;
        justify-content: center;
        gap: 0rem 1rem;
    }
    
    .huren {
        margin-top: 200px;
        margin-bottom: 200px;
    }

    .review__header h4 {
        font-size: 1rem;
        margin-top: -100px;
        font-weight: 600;
        font-family: var(--header-font-3);
        color: var(--color-3);
        text-align: center;
    }

    .google-map {
        display: flex;
        justify-content: center;
        z-index: 20;
        padding-bottom: 85%;
        align-items: center;
    }
    
    .google-map iframe {
        justify-content: center;
        align-items: center;
        height: 300px;
        width: 330px;
        border-radius: 15px;
        margin-left: 0px;
        margin-top: 220px;
        position: absolute;
    }

    .footer__content {
        display: grid;
        gap: 1rem 1rem;
        justify-content: center;
        align-items: center;
    }

    .footer__contact {
        margin-top: -20px;
    }

    .footer__logo img {
        max-width: 200px;
        justify-content: center;
        align-items: center;
        margin-left: 60px;
    }

    .footer-section {
        flex: 1;
        margin: 10px;
        margin-left: 10px;
    }

    .footer__website {
        margin-top: -100px;
    }

    .footer__content {
        margin-bottom: -30px;
    }

    .footer__bar {
        font-size: 0.7rem;
        align-items: center;
        justify-content: center;
        margin-left: 0px;
    }

    .footer__bar h4 {
        font-weight: 500;
        justify-content: center;
    }

    .whatsapp-button {
        position: fixed;
        bottom: 10px;
        right: 10px;
    }
}

@media (width > 768px) {
    nav{
        position: sticky;
        padding: 2rem 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        background-color: var(--primary-color);
    }

    .nav__header {
        padding: 0;
        background-color: var(--primary-color);
    }

    .nav__logo img {
        max-width: 125px;
        max-height: 125px;
        position: relative;
        left: 150px;
    }

    .nav__logo-dark {
        display: flex;
    }

    .nav__logo-white {
        display: none;
    }

    .nav__menu__btn {
        display: none;
    }

    .nav__links {
        position: static;
        justify-content: center;
        padding: 0;
        flex-direction: row;
        background-color: transparent;
        transform: none;
        z-index: 1;
    }

    .nav__links a {
        color: var(--white);
    }

    .nav__links a:hover {
        color: var(--tertiary-color);
    }

    .header__container {
        display: block;
    }
    
    .header__content h1 {
        text-align: left;
    }

    .footer__content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer__links li {
        justify-content: flex-end;
    }

    .footer__socials {
        justify-content: flex-end;
    }
}