@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&family=Syne:wght@400..800&display=swap');

.h1 {
    font-family: 'Syne', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #003652;
    
}

.h3 {
    font-family: 'Rubik', sans-serif;
    font-size: 2.5rem;
    font-weight: 200;
    color: #003652;
    padding-top: .5rem;
}

.h4 {
font-family: 'Rubik', sans-serif;
font-size: 1.8rem;
font-weight: 500;
color: #003652;
text-align: center;
}

.h5 {
    font-family: 'Rubik', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #003652;
    text-align: center;
}

.h6 {
    font-family: 'Rubik', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: #003652;
    text-align: center;
}

.label-text {
    font-family: 'Rubik', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: black;
    text-align: center;
}

.body-text {
 font-family: 'Rubik', sans-serif;
 font-weight: 200;
 line-height: 1.5;
 font-size: 1.1rem;
 color: #003652;
}

.available-text {
 font-family: 'Rubik', sans-serif;
font-weight: 400;
font-size: 1rem;
color: #003652;

}

.column-images {
    border-radius: 25px;
}

.feature-icons {
    max-height: 50px;
    width: auto;
}
.sliding-container {
    overflow: hidden;
    /* This creates a mask from solid black (1.0 opacity) to transparent black (0.0 opacity) */
    mask-image: linear-gradient(to right, rgba(0,0,0,0) 5%, rgba(0, 0, 0, 1.0) 50%, rgba(0, 0, 0, 0) 95%);
    /* For broader compatibility, include the -webkit- prefix */
    -webkit-mask-image: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 1.0) 50%, rgba(0, 0, 0, 0) 100%);
}

.infinite-scrolling {
    background: url("/assets/gallery.png") repeat-x;
    height: 200px;
    width: 5760px;
    animation: slide 30s linear infinite;
}

@keyframes slide {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-3000px, 0, 0); /* The image width */
    }
}

.form-check-label {
    padding-top: 0;
}

.nav-link:hover {
    text-decoration: underline
}

.features-section {
    background-color: #f8f9fa;
}

.section-title {
    font-weight: 600;
    color: #0b3c4c;
}

.feature-card {
    padding: 30px 20px;
    border-radius: 14px;
    background: white;

    transition: all 0.2s ease;
}

/*    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    }*/


.store-badge {
    height: 100%;
    max-height: 100px;
    width: auto;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #e8f1f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #0b3c4c;
}

.feature-card p {
    color: #5c6f78;
    font-size: 1rem;
}

input {
    padding: 5px;
    border-color: #003652;
    border-style: solid;
    border-width: 1px;
    border-radius: 5px;
}

select {
}

label {
    padding-top: 1.5rem;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    
}

.modal-content {
    padding: 3rem;
}

option {
margin-top: 245px;
}

.option-btn {
    width: 75%;
    padding: 10px;
    background: gray;
    border-style: none;
    border-radius: 15px;
}

.option-btn.selected {
    background: blue;
}


.button-group {
    display: flex;
    justify-content:space-around;
    gap: 10px;
}

.option-btn {
    padding: 10px 20px;
    border-radius: 100px;
    background-color: #EFEFEF;
    cursor: pointer;
    color: #B5B5B5;
    transition: all 0.2s;
}

    .option-btn:hover {
        background-color: #f0f0f0;
    }

    /* Selected button style */
    .option-btn.selected {
        background-color: #333;
        color: white;
        border-color: #333;
    }


.submit-button {
    width: 100%;
    background: #003652;
    border-radius: 100px;
    border: none;
    margin-top: 2rem;

}

.submit-text {
    font-family: 'Rubik', sans-serif;
    color: white;
    padding: 10px;
}

/* Hero image responsive */
.hero-phone {
    max-width: 100%;
    height: auto;
}

/* Hero row padding adjustments for small screens */
@media (max-width: 576px) {
    .store-badge {
        height: 100px;
        width: 100px;
    }
}

@media (max-width: 767.98px) {

    .signup-background {
        background: none;
    }
    .store-badge {
        height: 80px;
        width: 80px;
    }

    .footer-styling {
        border-radius: 0;
        background: #003652;
    }
}
@media (min-width: 768px) {
    .signup-background {
        background: #EFEFEF;
    }

    .store-badge {
        height: auto;
        width: auto;
    }

    .footer-styling {
        border-radius: 25px;
        margin-bottom: 40px;
        background: #003652;
        
    }
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='white' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler {
    border: none;
}

    .navbar-toggler:focus,
    .navbar-toggler:active,
    .navbar-toggler:focus-visible {
        outline: none;
        box-shadow: none;
    }

.mobile-menu-container {
    position: absolute;
    top: 90px;
    right: 10px;
    z-index: 999;
}

.mobile-menu-inner {
    background: #003652;
    border-radius: 25px;
    padding: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.color-white {
color: white;
}

.footer-link {
    text-decoration: none;
}

.footer-link:hover {
text-decoration: underline;
}

.footer-text {
    font-family: 'Rubik', sans-serif;
    font-weight: 100;
}

.modal-header-text {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
}


