html,
body {
    overflow-x: hidden;
    width: 100%;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    bottom: 280px;
    left: 180px;
    font-size: 70px;
    font-weight: 100;
    font-family: Noto Serif Georgian;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}


/* Medium devices (landscape tablets, 768px and up) */

@media (max-width: 992px) {
    .hero-text {
        bottom: 200px;
        left: 80px;
        font-size: 50px;
    }
}


/* Small devices (portrait tablets and large phones, 576px and up) */

@media (max-width: 768px) {
    .hero-text {
        bottom: 150px;
        left: 40px;
        font-size: 40px;
    }
}


/* Extra small devices (phones, less than 576px) */

@media (max-width: 576px) {
    .hero-text {
        bottom: 200px;
        left: 20px;
        font-size: 30px;
        padding: 5px 10px;
    }
}


/* ------------------------------------------------------------------------------------------------------- */


/*--------------------------------------------------------------
                        # Hero Section                
--------------------------------------------------------------*/

.hero {
    width: 100%;
    min-height: 70vh;
    position: relative;
    padding: 120px 0 120px 0;
    display: flex;
    align-items: center;
}

.hero .hero-bg {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 10%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero h1 {
    margin: 0 0 20px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #231f20;
}

.hero h1 span {
    color: var(--heading-color);
    border-bottom: 4px solid var(--accent-color);
}

.hero p {
    color: #231f20;
    margin: 5px 0 30px 0;
    font-size: 22px;
    font-weight: 400;
}

.hero .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 12px 28px;
    border-radius: 50px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: var(--default-color);
    font-weight: 600;
}

.hero .btn-watch-video i {
    color: var(--accent-color);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

.hero .btn-watch-video:hover {
    color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
    color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
    .hero p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    .hero .btn-get-started,
    .hero .btn-watch-video {
        font-size: 13px;
    }
}

.hero .hero-waves {
    display: block;
    width: 100%;
    height: 60px;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 3;
}

.hero .wave1 use {
    animation: move-forever1 10s linear infinite;
    animation-delay: -2s;
    fill: var(--default-color);
    opacity: 0.6;
}

.hero .wave2 use {
    animation: move-forever2 8s linear infinite;
    animation-delay: -2s;
    fill: var(--default-color);
    opacity: 0.4;
}

.hero .wave3 use {
    animation: move-forever3 6s linear infinite;
    animation-delay: -2s;
    fill: var(--default-color);
}

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }
    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

.dark-background {
    --background-color: #ebebeb;
    --default-color: #ad974f;
    --heading-color: #ffffff;
    --surface-color: #2c2b30;
    --contrast-color: #ffffff;
    --accent-color: #ffffff;
}


/*--------------------------------------------------------------
                # moments Section
--------------------------------------------------------------*/

.moments {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 5vw 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default-color);
    text-align: center;
}

.moments img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.moments:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 60%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.moments .container {
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: 1200px;
}

.moments h2 {
    margin: 0;
    font-size: clamp(32px, 5vw, 70px);
    font-weight: 100;
    font-family: "Noto Serif Georgian", serif;
}

.moments p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 10px 0 0 0;
    font-size: clamp(16px, 2vw, 24px);
}

.moments .btn-get-started {
    font-weight: 500;
    font-size: clamp(14px, 1.5vw, 15px);
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 8vw;
    border-radius: 50px;
    transition: 0.4s;
    margin-top: 30px;
    border: 2px solid var(--default-color);
    color: var(--default-color);
}

.moments .btn-get-started:hover {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.gtr-logo {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: clamp(100px, 15vw, 175px);
    height: auto;
}

.gtr-logo img {
    width: 100%;
    height: auto;
    display: block;
}


/* Responsive Adjustments */

@media (max-width: 1024px) {
    .moments {
        padding: 10vw 0;
    }
}

@media (max-width: 768px) {
    .moments h2 {
        font-size: 32px;
    }
    .moments p {
        font-size: 18px;
    }
    .gtr-logo {
        top: 25%;
        width: 120px;
    }
    .moments .btn-get-started {
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .moments h2 {
        font-size: 28px;
    }
    .moments p {
        font-size: 16px;
    }
    .gtr-logo {
        width: 100px;
    }
    .moments .btn-get-started {
        font-size: 14px;
        padding: 6px 12px;
    }
}

.book-now {
    background-color: #a2a2a2;
    padding: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    text-align: center;
}


/* Bell icon and text */

.bell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bell i {
    font-size: 2rem;
    padding-right: 10px;
}

.bell p {
    font-size: 1.5rem;
    margin: 0;
}


/* Button */

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.golden-btn {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    border: none;
    border-radius: .3em;
    height: 2.5em;
    line-height: 2.3em;
    padding: 0 2em;
    cursor: pointer;
    transition: all .2s ease-in-out;
    background: linear-gradient(160deg, #ad974f, #b47e11, #fef1a2, #bc881b, #a54e07);
    border: 1px solid #a55d07;
    color: white;
    text-shadow: 0 2px 2px rgb(38, 38, 38);
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(110, 80, 20, .4), inset 0 -2px 5px 1px rgba(139, 66, 8, 1), inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
    white-space: nowrap;
    /* Add the animation */
    animation: pulse 2.5s infinite alternate, shimmer 5s linear infinite;
    background-size: 300% 100%;
}

.golden-btn:hover {
    transform: scale(1.1);
    background-size: 150% 150%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23), inset 0 -2px 5px 1px #b17d10, inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
    border: 1px solid rgba(165, 93, 7, .6);
    color: rgba(19, 19, 19, 0.8);
}


/* Responsiveness */

@media screen and (max-width: 1024px) {
    .golden-btn {
        font-size: 1.3rem;
        height: 2.2em;
    }
}

@media screen and (max-width: 768px) {
    .book-now {
        flex-direction: column;
        gap: 10px;
    }
    .bell p {
        font-size: 1.2rem;
    }
    .golden-btn {
        font-size: 1.2rem;
        height: 3em;
    }
}

@media screen and (max-width: 480px) {
    .bell {
        padding-top: 2em;
        font-size: 1em;
        flex-direction: column;
        text-align: center;
    }
    .bell p {
        padding-top: 10px;
        font-size: 1rem;
    }
    .golden-btn {
        font-size: 1rem;
        height: 3em;
    }
}

.carousel-item img {
    width: 60%;
    margin: 0 auto;
    display: block;
    object-fit: cover;
}

.carousel-item .custom-carousel-content {
    width: 50%;
    transform: translate(0%, -10%);
    align-items: center;
}

.custom-carousel-content {
    text-align: start;
}

.custom-carousel-content h1 {
    font-size: 40px;
    font-weight: 700;
    color: maroon;
    margin-bottom: 30px;
}

.custom-carousel-content h1 span {
    color: #fbff00;
}

.custom-carousel-inner {
    height: 50%;
}