/* ====== GLOBAL ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", Arial, sans-serif;
}

body {
    background: #f9f3e7;
    color: #3a2a1a;
    line-height: 1.9;
    font-size: 18px;
    letter-spacing: 0.2px;
}

body *:hover {
    cursor: default;
    transition: all 0.2s ease-out;
}

html {
    scroll-behavior: smooth;

}

/* ====== CONTAINER ====== */
/* .container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 2px 15px;
} */

/* ====== HEADER ====== */
header {
    background: #fff8ec;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(58, 42, 26, 0.1);
    border-bottom: 3px solid transparent;
    background-image: linear-gradient(#fff8ec, #fff8ec),
        linear-gradient(to right, #d4af37, #b8860b, #d4af37);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

/* ====== HEADER CONTAINER ====== */
header .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    /* ✅ vertically center logo + nav */
    justify-content: space-between;
    flex-wrap: nowrap;
    height: 80px;
    /* ✅ keeps consistent bar height */
}

/* ====== LOGO ====== */
.logo {
    display: flex;
    align-items: center;
    /* ✅ centers h2 text vertically */
}

.logo h2 {
    color: #a0522d;
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.5rem);
    transition: all 0.4s ease;
    white-space: nowrap;
    /* --- ADD THIS LINE --- */
    margin: 0;
    padding-top: 100px;
    padding-bottom: 40px;
}

.logo h2:hover {
    color: #b8860b;
    text-shadow: 0 0 6px rgba(212, 175, 55, 0.6),
        0 0 12px rgba(184, 134, 11, 0.4);
    transform: scale(1.03);
}

/* ====== NAVBAR ====== */
nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    /* ✅ aligns items with logo baseline */
    flex: 1;
    min-width: 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2px;
    margin: 0;
    padding: 0;
}

nav ul li {
    position: relative;
    flex-shrink: 0;
}

nav ul li a {
    text-decoration: none;
    color: #3a2a1a;
    font-weight: 550;
    font-size: 1.1rem;
    white-space: nowrap;
    padding: 6px 7px;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav ul li a:hover {
    color: #a0522d;
    transform: translateY(-2px);
}

/* ====== HAMBURGER ====== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #3a2a1a;
    border-radius: 5px;
}

/* ====== DROPDOWN ARROWS ====== */
.has-dropdown>a::after {
    content: "▼";
    font-size: 0.7rem;
    margin-left: 6px;
    color: #a0522d;
    transition: transform 0.3s ease;
}

.has-dropdown.open>a::after,
.has-dropdown:hover>a::after {
    transform: rotate(180deg);
}

/* ====== DROPDOWN MENU ====== */
.has-dropdown>ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fffaf2;
    border: 1px solid #f0e3d1;
    box-shadow: 0 5px 15px rgba(58, 42, 26, 0.1);
    min-width: 230px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 999;
}

.has-dropdown ul li a {
    display: block;
    padding: 14px 18px;
    color: #3a2a1a;
    font-size: 1rem;
}

.has-dropdown ul li a:hover {
    background: #fae3c6;
    color: #8b2e0f;
}

section span a {
        padding: 2px 40px;
        margin: 15px 0px;
    
    color: black;
    cursor: pointer;
    }

/* ====== DESKTOP DROPDOWN ====== */
@media (min-width: 1024px) {

    .has-dropdown:hover>ul {
        display: block;
        /* REMOVED: animation: fadeIn 0.3s ease-in-out; */
    }
}

/* REMOVED: @keyframes fadeIn { ... } */



.hamburger::after {
    content: "✕";
    position: absolute;
    inset: 0;
    font-size: 26px;
    /* padding-right: 70px; */
    color: #a0522d;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    z-index: 3;
    transition: all 0.3s ease;
}

.hamburger.open span {
    opacity: 0;
}

.hamburger.open::after {
    opacity: 1;
    transform: scale(1);
}




.breadcrumb {
  font-size: 14px;
  color: #555;
  margin: 10px 0;
  display: flex;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 0;
  margin: 0;
}
.breadcrumb a {
  color: #0077cc;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb .separator {
  color: #999;
}











