@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

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

body {
    font-family: 'Roboto', sans-serif;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFAF1;
}

h1 {
    font-family: 'Cinzel', serif;
    font-weight: 800;
    font-size: 3rem;
    color: #000;
}

h2 {
    /* font-family: 'Cinzel', serif; */
    font-weight: 400;
    font-size: 1.5rem;
    color: #000;
}

h3 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: #000;
}

p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #000;
}

/* Marquee Styles */
.marquee_container {
    background-color: #C2982F;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
}

.marquee_content {
    display: inline-flex;
    animation: marquee_scroll 60s linear infinite;
    align-items: center;
    gap: 30px;
}

.marquee_item {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    gap: 30px;
}

.marquee_icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.5;
}

.marquee_text {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes marquee_scroll {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}


.container {
    max-width: 1440px;
    margin: auto;
    padding: 0 20px;
}

.header_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_contact a {
    color: #C2982F;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}

.header_booking a {
    background-color: #C2982F;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 14px 14px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.header_booking a:hover {
    background-color: #07463A;
}

.header_booking a:hover .header_booking_icon {
    filter: brightness(0) invert(1);
}

.header_booking_icon {
    width: 26px;
}

.header_container {
    padding: 40px 0;
}

.content {
    min-height: calc(100vh - 263px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero_section {
    padding: 40px 0;
}

.hero_content h1 {
    color: #07463A;
}

.hero_content {
    text-align: center;
}

.hero_content p {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 640px;
    margin: 8px auto 0;
    line-height: 1.6;
}



.hero_contact_details {
    background-color: #fff;
    flex: 1;
    box-shadow: 1px 1px 8px -5px rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.hero_contact {
    margin-top: 40px;
}

.hero_contact h2 {
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.hero_contact_details_container {
    display: flex;
    gap: 20px;
    max-width: 860px;
    margin: auto;
}

.hero_contact_details h3 {
    color: #C2982F;
    transition: all 0.3s ease;
}

.hero_contact_detail {
    position: relative;
    padding-left: 30px;
    margin-top: 15px;
}

.hero_contact_detail_icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    display: block;
    transition: all 0.3s ease;
}

.hero_contact_detail a {
    font-size: 16px;
    line-height: 1.4;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero_contact_details:hover {
    background-color: #C2982F;
}

.hero_contact_details:hover h3 {
    color: #fff;
}

.hero_contact_details:hover .hero_contact_detail a {
    color: #fff;
}

.hero_contact_details:hover .hero_contact_detail_icon {
    filter: brightness(0) invert(1);
}

.footer_container {
    padding: 40px 0 20px;
}

.footer_content {
    text-align: center;
}

@media (max-width: 768px) {
    .hero_contact_details {
        flex: unset;
        width: 100%;
    }
    
    .hero_contact_details_container {
        flex-wrap: wrap;
    }
    
    .header_booking a span {
        display: none;
    }
    
    .header_contact {
        display: none;
    }
    
    .header_container {
        padding: 20px 0;
    }
    
    .header_booking a {
        border-radius: 6px;
        padding: 8px 10px 10px;
    }
    
    .header_booking_icon {
    }
    
    .hero_content h1 {
        font-size: 2rem;
    }
    
    .hero_content p {
        font-size: 1rem;
    }
    
    .hero_contact h2 {
        font-size: 1.2rem;
    }
    
    .hero_contact_details h3 {
        font-size: 1.1rem;
    }
    
    .hero_contact_detail a {
        font-size: 14px;
    }
    
    .hero_contact_detail {
        margin-top: 10px;
    }
    
    .footer_content p {
        font-size: 12px;
        font-weight: 300;
    }
}