:root {
    --bg-dark: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.05);
    --gold: #d4af37;
    --gold-hover: #f1cd56;
    --text-primary: #f8f8f2;
    --text-secondary: #a0a0a0;
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, .logo {
    font-family: var(--font-serif);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 3rem;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 5%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    max-height: 45px;
    width: auto;
    display: block;
    transition: all 0.4s ease;
}

.logo span {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-left: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-sans);
    transition: all 0.4s ease;
}

.navbar.scrolled .logo img {
    max-height: 35px;
}

.navbar.scrolled .logo span {
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .logo span {
        display: none;
    }
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-secondary:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.9) 100%);
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

/* Glassmorphism */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

/* Rooms */
.cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.card {
    overflow: hidden;
    transition: transform 0.4s;
}

.card:hover {
    transform: translateY(-10px);
}

.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.card-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.features li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.features li::before {
    content: '✦';
    color: var(--gold);
    margin-right: 0.5rem;
}

/* Dining */
.dining-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.dining-text {
    padding: 3rem;
}

.dining-text h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.dining-text p {
    color: var(--text-secondary);
}

.dining-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Homepage Gallery Preview */
.gallery-preview-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-preview-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-preview-item:hover img {
    transform: scale(1.05);
}

.gallery-preview-cta {
    text-align: center;
}

/* Gallery Page Hero */
.gallery-hero {
    padding-top: 8rem;
    text-align: center;
    background: linear-gradient(to bottom, #0a0a0a 0%, #111 100%);
    border-bottom: 1px solid var(--glass-border);
}

.gallery-title {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.gallery-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Gallery Grid */
.gallery-section {
    background-color: var(--bg-dark);
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-primary);
    font-size: 3rem;
    padding: 1rem;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s;
}

.lightbox-arrow:hover {
    color: var(--gold);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-caption {
    position: absolute;
    bottom: 3rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Enhanced Footer Styles */
.footer {
    background-color: #0b0b0b;
    border-top: 2px solid var(--gold);
    padding: 6rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.3fr 0.8fr 0.7fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    color: var(--gold);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.branding-col .footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.branding-col .footer-logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.branding-col .footer-logo h3 {
    color: var(--text-primary);
    font-size: 1.6rem;
    font-family: var(--font-serif);
    margin: 0;
    text-transform: none;
    letter-spacing: 1px;
}

.branding-col .brand-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.branding-col .cin-no {
    font-size: 0.8rem;
    opacity: 0.5;
    color: var(--text-secondary);
}

.address-col .footer-contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    align-items: flex-start;
}

.address-col .footer-contact-item .icon {
    color: var(--gold);
    font-size: 1.1rem;
    line-height: 1.4;
}

.address-col .footer-contact-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.address-col .footer-contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline;
}

.address-col .footer-contact-item a:hover {
    color: var(--gold);
}

.links-col a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.8rem;
    display: block;
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.links-col a:hover {
    color: var(--gold);
    transform: translateX(3px);
}

.social-col .social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-col .social-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.social-col .social-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.85rem;
    opacity: 0.7;
}

@media (max-width: 1200px) {
    .footer-grid {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer {
        padding: 4rem 0 2rem;
    }
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .dining-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}

/* About / Brand Story Section Styling */
.about .container {
    padding: 4rem 2rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-quote {
    text-align: center;
    border-left: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
    padding: 1rem 2rem;
    max-width: 850px;
    margin: 0 auto;
}

.about-quote blockquote {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.5;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features-container {
    height: fit-content;
}

.about-features-container h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
    font-weight: 600;
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.pillar-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    transition: transform 0.3s, border-color 0.3s, background 0.3s;
}

.pillar-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.03);
}

.pillar-icon {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.pillar-card h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.pillar-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 576px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

/* Redesigned Overview page styling */
.overview-grid-no-img {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.overview-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: stretch;
}

.overview-image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

.overview-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.overview-image-card:hover .overview-main-img {
    transform: scale(1.05);
}

.overview-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 3rem 2rem 2rem;
    color: var(--text-primary);
    text-align: left;
}

.overview-image-overlay blockquote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.5;
    border-left: 2px solid var(--gold);
    padding-left: 1.2rem;
}

.overview-details-card {
    padding: 3.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.overview-story p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.overview-story p:last-child {
    margin-bottom: 0;
}

.overview-story .lead-text {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-family: var(--font-serif);
    line-height: 1.6;
}

.overview-promise {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.overview-promise .promise {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.overview-promise .tagline {
    font-family: var(--font-serif);
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Contact & Inquiries */
.contact {
    background-color: var(--bg-dark);
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: stretch;
}

.contact-form-container, .contact-info-container {
    padding: 3rem;
    border-radius: 16px;
    height: 100%;
}

.contact-form-container h3, .contact-info-container h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.8rem 1rem;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s, background 0.3s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
}

.btn-block {
    width: 100%;
    margin-top: 1rem;
}

/* Contact Info Details */
.cin-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

.info-block {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--gold);
    line-height: 1;
}

.info-text h4 {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.info-text p, .info-text a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s;
}

.info-text a:hover {
    color: var(--gold);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .contact-form-container, .contact-info-container {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Dining Page Styling */
.dining-hero {
    background: linear-gradient(rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.9)), url('images/fine_dining.png') no-repeat center center/cover;
    padding: 8rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.dining-list-section {
    padding: 6rem 0;
    background-color: var(--bg-dark);
}

.dining-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.dining-row.reverse .dining-row-img {
    order: 2;
}

.dining-row:last-child {
    margin-bottom: 0;
}

.dining-row-img {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.dining-row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.dining-row:hover .dining-row-img img {
    transform: scale(1.03);
}

.dining-row-text {
    padding: 3rem;
    border-radius: 16px;
}

.venue-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 500;
}

.dining-row-text h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.venue-sub {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.dining-row-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.venue-meta {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.venue-meta span strong {
    color: var(--text-primary);
}

/* Contact Page Hero */
.contact-page-hero {
    background: linear-gradient(rgba(5, 5, 5, 0.75), rgba(5, 5, 5, 0.95)), url('images/hero section.jpeg') no-repeat center center/cover;
    padding: 8rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

@media (max-width: 992px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
    .overview-image-card {
        min-height: 350px;
    }
    .dining-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .dining-row.reverse .dining-row-img {
        order: -1;
    }
    .dining-row-text {
        padding: 2rem;
    }
}
