/* ============================================
   DESI VIBES RESTAURANT - MAIN STYLESHEET
   Modern, SEO-Optimized Restaurant Website
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #e67e22;
    --primary-dark: #d35400;
    --primary-light: #f39c12;
    --secondary-color: #2c3e50;
    --accent-color: #c0392b;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a2e;
    --bg-darker: #16213e;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 25px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

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

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

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

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

ul {
    list-style: none;
}

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

/* ============================================
   ANIMATIONS
   ============================================ */

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px 10px rgba(230, 126, 34, 0); }
}

/* Glow Animation */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px var(--primary-color), 0 0 10px var(--primary-color), 0 0 15px var(--primary-color); }
    50% { box-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color), 0 0 30px var(--primary-color); }
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}

/* Shimmer Animation */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Rotate Animation */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Scale In Animation */
@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Slide Up Animation */
@keyframes slideUp {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Typewriter Effect */
@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

/* Blink Cursor */
@keyframes blink {
    50% { border-color: transparent; }
}

/* Wave Animation */
@keyframes wave {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-5px); }
    75% { transform: translateY(5px); }
}

/* Morph Shape Animation */
@keyframes morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

/* ============================================
   ANIMATION CLASSES
   ============================================ */

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

.glow-effect {
    animation: glow 2s ease-in-out infinite;
}

.bounce-animation {
    animation: bounce 2s infinite;
}

.tilt-effect {
    transition: transform 0.3s ease;
}

.tilt-effect:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) scale(1.02);
}

.magnetic-btn {
    transition: transform 0.2s ease;
}

/* ============================================
   FLOATING SPICES
   ============================================ */

.floating-spice {
    position: fixed;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.spice-1 { top: 10%; left: 5%; animation-delay: 0s; }
.spice-2 { top: 30%; right: 8%; animation-delay: 1s; font-size: 1.5rem; }
.spice-3 { top: 60%; left: 3%; animation-delay: 2s; font-size: 2.5rem; }
.spice-4 { bottom: 20%; right: 5%; animation-delay: 3s; font-size: 1.8rem; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

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

.bg-dark p {
    color: rgba(255,255,255,0.8);
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--primary-color);
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 10px;
    position: relative;
    padding-left: 40px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.section-title {
    margin-bottom: 15px;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* ============================================
   PRELOADER
   ============================================ */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(230, 126, 34, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: rotate 1s linear infinite;
    margin: 0 auto 15px;
}

.loader p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    letter-spacing: 3px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(15px);
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--text-white);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.92), rgba(22, 33, 62, 0.85));
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.05;
    animation: morph 8s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: -2s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 10%;
    animation-delay: -4s;
}

.hero-content {
    text-align: center;
    color: var(--text-white);
    padding: 0 20px;
    max-width: 900px;
    z-index: 1;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 126, 34, 0.2);
    border: 1px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.hero-badge i {
    color: var(--primary-color);
}

.hero-title {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .typewriter {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid var(--primary-color);
    animation: typewriter 2s steps(20) 1s forwards, blink 0.7s step-end infinite;
    width: 0;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 15px 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition-fast);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-white);
    z-index: 1;
}

.scroll-indicator span {
    display: block;
    font-size: 0.75rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--text-white);
    border-radius: 15px;
    margin: 0 auto;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition-medium);
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-img-small {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--text-white);
}

.about-img-small img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    line-height: 1.3;
}

.about-content .section-title {
    margin-bottom: 25px;
}

.about-text {
    margin-bottom: 20px;
    font-size: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    text-align: center;
    padding: 20px;
    background: rgba(230, 126, 34, 0.05);
    border-radius: 15px;
    transition: var(--transition-fast);
}

.feature-item:hover {
    background: rgba(230, 126, 34, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(230, 126, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.feature-item:hover .feature-icon {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-5px) rotate(360deg);
}

.feature-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   MENU SECTION
   ============================================ */

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 12px 25px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.2);
    color: var(--text-white);
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.menu-item {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: left 0.5s ease;
}

.menu-item:hover::before {
    left: 100%;
}

.menu-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.menu-item h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.menu-item p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.menu-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.menu-badge {
    display: inline-block;
    padding: 3px 10px;
    background: var(--accent-color);
    color: var(--text-white);
    font-size: 0.7rem;
    border-radius: 20px;
    text-transform: uppercase;
}

.menu-cta {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   GALLERY SECTION - MASONRY
   ============================================ */

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.gallery-item:hover {
    transform: scale(1.02);
    z-index: 2;
}

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

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    transform: translateY(20px);
    transition: var(--transition-fast);
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h4 {
    color: var(--text-white);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.gallery-content p {
    color: rgba(255,255,255,0.8);
    margin: 0 0 10px 0;
    font-size: 0.9rem;
}

.zoom-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* ============================================
   RESERVATION SECTION
   ============================================ */

.reservation {
    position: relative;
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
}

.reservation-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-bg.jpg') center/cover;
    opacity: 0.1;
}

.reservation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.95));
}

