@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:wght@500;700;900&display=swap');

:root {
    /* Colorful Indian-inspired Theme Variables */
    --primary-color: #FF9933; /* Saffron/Orange */
    --secondary-color: #138808; /* Green */
    --dark-color: #000080; /* Navy Blue */
    --light-color: #FFFDF9; /* Soft Cream */
    
    --gradient-primary: linear-gradient(135deg, #FF9933 0%, #E67A00 100%);
    --gradient-secondary: linear-gradient(135deg, #138808 0%, #0A5C04 100%);
    --gradient-dark: linear-gradient(135deg, #000080 0%, #00004D 100%);

    --font-heading: 'Playfair Display', serif;
    --font-text: 'Inter', sans-serif;
}

body {
    font-family: var(--font-text);
    background-color: var(--light-color);
    color: var(--dark-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.bg-dark { background-color: var(--dark-color); }

/* Mobile Menu */
#mobile-menu {
    display: none;
    transition: all 0.3s ease-in-out;
}
#mobile-menu.active {
    display: block;
}

/* Custom Numbered List for Reserve Page */
.numbered-features {
    list-style: none;
    padding-left: 0;
    counter-reset: feature-counter;
}

.numbered-features li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #4B5563;
}

.numbered-features li::before {
    counter-increment: feature-counter;
    content: counter(feature-counter);
    position: absolute;
    left: 0;
    top: -2px;
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    font-family: var(--font-text);
}

/* Base button styles */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    text-align: center;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.4);
}

/* Form Styles */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--font-text);
    margin-bottom: 1rem;
    background-color: white;
}
.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 153, 51, 0.2);
}

/* Cookie Banner (JS Version) */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    color: #ffffff;
    padding: 1.5rem;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
}

.cookie-btn {
    cursor: pointer;
    padding: 0.6rem 2rem;
    margin: 0.5rem;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 50px;
    border: none;
    display: inline-block;
    font-weight: bold;
    font-family: inherit;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.cookie-btn-alt {
    background-color: #4B5563;
}

/* Image wrappers */
.img-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}