/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Colors - Saffron Theme */
    --primary: #FF7722;
    --primary-foreground: #ffffff;
    --primary-hover: #e0691e;

    --secondary: #fff7ed;
    --secondary-foreground: #0f172a;

    --accent: #FFEDD5;
    --accent-text: #FF7722;

    --background: #ffffff;
    --foreground: #1e293b;
    --muted: #f1f5f9;
    --muted-foreground: #64748b;

    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-500: #64748b;
    --slate-400: #94a3b8;

    /* Typography */
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;

    /* Spacing */
    --container-padding: 1rem;
    --max-width: 1280px;

    /* Misc */
    --radius: 0.5rem;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.5;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.grid {
    display: grid;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.w-full {
    width: 100%;
}

.h-screen {
    height: 100vh;
}

.overflow-hidden {
    overflow: hidden;
}

/* Spacing Utils */
.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

/* Colors & Text */
.text-primary {
    color: var(--primary);
}

.text-white {
    color: #fff;
}

.bg-primary {
    background-color: var(--primary);
}

.bg-white {
    background-color: #fff;
}

.bg-slate-900 {
    background-color: var(--slate-900);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline-dark {
    background-color: transparent;
    border: 1px solid var(--slate-900);
    color: var(--slate-900);
}

.btn-outline-dark:hover {
    background-color: var(--slate-900);
    color: #fff;
}

.btn-lg {
    height: 3rem;
    padding: 0 2rem;
    font-size: 1rem;
}

.btn-md {
    height: 2.25rem;
    padding: 0 1.5rem;
    font-size: 0.875rem;
}

/* Animations - Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-100 {
    transition-delay: 0.1s;
}

.reveal-delay-200 {
    transition-delay: 0.2s;
}

.reveal-delay-300 {
    transition-delay: 0.3s;
}

/* Specific Component Styles */
/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f1f5f9;
    height: 5rem;
    display: flex;
    display: flex;
    align-items: center;
}

.navbar-container {
    width: 100%;
    max-width: 100%;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
    transition: color 0.2s;
    margin-right: 2rem;
}

.nav-link:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu {
    display: none;
}

/* Hero */
/* Hero */
/* Hero */
.hero {
    position: relative;
    min-height: 100vh;

    background-image: url("img/hero-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;

    background-color: #fff7ed;
    /* fallback bhagwa-white */
    width: 100%;
    /* Ensure section is full width */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
}

/* Soft overlay so text stays readable */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    /* Full width */
    max-width: 100%;
    /* Remove 900px limit */
    padding: 0 2rem;
}

/* About */
.about-img-container {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/5;
}

.about-card {
    position: absolute;
    bottom: -2.5rem;
    left: -2.5rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    gap: 1rem;
    max-width: 300px;
}

/* Amenities */
.amenity-card {
    background: #fff;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.icon-box {
    display: inline-flex;
    padding: 1rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

/* Stories */
.story-card {
    cursor: pointer;
}

.story-img-container {
    height: 24rem;
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.story-card:hover .story-img {
    transform: scale(1.05);
}

/* Video */
.play-btn-outer {
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.play-btn-inner {
    width: 4rem;
    height: 4rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.video-container:hover .play-btn-outer {
    transform: scale(1.1);
}

/* Contact */
.contact-circles {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    outline: none;
    transition: all 0.2s;
}

.input-field:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--accent);
}

/* Footer */
.footer-link {
    color: var(--slate-400);
    transition: color 0.2s;
    font-size: 0.875rem;
}

.footer-link:hover {
    color: var(--primary);
}

/* Responsive */
@media (min-width: 768px) {
    .md-flex {
        display: flex;
    }

    .md-hidden {
        display: none;
    }

    .md-grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .md-grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .md-text-5xl {
        font-size: 3rem;
    }

    .md-px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .lg-grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .lg-grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .lg-text-8xl {
        font-size: 6rem;
    }
}

@media (max-width: 767px) {
    .mobile-menu {
        position: fixed;
        top: 5rem;
        left: 0;
        width: 100%;
        background: #fff;
        border-bottom: 1px solid #f1f5f9;
        padding: 1rem;
        display: none;
        flex-direction: column;
        gap: 1rem;
    }

    .mobile-menu.open {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .nav-links-desktop {
        display: none;
    }

    .about-card {
        display: none;
    }

    /* Hide overlap card on mobile for simplicity */
}

/* =========================
   FOOTER (Trivago Style)
========================= */

footer {
    background-color: var(--slate-900);
    color: #ffffff;
}

/* Footer grid fix */
footer .container {
    align-items: start;
}

/* Footer headings */
footer h3,
footer h4 {
    color: #ffffff;
}

/* Footer paragraph */
footer p {
    color: var(--slate-400);
}

/* Footer links */
.footer-link {
    color: var(--slate-400);
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--primary);
}

/* Country select dropdown */
footer select {
    appearance: none;
    background-color: #0f172a;
    border: 1px solid #334155;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: #ffffff;
    font-size: 0.875rem;
    cursor: pointer;
}

footer select:focus {
    outline: none;
    border-color: var(--primary);
}

/* Newsletter input */
footer input[type="email"] {
    background-color: #0f172a;
    border: 1px solid #334155;
    border-radius: 0.5rem;
    padding: 0.75rem;
    color: #ffffff;
    font-size: 0.875rem;
}

footer input::placeholder {
    color: var(--slate-500);
}

footer input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 119, 34, 0.2);
}

/* Subscribe button alignment */
footer button {
    white-space: nowrap;
}

/* Bottom bar */
footer .container.text-center {
    border-top: 1px solid #1e293b;
}

/* =========================
   FOOTER RESPONSIVE
========================= */

@media (max-width: 768px) {
    footer .container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: left;
    }

    footer .container.text-center {
        text-align: center;
    }

    footer h3 {
        font-size: 1.5rem;
    }
}