.reservation .container {
    position: relative;
    z-index: 1;
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.reservation-info {
    color: var(--text-white);
}

.reservation-info .section-title {
    color: var(--text-white);
}

.reservation-info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.reservation-features {
    margin-bottom: 30px;
}

.r-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.r-feature:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(10px);
}

.r-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-info-box {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.1);
}

.c-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.c-info-item:last-child {
    margin-bottom: 0;
}

.c-info-item i {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.c-info-item:hover i {
    transform: rotate(360deg);
}

.c-info-item span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.c-info-item strong {
    font-size: 1rem;
    color: var(--text-white);
}

.reservation-form-wrapper {
    background: var(--text-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-fast);
}

.reservation-form-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.reservation-form h3 {
    margin-bottom: 25px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition-fast);
}

.contact-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--text-white);
    transition: var(--transition-fast);
}

.contact-card:hover .contact-icon {
    transform: rotateY(360deg);
}

.contact-card h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.contact-link {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-link:hover {
    color: var(--primary-light);
}

.contact-link i {
    margin-left: 5px;
    transition: var(--transition-fast);
}

.contact-link:hover i {
    transform: translateX(5px);
}

.status-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.open {
    background: #27ae60;
    color: var(--text-white);
    animation: pulse 2s infinite;
}

.contact-form-wrapper {
    background: var(--text-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-fast);
}

.contact-form-wrapper:hover {
    transform: translateY(-5px);
}

.contact-form h3 {
    margin-bottom: 25px;
    text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--bg-darker);
    color: var(--text-white);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px) rotate(360deg);
}

.footer-links h4 {
    color: var(--text-white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
    transition: var(--transition-fast);
}

.footer-links ul li a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 15px;
}

.footer-links ul li a:hover::before {
    width: 10px;
}

.footer-contact h4 {
    color: var(--text-white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.f-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.f-contact-item i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px) scale(1.1);
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */

.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--text-white);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-content i {
    color: #27ae60;
    font-size: 1.2rem;
}

