:root {
    /* Brand Colors */
    --bg-color: #F5F2E8;
    --text-color: #3D2B1F;
    --accent-color: #C5A059;
    --royal-red: #800000;
    --border-gold: rgba(197, 160, 89, 0.3);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1400px;
    --section-padding: 4rem 2rem;
    --transition: all 0.3s ease;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    background-image: url("https://www.transparenttextures.com/patterns/stucco.png");
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

/* ===========================
   NAVIGATION BAR
   =========================== */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-logo:active {
    transform: scale(0.95);
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--royal-red);
    border-bottom-color: var(--royal-red);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
}

.admin-indicator {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    gap: 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.admin-indicator span {
    color: #ff4c4c;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.admin-indicator #logoutBtn {
    background: #ff4c4c;
    color: white;
    border: none;
    padding: 7px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    transition: background 0.2s;
}

.admin-indicator #logoutBtn:hover {
    background: #cc0000;
}

/* ===========================
   HERO SLIDESHOW SECTION
   =========================== */
.hero-section {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 0;
    min-height: 600px;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #000;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    animation: fadeEffect 1s ease-in-out;
}

.slide.active-slide {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

@keyframes fadeEffect {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(128, 0, 0, 0.6), rgba(61, 43, 31, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-btn {
    display: inline-block;
    background: white;
    color: var(--royal-red);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Slideshow Controls */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    font-size: 3rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    z-index: 3;
    transition: var(--transition);
}

.slide-arrow:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slide-arrow.left {
    left: 1rem;
}

.slide-arrow.right {
    right: 1rem;
}

.slide-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active-dot,
.dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Opening Hours Panel */
.opening-hours-panel {
    background: white;
    padding: 2.5rem 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hours-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.opening-hours-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--royal-red);
}

.hours-list {
    width: 100%;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-gold);
    font-size: 0.95rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span:first-child {
    font-weight: 600;
}

/* ===========================
   INFO CARDS SECTION
   =========================== */
.info-cards-section {
    padding: var(--section-padding);
    background: white;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.info-card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.info-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.info-card:hover .info-card-image img {
    transform: scale(1.1);
}

.info-card-content {
    padding: 2rem;
}

.info-card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.info-card-content p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.info-card-btn {
    display: inline-block;
    background: var(--royal-red);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.info-card-btn:hover {
    background: var(--accent-color);
    transform: translateX(5px);
}

/* Continue in next CSS file... */
/* Emergency Visual Recovery Fixes */
.footer {
    background: #1a110a !important;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 80px 0 40px;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    width: 100% !important;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.footer h4 {
    color: #C5A059 !important; /* Gold Brand Accent */
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.footer p, .footer span {
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer a:hover {
    color: #ffd700 !important;
}

.footer-bottom {
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5) !important;
}

.stars {
    color: #ffd700 !important;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block !important;
    text-align: center;
}

.location-title {
    color: #ffffff !important;
}

.location-body p {
    color: #ffffff !important;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .social-links {
        justify-content: center;
    }
}
