html {
    scroll-behavior: smooth;
    /*    scroll-padding-top: 80px;*/
    padding-bottom: 50px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
    height: calc(100% - 100px - 60px);
    font-family: "Roboto", sans-serif;
}

body {
    margin-top: 61px;
    margin-bottom: 60px;
    color: white;
    background-color: black;
    font-family: "Roboto", sans-serif;
}

/* General fix for scrollspy with fixed navbar */
html {
    scroll-padding-top: 60px; /* adjust to your navbar height */
}

/* For iPad and tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    html {
        scroll-padding-top: 60px; /* give extra breathing room */
    }
}

/* For mobile phones */
@media (max-width: 767.98px) {
    html {
        scroll-padding-top: 60px; /* more padding for smaller screens */
    }
}

.footer {
    color: white;
    background-color: black;
}


.bg-home {
    background-image: url('../images/adobestock_1612918603.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100%;
    width: 100%;
}


/* On mobile: shift image to the right */
@media (max-width: 767px) {
    .bg-home {
        background-position: 15% center; /* shift focus further left for mobile */
    }
}

.countdown {
    text-align: center;
}

    .countdown h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

.time {
    font-size: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

    .time div {
        text-align: center;
    }

    .time span {
        display: block;
        font-size: 2.5rem;
        font-weight: bold;
    }


.countdown-2 {
    text-align: center;
}

    .countdown-2 h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

.time-2 {    
    display: flex;
    justify-content: center;
    gap: 1rem;
}

    .time-2 div {
        text-align: center;
    }

    .time-2 span {
        display: block;
        font-size: 1.4rem;
        font-weight: bold;
    }

/* Default: no break */
.mobile-break {
    display: inline;
}

/* On mobile only */
@media (max-width: 767px) {
    .mobile-break {
        display: block;
    }
}

.bg-pink{
    background-color:pink;
}

.btn-orange {
    background: #FE582D;
    background: linear-gradient(114deg,rgba(254, 88, 45, 1) 0%, rgba(241, 145, 27, 1) 100%);
    color: white;
    font-weight: bold;
    padding-right: 40px;
    padding-left: 40px;
    border-radius: 30px;
}

    .btn-orange:hover {
        background: #F1911B;
        background: linear-gradient(114deg, rgba(241, 145, 27, 1) 0%, rgba(254, 88, 45, 1) 100%);
        color: white;
        font-weight: bold;
        padding-right: 40px;
        padding-left: 40px;
        border-radius: 30px;
    }

    .btn-orange:focus,
    .btn-orange:active {
        outline: none !important;
        box-shadow: 0 0 0 3px rgba(254, 88, 45, 0.4); /* orange glow */
    }

.border-orange {
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 0;
    border-right: 0;
    border-image: linear-gradient(to right, rgb(254, 88, 45) 0%, rgb(241, 145, 27) 100%) 1;
}

.vh-lg-100 {
    height: 100vh;
}

/* For tablets (iPad) and smaller devices */
@media (max-width: 991.98px) {
    .vh-lg-100 {
        height: 100%; /* use parent/container height */
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.border-md-end {
    border-right: 1px solid #6c757d !important; /* or your preferred color */
}


/* Default: inline, no break on mobile/tablet */
.desktop-break {
    display: inline;
}

/* Desktop only: force a line break */
@media (min-width: 992px) {
    .desktop-break {
        display: block; /* text moves to next line on desktop */
    }
}


/* Default: all devices */
.vh-lg-100 {
    height: 100%; /* fills parent container */
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Small devices (mobile) */
@media (max-width: 767.98px) {
    .vh-lg-100 {
        height: auto; /* adapt to content */
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

/* Extra-large devices (desktops wider than 1440px) */
@media (min-width: 1440px) {
    .vh-lg-100 {
        height: 100vh; /* full viewport height */
        padding-top: 0;
        padding-bottom: 0;
    }
}


/* Text Gradient CSS */
.text-gradient {
    color: #fdf2b8;
    background-image: linear-gradient(45deg, #fdf2b8, #fad152 50%, #f9a627 200%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}