/* CSS for the new pricing table to ensure it looks good and is readable */
        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            text-align: left;
        }

        .pricing-table th, .pricing-table td {
            padding: 12px 15px;
            border: 1px solid #ddd;
        }

        .pricing-table th {
            background-color: #f2f2f2;
            color: #333;
            font-weight: 700;
        }

        .pricing-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        .disclaimer {
            font-size: 0.9em;
            color: #555;
            margin-top: 15px;
            padding: 10px;
            border-left: 3px solid #007bff;
            background-color: #e9f5ff;
        }

        /* Responsive adjustments for smaller screens */
        @media (max-width: 600px) {
            .pricing-table, .pricing-table tbody, .pricing-table td, .pricing-table th, .pricing-table tr {
                display: block;
            }

            .pricing-table thead {
                display: none;
            }

            .pricing-table tr {
                margin-bottom: 10px;
                border: 1px solid #ddd;
            }

            .pricing-table td {
                text-align: right;
                padding-left: 50%;
                position: relative;
                border: 1px solid #ddd;
            }

            .pricing-table td:before {
                content: attr(data-label);
                position: absolute;
                left: 0;
                width: 50%;
                padding-left: 15px;
                font-weight: bold;
                text-align: left;
            }
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        

/* ====== MOBILE NAV ====== */
@media (max-width: 1024px) {
    header .container {
        padding: 18px 22px;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        background: #fff8ec;
        width: 75%;
        height: 90vh;
        border-radius: 10px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: start;
        padding: 80px 25px;
        box-shadow: -5px 0 20px rgba(58, 42, 26, 0.1);
        transition: right 0.4s ease;
        overflow-y: auto;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    nav ul li a {
        font-size: 1.1rem;
        white-space: normal;
        /* allow wrap vertically */
    }

    .hamburger {
        display: flex;
    }

    .has-dropdown>ul {
        position: static;
        border: none;
        box-shadow: none;
        border-radius: 0;
    }

    .has-dropdown.open>ul {
        display: block;
    }

    .hamburger {
        display: flex;
    }

}



/* ====== MAIN ====== */
main {
    padding: 60px 50px;
    max-width: 1200px;
    margin: auto;
    font-size: 1.1rem;
}

main h1,
main h2 {
    color: #8b2e0f;
    margin-bottom: 25px;
    letter-spacing: 0.3px;
}

main h1 {

    font-size: clamp(1.2rem, 6vw, 2.6rem);
    /* min 1.2rem, scales with viewport, max 2.6rem */
    /* white-space: nowrap; */
    /* Stay in single line */
    display: inline-block;
    /* Ensure text width respects container */
    width: 100%;
    /* Fit container width */
    text-align: center;
    /* Optional: center the text */

    margin-bottom: 40px;
}

main h2 {
    font-size: clamp(1.2rem, 6vw, 2.6rem);
    /* min 1.2rem, scales with viewport, max 2.6rem */
    /* white-space: nowrap; */
    /* Stay in single line */
    display: inline-block;
    /* Ensure text width respects container */
    width: 100%;
    /* Fit container width */
    text-align: center;
    /* Optional: center the text */
    margin-top: 60px;
}

article {
    margin-bottom: 50px;
    background: #fff8ec;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(58, 42, 26, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

article:hover {
    transform: translateY(-6px) rotateX(1deg);
    /* subtle 3D effect */
    box-shadow: 0 14px 32px rgba(58, 42, 26, 0.15);
    filter: brightness(1.02);
    /* slight glow effect */
}

article img {
    width: 100%;
    border-radius: 12px;
    margin-top: 18px;
    box-shadow: 0 4px 14px rgba(58, 42, 26, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}

article img:hover {
    transform: scale(1.03) rotateZ(0.5deg);

    box-shadow: 0 12px 28px rgba(58, 42, 26, 0.2);
    filter: brightness(1.05);
}

/* The commented-out block below was not part of the removal scope, but is kept commented out */
/* article img {
    transition: transform 0.5s ease, box-shadow 0.5s ease, filter 0.4s ease;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(58, 42, 26, 0.15);
    cursor: pointer;
}

article img:hover {
    transform: scale(1.05) rotateZ(0.8deg);
    box-shadow: 0 12px 28px rgba(58, 42, 26, 0.25);
    filter: brightness(1.06);
} */

article img::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(120deg,
            rgba(212, 175, 55, 0.12) 0%,
            rgba(245, 215, 110, 0.06) 50%,
            rgba(212, 175, 55, 0.12) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

article img:hover::after {
    opacity: 1;
}

/* ====== MAIN PARAGRAPH STYLE UPGRADE ====== */
main p {
    /* Slightly darken the text for better contrast within the light boxes */
    color: #3a2a1a;

    /* Slightly larger text for emphasis */
    font-size: 1.15rem;

    /* Ensure proper spacing between paragraphs */
    margin-bottom: 20px;

    /* Subtle indentation for a traditional look */
    /* text-indent: 1.5em; */

}

/* Style for lists within articles */
article ul {
    list-style: disc inside;
    margin-left: 15px;
    padding: 10px 0;
}

article ul li {
    margin-bottom: 8px;
    font-size: 1.15rem;
}

/* Remove bottom margin from the last paragraph in an article */
article p:last-child {
    margin-bottom: 0;
}

/* Ensure the initial paragraph in an article starts slightly above */
article p:first-of-type {
    margin-top: 10px;
}

/* ====== BUTTONS ====== */
.book-now-btn {
    display: inline-block;
    background: #a0522d;
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 15px 0;
    font-size: 1.1rem;
    letter-spacing: 0.4px;
}

.book-now-btn:hover {
    background: #3a2a1a;
    transform: scale(1.05);
}

/* ====== FOOTER ====== */
footer {
    text-align: center;
    padding: 30px;
    background: #fff1da;
    color: #3a2a1a;
    margin-top: 70px;
    border-top: 1px solid #f0e3d1;
    font-size: 1rem;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;

    /* RESET to fully visible state */
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

/* ====== Golden reflection layer (now shimmering) ====== */
footer::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 0;
    width: 200%;
    /* wider for smooth horizontal drift */
    height: 80px;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(115deg,
            rgba(212, 175, 55, 0.28) 10%,
            rgba(245, 215, 110, 0.15) 40%,
            rgba(184, 134, 11, 0.12) 60%,
            rgba(245, 215, 110, 0.15) 80%,
            transparent 100%);
    filter: blur(14px);
    background-size: 300% 100%;
    background-position: -100% 0;
    transition: opacity 1.8s ease;
}

/* ====== Visible State ====== */
footer.visible {
    opacity: 1;
    transform: translateY(0);
    /* REMOVED: animation: footerGlow 3.5s ease-in-out 1; */
}

footer.visible::before {
    opacity: 1;
    /* REMOVED: animation: reflectionFade 3.5s ease-in-out 1, shimmerDrift 5s ease-in-out 1; */
}