/* ============================================
   ANIMATIONS ON SCROLL
   ============================================ */

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .about-grid,
    .reservation-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-images {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 280px;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 70px 25px 30px;
        transition: var(--transition-medium);
        z-index: 999;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 12px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-actions .btn-primary {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
        height: auto;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 3rem);
    }
    
    .hero-title .typewriter {
        white-space: normal;
        border-right: none;
        animation: none;
        width: auto;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px 20px;
        width: 100%;
        max-width: 200px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .about-grid {
        gap: 30px;
    }
    
    .about-img-main img {
        height: 300px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-img-small {
        display: none;
    }
    
    .experience-badge {
        left: 10px;
        top: 10px;
        padding: 12px 15px;
    }
    
    .exp-number {
        font-size: 1.5rem;
    }
    
    .menu-tabs {
        gap: 8px;
    }
    
    .menu-tab {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
    
    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-filter {
        gap: 8px;
    }
    
    .gallery-filter-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .reservation-form-wrapper,
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-spice {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-lg {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .menu-tabs {
        gap: 8px;
    }
    
    .menu-tab {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    
    .gallery-item.wide {
        grid-column: span 1;
    }
    
    .gallery-filter {
        gap: 8px;
    }
    
    .gallery-filter-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .reservation-form-wrapper,
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .section-subtitle {
        font-size: 0.75rem;
        padding-left: 30px;
    }
    
    .section-subtitle::before {
        width: 20px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-indicator,
    .back-to-top,
    .floating-spice {
        display: none !important;
    }
    
    .hero {
        height: auto;
        min-height: auto;
        padding: 50px 0;
    }
    
    .section-padding {
        padding: 30px 0;
    }
}
/* 360 SECTION FIXED DESIGN */

.virtual-tour {
  background: linear-gradient(180deg, #0f0f13 0%, #141420 100%);
  padding: 100px 20px;
  text-align: center;
}

.virtual-tour .section-title {
  color: #f5f1e6;
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 10px;
}

.virtual-tour .section-subtitle {
  color: rgba(255,255,255,0.7);
  max-width: 650px;
  margin: 0 auto 40px;
}

.hall-btn {
  padding: 10px 26px;
  border-radius: 999px;
  border: 1px solid #e28b2d;
  background: transparent;
  color: #e28b2d;
  transition: 0.3s ease;
  font-weight: 500;
}

.hall-btn.active,
.hall-btn:hover {
  background: #e28b2d;
  color: #111;
}

#panoViewer {
  width: 100%;
  max-width: 1100px;
  height: 500px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
  #panoViewer {
    height: 300px;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
}

h1 {
  font-size: clamp(42px, 6vw, 80px);
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
}

/* Remove fixed heights */
section {
  height: auto !important;
  min-height: auto !important;
}
html, body {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

form input,
form textarea,
form select {
  width: 100%;
  max-width: 100%;
}

.section {
  overflow: hidden;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.section-title {
  color: #f5f1e6;
}

.section-subtitle {
  color: rgba(255,255,255,0.75);
}
.hero {
  padding-top: 90px; /* match navbar height */
}

@media (max-width: 768px) {
  #panoViewer {
    height: 300px;
  }

  .hall-switch {
    flex-wrap: wrap;
  }
}

#panoViewer canvas {
  border-radius: 24px;
}

/* =====================================================
   DV RESTAURANT – GLOBAL FIX OVERWRITE PATCH
   Paste at the VERY END of style.css
===================================================== */


/* ---------- GLOBAL SAFETY ---------- */

html, body {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}


/* ---------- NAVBAR + HERO STACK FIX ---------- */

.navbar,
.nav {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999 !important;
}

.hero {
  position: relative !important;
  z-index: 1 !important;
  padding-top: 90px; /* adjust if navbar taller */
}


/* ---------- SCROLL INDICATOR FIX ---------- */

.scroll-indicator {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  margin-top: 40px;
  z-index: 2;
}


/* ---------- HEADING COLOR FIX ---------- */

.section.light .section-title,
.section.light h2,
.section.light h3 {
  color: #1b1b22 !important;
}

.section.light .section-subtitle,
.section.light p {
  color: #444 !important;
}

.section.dark .section-title,
.section.dark h2,
.section.dark h3 {
  color: #f5f1e6 !important;
}


/* ---------- ACHIEVEMENT CARDS CENTER FIX ---------- */

.achievements,
.stats,
.hero-stats {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 24px !important;
  flex-wrap: wrap !important;
  margin-top: 40px !important;
}

.achievement-card,
.stat-card,
.hero-stat-card {
  width: 220px !important;
  text-align: center !important;
}


/* ---------- 360 SECTION DESIGN FIX ---------- */

.virtual-tour {
  background: linear-gradient(
    180deg,
    #151622 0%,
    #11121a 100%
  ) !important;
  padding: 100px 20px !important;
  text-align: center;
}

.virtual-tour .section-title {
  color: #f5f1e6 !important;
}

.virtual-tour .section-subtitle {
  color: rgba(255,255,255,0.75) !important;
  max-width: 650px;
  margin: 0 auto 40px;
}

.hall-btn {
  padding: 10px 26px !important;
  border-radius: 999px !important;
  border: 1px solid #e28b2d !important;
  background: transparent !important;
  color: #e28b2d !important;
  font-weight: 500 !important;
  transition: 0.3s ease !important;
}

.hall-btn.active,
.hall-btn:hover {
  background: #e28b2d !important;
  color: #111 !important;
}

#panoViewer {
  width: 100% !important;
  max-width: 1100px !important;
  height: 500px !important;
  margin: 0 auto !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  background: #0e0f15 !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
}


/* ---------- CONTACT + RESERVATION GRID FIX ---------- */

.container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

.contact-grid,
.reservation-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 40px !important;
  align-items: stretch !important;
}

.contact-card,
.reservation-card {
  background: #1c1e2a !important;
  border-radius: 24px !important;
  padding: 40px !important;
  height: 100% !important;
}

form input,
form textarea,
form select {
  width: 100% !important;
  max-width: 100% !important;
}


/* ---------- RESPONSIVE FIXES ---------- */

@media (max-width: 992px) {

  .contact-grid,
  .reservation-grid {
    grid-template-columns: 1fr !important;
  }

  #panoViewer {
    height: 350px !important;
  }

  .achievement-card,
  .stat-card,
  .hero-stat-card {
    width: 100% !important;
    max-width: 280px !important;
  }
}

@media (max-width: 768px) {

  #panoViewer {
    height: 300px !important;
  }

  .hero {
    padding-top: 80px !important;
  }
}

/* =========================================================
   DV STRUCTURAL FIX – CONTACT / RESERVATION / HEADINGS
   Paste at VERY END of CSS
========================================================= */


/* ---------------- RESET LIGHT SECTION TYPOGRAPHY ---------------- */

.section.light,
.light-section,
.bg-light {
  background: #f4f1ea !important;
  color: #1c1c24 !important;
}

.section.light h1,
.section.light h2,
.section.light h3,
.light-section h1,
.light-section h2,
.light-section h3 {
  color: #1c1c24 !important;
  opacity: 1 !important;
}

.section.light p,
.light-section p {
  color: #4a4a55 !important;
}


/* ---------------- CONTACT + RESERVATION LAYOUT FIX ---------------- */

.contact-section,
.reservation-section {
  padding: 100px 20px !important;
}

.contact-wrapper,
.reservation-wrapper,
.contact-grid,
.reservation-grid {
  display: flex !important;
  flex-direction: row !important;
  gap: 40px !important;
  align-items: stretch !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.contact-wrapper > *,
.reservation-wrapper > *,
.contact-grid > *,
.reservation-grid > * {
  flex: 1 !important;
  min-width: 0 !important;
}


/* Make cards behave properly */

.contact-card,
.reservation-card {
  width: 100% !important;
  padding: 40px !important;
  border-radius: 20px !important;
  box-sizing: border-box !important;
}


/* ---------------- FORM OVERFLOW FIX ---------------- */

form {
  width: 100% !important;
}

form input,
form textarea,
form select {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}


/* ---------------- MOBILE STACK FIX ---------------- */

@media (max-width: 992px) {

  .contact-wrapper,
  .reservation-wrapper,
  .contact-grid,
  .reservation-grid {
    flex-direction: column !important;
  }

  .contact-card,
  .reservation-card {
    width: 100% !important;
  }
}


/* ---------------- REMOVE UNWANTED ABSOLUTE POSITIONS ---------------- */

.contact-section *,
.reservation-section * {
  position: relative !important;
}


/* ---------------- PREVENT HORIZONTAL SCROLL ---------------- */

html, body {
  overflow-x: hidden !important;
}

.container,
.section {
  max-width: 100% !important;
}
/* =====================================================
   DV FINAL LAYOUT + TEXT FIX (CONTACT + LIGHT SECTIONS)
   Paste at VERY END of style.css
===================================================== */


/* ================= LIGHT SECTION TEXT FIX ================= */

.section.light,
.light-section,
.bg-light {
  background: #f5f2ec !important;
  color: #1c1c24 !important;
}

.section.light h1,
.section.light h2,
.section.light h3,
.section.light h4,
.light-section h1,
.light-section h2,
.light-section h3 {
  color: #1c1c24 !important;
  opacity: 1 !important;
}

.section.light p,
.section.light span,
.section.light small {
  color: #4a4a55 !important;
}


/* ================= CONTACT SECTION FIX ================= */

.contact-section {
  padding: 100px 20px !important;
}

.contact-wrapper {
  max-width: 1200px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 40px !important;
  align-items: stretch !important;
}

.contact-card {
  width: 100% !important;
  padding: 40px !important;
  border-radius: 20px !important;
  box-sizing: border-box !important;
}

.contact-card h3 {
  margin-bottom: 10px !important;
}

.contact-card p {
  font-size: 14px !important;
}


/* ================= FORM SIDE FIX ================= */

.contact-form-wrapper {
  width: 100% !important;
}

.contact-form-wrapper form {
  width: 100% !important;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
  width: 100% !important;
  box-sizing: border-box !important;
}


/* ================= MOBILE STACK FIX ================= */

@media (max-width: 992px) {

  .contact-wrapper {
    grid-template-columns: 1fr !important;
  }

  .contact-card {
    padding: 30px !important;
  }
}


/* ================= GALLERY LIGHT FIX ================= */

#gallery,
.gallery-section {
  background: #f5f2ec !important;
  color: #1c1c24 !important;
}

#gallery h2,
.gallery-section h2 {
  color: #1c1c24 !important;
}


/* ================= PREVENT SIDE SCROLL ================= */

html, body {
  overflow-x: hidden !important;
}

.container,
.section {
  max-width: 100% !important;
}


/* ================= REMOVE CONFLICTING ABSOLUTE POSITIONS ================= */

.contact-section *,
.section.light * {
  position: relative !important;
}