/* Color Palette */
:root {
    /* --primary-color: #6A5ACD; */
    --secondary-color: #253749;
    --background-light: #FAF8F1;
    --background-gray: #F5F5F5;
    --text-darker: #333;
    --white: #FFFFFF;
    --overlay-dark: rgba(0, 0, 0, 0.427);
    --overlay-darker: rgba(0, 0, 0, 0.782);
    --accent-color: #8376d9d1;
}

:root {
    /* --background-light: #f4f4f8; */
    --primary-color: #da9d5f;
    --primary-light: #34495e;
    /* --accent-color: #3498db; */
    /* --white: #ffffff; */
    --text-dark: #f1f1f1;
    --shadow-soft: 0 10px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-light);
    color: var(--text-darker);
    line-height: 1.6;
}




/* Responsive Typography */
html {
    font-size: 16px;
}

@media screen and (max-width: 1200px) {
    html {
        font-size: 15px;
    }
}


@media screen and (max-width: 900px) {
    .book-now-container {
        display: none !important;
    }

    .book-now-button {
        display: block !important;
    }
}

@media screen and (max-width: 900px) {
    html {
        font-size: 14px;
    }
}

/* Container */
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}




/* Header Section */
.header {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo-container {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--background-light);
    padding: 0.5rem;
    border-bottom-right-radius: 20px;
    z-index: 3;
    height: 8rem;
    overflow: hidden;
}

.logo-dark-container {
    position: absolute;
    top: 0.7rem;
    left: 0.7rem;
    right: 0.3rem;
    bottom: 0.3rem;
    background: var(--overlay-dark);
    border-bottom-right-radius: 16px;
    border-top-left-radius: 16px;

    z-index: 4;
}

.logo-container .logo-bg {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 5;
    padding: 0.5rem;
}

.logo-container .logo-image {
    width: 10rem;
    height: 8rem;
    /* margin-top: 1rem; */
    object-fit: contain;
}

/* Navigation */
.navbar {
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.navbar a {
    text-decoration: none;
    color: var(--white);
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar a:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 10;
}

.nav-toggle-bar {
    width: 25px;
    height: 3px;
    background-color: var(--background-light);
    margin: 3px 0;
    transition: 0.4s;
}


@media screen and (max-width: 900px) {
    .navbar {
        display: none;
        flex-direction: column;
        width: 100%;
        position: fixed;
        top: 0;
        left: 4rem;
        background: var(--overlay-darker);
        height: 100%;
        justify-content: center;
        align-items: center;
    }

    .navbar.active {
        display: flex;
    }

    .navbar ul {
        flex-direction: column;
        justify-content: center;

    }

    .nav-toggle {
        display: flex;
        position: absolute;
        top: 3rem;
        right: 3rem;
    }

    .nav-toggle.active .nav-toggle-bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active .nav-toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .nav-toggle-bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Book Now Container */
.book-now-container {
    position: absolute;
    top: 3rem;
    bottom: 2rem;
    right: 5rem;
    z-index: 3;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.book-now-container:hover {
    background: var(--primary-color);
}

.btn-circle {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-circle:hover {
    transform: scale(1.1);
    background-color: var(--primary-color);
    color: var(--white);
}

.book-now-button {
    display: none;
}

.book-now-container .btn-circle {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 20px;
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.book-now-container .btn-circle:hover {
    transform: scale(1.1);
    background-color: var(--primary-color);
    color: var(--white);
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: var(--background-gray);
    border-radius: 40px;
    overflow: hidden;
    margin: 0.7rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-dark);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
    color: var(--white);
    height: 200px;
    z-index: 2;
}

.hero-text {
    position: absolute;
    top: 100%;
    opacity: 0;
    width: 100%;
    transition: all 0.8s ease-in-out;
}

.hero-text.active {
    top: 0;
    opacity: 1;
}

.hero-text:not(.active) {
    top: -100%;
    opacity: 0;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

.hero-content p {
    margin-top: 1rem;
    font-size: 1.2rem;
}

.hero-content .cta-btn {
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background-color: var(--white);
    color: var(--secondary-color);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.hero-content .cta-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slideshow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slideshow img.active {
    opacity: 1;
}



/* Footer Styles */
.footer {
    background: linear-gradient(to bottom right, #1f2937, #111827);
    color: #ffffff;
    padding: 4rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

/* Brand Section */
.brand-section .brand-title {
    background: linear-gradient(to right, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0rem;
    line-height: 1;
}

.brand-section .brand-description {
    color: #9ca3af;
    margin-top: 1rem;
}

/* Quick Links */
.quick-links h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.quick-links a {
    color: #d1d5db;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: #ffd700;
}

.quick-links a i {
    margin-right: 0.5rem;
}

/* Contact Section */
.contact-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-section ul {
    list-style: none;
}

.contact-section li {
    display: flex;
    align-items: center;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.contact-section li i {
    margin-right: 1rem;
    color: #ffd700;
    font-size: 1.25rem;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-icons a {
    color: #d1d5db;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ffd700;
}

/* Copyright Section */
.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
    }

    .footer-section {
        width: 100%;
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
    }
}

body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.footer {
    margin-top: auto;
    margin-bottom: 0;
}

/* Remove any bottom margin from the last section */
section:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}
section {
    margin: 0;
    padding: 0;
}

.containers {
    padding: 2rem 0;
    margin: 0 auto;
}
.brand-slogan {
    font-style: italic;
    font-size: 1.2rem;
    margin-top: 0px;
    margin-bottom: 12px;
    color: #666;
    line-height: 1;
}
.phone-number {
    color: inherit;
    text-decoration: none;
    pointer-events: none;
    cursor: default;
}