/* 
 * Lumière Elegant Restaurant Theme v2.0
 * Design: Complex, Rich, Premium
 * Features: Parallax, Glassmorphism, Asymmetrical Grid
 */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Cormorant+Garamond:ital,wght@1,500&display=swap');

:root {
  /* Palette */
  --bg-color: #121212;
  --bg-darker: #0a0a0a;
  --surface-color: #1f1f1f;
  --glass-bg: rgba(30, 30, 30, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  
  --text-color: #e0e0e0;
  --text-muted: #888;
  
  --accent-color: #d4af37; /* Gold */
  --accent-gradient: linear-gradient(135deg, #d4af37 0%, #aa8c2c 100%);
  --accent-glow: rgba(212, 175, 55, 0.3);
  
  /* Spacing & Layout */
  --section-padding: 100px 20px;
  --container-width: 1200px;
  --border-radius-lg: 12px;
  --border-radius-sm: 4px;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Lato', sans-serif;
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.bg-darker { background-color: var(--bg-darker); }

.relative { position: relative; }
.z-1 { z-index: 1; }

.section-padding { padding: var(--section-padding); }

/* Typography Helpers */
.gold-text {
    color: var(--accent-color);
    background: var(--accent-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eyebrow {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    display: block;
}

.lead {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 300;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    position: relative;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-gold {
    background: var(--accent-gradient);
    color: #000;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-outline-light {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
    background: transparent;
}

.btn-outline-light:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.05);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(18, 18, 18, 0.9);
    padding: 15px 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    font-style: italic;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ddd;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section (Parallax) */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* .hero-bg-img if we had one:
background-image: url('../images/hero-bg.jpg');
background-size: cover;
background-position: center;
*/

.hero-content {
    z-index: 2;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.3rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-10px) translateX(-50%);}
    60% {transform: translateY(-5px) translateX(-50%);}
}

/* About Section (Asymmetrical) */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 500px;
}

.img-box {
    position: absolute;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem; 
    color: #333;
}

.img-1 {
    width: 70%;
    height: 80%;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #222; /* Placeholder */
}

.img-2 {
    width: 60%;
    height: 60%;
    bottom: 0;
    right: 0;
    z-index: 2;
    background-color: var(--surface-color); /* Placeholder */
    border: 1px solid var(--accent-color);
}

.signature-block {
    margin-top: 40px;
}

.signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-style: italic;
    color: var(--accent-color);
}

.role {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* Menu Tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: #aaa;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.tab-btn:hover, .tab-btn.active {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.tab-btn.active {
    background: rgba(212, 175, 55, 0.1);
}

.menu-category {
    display: none;
    animation: fadeIn 0.5s ease;
}

.menu-category.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px 60px;
}

.menu-item-row {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #333;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px;
}

.item-header h3 {
    font-size: 1.3rem;
    font-weight: 400;
}

.item-header .price {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.item-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
}

/* Gallery (Masonry-ish Grid) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 15px;
}

.gallery-item {
    position: relative;
    background-color: #222; /* Placeholder */
    overflow: hidden;
    cursor: pointer;
}

/* Make grid interesting */
.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.item-wide {
    grid-column: span 2;
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

/* Team Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #333;
    margin: 0 auto 20px;
    border: 2px solid var(--accent-color);
}

.team-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-info span {
    font-size: 0.9rem;
    color: var(--accent-color);
    text-transform: uppercase;
}

.social-mini {
    margin-top: 15px;
}

.social-mini a {
    color: #666;
    margin: 0 5px;
}

.social-mini a:hover {
    color: #fff;
}

/* Testimonials (Slider) */
.testimonials {
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)), url('../images/testimonial_bg.png');
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
}

.testimonial-slide {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.8s;
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    opacity: 0.5;
}

.review-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 30px;
}

.reviewer .name {
    display: block;
    font-weight: 700;
    color: #fff;
}

.reviewer .role {
    font-size: 0.85rem;
    color: var(--accent-color);
}

.controls {
    margin-top: 40px;
}

.controls button {
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 10px;
    transition: all 0.3s;
}

.controls button:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
}

/* Reservation Form */
.reservation-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 80px;
    background: rgba(30, 30, 30, 0.4); /* Stronger glass base */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.5),
        inset 0 0 30px rgba(0,0,0,0.5); /* Inner depth */
    position: relative;
    overflow: hidden;
}

/* Subtle Gold Accent Line on Top */
.reservation-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gradient);
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header p {
    color: var(--text-muted);
    margin-top: 15px;
    font-size: 0.95rem;
    font-weight: 300;
}

.reservation-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-family: var(--font-heading); /* Elegant serif for labels? Or clean sans? Let's use clean sans but tracked out */
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.input-modern {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px 20px;
    color: #fff;
    border-radius: 0; /* Sharp corners for luxury feel, or keep small radius. Let's do small radius */
    border-radius: 4px;
    font-family: var(--font-heading); /* Serif font in inputs looks very classy */
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none; /* Remove default select arrows */
}

/* Custom Select Arrow */
select.input-modern {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23d4af37%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 20px top 50%;
    background-size: 12px auto; /* Slightly larger arrow */
    padding-right: 45px;
    cursor: pointer;
}

/* Style the Dropdown Options (Browser dependent, but works in many modern ones) */
select.input-modern option {
    background-color: #1a1a1a;
    color: #fff;
    padding: 15px;
    font-family: var(--font-body); /* Sans-serif for readability in list */
}

/* Input Focus State - The "Glow" */
.input-modern:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(212, 175, 55, 0.08); 
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15); /* Stronger glow */
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-action {
    margin-top: 20px;
}

/* Input Icon (Calendar) */
.input-icon {
    position: absolute;
    right: 15px;
    bottom: 18px; /* Vertically centered in the input area */
    color: var(--accent-color);
    font-size: 1.1rem;
    pointer-events: none; /* Let clicks pass through to input */
    transition: transform 0.3s ease;
}

.form-group:hover .input-icon {
    transform: scale(1.1);
}

/* Enhancing the Date Input */
input[type="date"], 
input.date-input-with-icon {
    position: relative;
    cursor: pointer;
    padding-right: 45px; /* Space for the icon */
}

/* Hide default indicator since we have a custom icon now */
input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}

/* Footer */
.footer {
    padding: 80px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--accent-color);
  margin: 15px auto 0;
}

/* Image Utility Classes */
.img-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #333;
  margin: 0 auto 20px;
  border: 2px solid var(--accent-color);
  object-fit: cover;
  padding: 0;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.brand-col p {
    color: var(--text-muted);
    margin: 20px 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid #333;
    border-radius: 50%;
    margin-right: 10px;
    color: #aaa;
}

.social-links a:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 10px 15px;
    color: #fff;
    flex: 1;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    background: var(--accent-color);
    border: none;
    padding: 0 15px;
    color: #000;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.03);
    color: #444;
    font-size: 0.8rem;
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Layout Response */
@media (max-width: 992px) {
  :root {
      --section-padding: 80px 20px;
  }
  
  .hero h1 { font-size: 4rem; }
  
  .about-grid { 
      grid-template-columns: 1fr; 
      gap: 50px;
  }
  
  .footer-grid {
      grid-template-columns: 1fr 1fr;
  }
  
  .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: auto; /* Let rows auto-size */
  }
  
  /* Reset large item spans for tablet/mobile to avoid holes */
  .item-large, .item-wide {
      grid-column: span 1;
      grid-row: auto;
      height: 250px;
  }
}

@media (max-width: 768px) {
  :root {
      --section-padding: 60px 20px;
  }

  .hero h1 { 
      font-size: 3rem; 
      line-height: 1.1;
  }
  
  .hero p {
      font-size: 1.1rem;
      padding: 0 20px;
  }
  
  .section-title {
      font-size: 2.2rem;
  }
  
  /* Stack Grids */
  .about-grid,
  .menu-list-grid,
  .footer-grid,
  .reservation-form,
  .input-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .form-group.full-width { 
    grid-column: span 1; 
  }
  
  /* Reservation Form - Mobile Layout Fixes */
  .reservation-box {
    padding: 30px 20px; /* Reduced padding for mobile */
    width: 100%;       /* Ensure full width */
    max-width: 100%;   /* Prevent overflow */
    margin: 0 auto;    /* Center alignment */
    /* Remove huge blurred borders if they cause overflow, or adjust */
  }

  /* Center Footer Text */
  .footer-col {
      text-align: center;
  }
  .section-title::after, .footer-col h4::after {
      left: 50%;
      transform: translateX(-50%);
  }
  .social-links {
      justify-content: center;
  }

  /* Mobile Menu */
  .mobile-menu-btn { 
    display: block; 
    z-index: 1001;
  }
  
  .nav-links {
      position: fixed;
      top: 0; 
      left: 0; /* Changed from right: 0 to left: 0 */
      height: 100vh;
      width: 100%;
      max-width: 100%; /* Full width */
      background: rgba(10, 10, 10, 0.98);
      backdrop-filter: blur(15px);
      padding-top: 100px;
      
      /* Slide from Top */
      transform: translateY(-100%); /* Changed from translateX(100%) */
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Slower, smoother easing */
      
      box-shadow: 0 5px 20px rgba(0,0,0,0.5);
      z-index: 1000;
      
      /* Center Content */
      display: flex;
      justify-content: center;
  }
  
  .nav-links.active { 
    transform: translateY(0); /* Changed from translateX(0) */
  }
  
  .nav-links ul { 
    flex-direction: column; 
    align-items: center; 
    gap: 30px;
    width: 100%;
  }
  
  .nav-links a {
      font-size: 1.5rem; /* Slightly larger for focus */
  }
  
  .about-images {
      height: 400px; 
  }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr; /* Stack gallery items */
    }
    
    .menu-tabs {
        gap: 10px;
    }
    
    .tab-btn {
        padding: 8px 15px;
        font-size: 0.75rem;
        flex: 1 1 auto; /* Grow to fill space */
    }
    
    .img-box {
        font-size: 0; /* Hide placeholder text if any */
    }
    
    .about-images {
        height: 350px;
    }
    
    /* Further adjustment for very small screens */
    .reservation-box {
        padding: 25px 15px;
    }
}

/* --- Portfolio Features --- */

/* 1. Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    mix-blend-mode: difference;
    display: none;
}

@media (pointer: fine) {
    .custom-cursor {
        display: block;
    }
}

.custom-cursor.hovered {
    width: 50px;
    height: 50px;
    background-color: rgba(212, 175, 55, 0.2);
    border-color: transparent;
}

/* 2. Dev Mode Toggle */
.dev-mode-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 10px;
}

#dev-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #000;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

#dev-toggle:hover {
    transform: rotate(90deg);
    background: var(--accent-color);
    color: #000;
}

.dev-label {
    background: #000;
    color: var(--accent-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}

.dev-mode-toggle:hover .dev-label {
    opacity: 1;
    transform: translateX(0);
}

/* Dev Mode Tooltips */
.dev-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--accent-color);
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    z-index: 1000;
    max-width: 250px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.dev-mode-active .dev-tooltip {
    opacity: 1;
    visibility: visible;
}

/* 3. Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #1a1a1a;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid var(--accent-color);
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.modal-details {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

/* Flatpickr Custom Theme for Lumière */
.flatpickr-calendar {
    background: #1a1a1a !important;
    border: 1px solid var(--accent-color) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8) !important;
    border-radius: 12px !important;
    font-family: var(--font-body) !important;
    color: #fff !important;
}

.flatpickr-calendar.arrowTop:before, 
.flatpickr-calendar.arrowTop:after {
    border-bottom-color: var(--accent-color) !important;
}

/* Header (Month/Year) */
.flatpickr-month {
    background: #1a1a1a !important;
    color: #fff !important;
    fill: #fff !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.flatpickr-current-month {
    color: #fff !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    background: #1a1a1a !important;
    color: #fff !important;
    font-weight: 700;
}

.flatpickr-current-month input.cur-year {
    color: #fff !important;
    font-weight: 700;
}

/* Navigation Arrows */
.flatpickr-prev-month, .flatpickr-next-month {
    fill: var(--accent-color) !important;
    color: var(--accent-color) !important;
}

.flatpickr-prev-month:hover svg, .flatpickr-next-month:hover svg {
    fill: #fff !important;
}

/* Weekdays */
.flatpickr-weekday {
    background: #1a1a1a !important;
    color: var(--accent-color) !important;
    font-weight: 700;
}

/* Days */
.flatpickr-day {
    color: #ccc !important;
}

.flatpickr-day:hover, 
.flatpickr-day.prevMonthDay:hover, 
.flatpickr-day.nextMonthDay:hover, 
.flatpickr-day:focus {
    background: rgba(212, 175, 55, 0.2) !important;
    border-color: transparent !important;
    color: #fff !important;
}

.flatpickr-day.selected, 
.flatpickr-day.startRange, 
.flatpickr-day.endRange, 
.flatpickr-day.selected.inRange, 
.flatpickr-day.startRange.inRange, 
.flatpickr-day.endRange.inRange, 
.flatpickr-day.selected:focus, 
.flatpickr-day.startRange:focus, 
.flatpickr-day.endRange:focus, 
.flatpickr-day.selected:hover, 
.flatpickr-day.startRange:hover, 
.flatpickr-day.endRange:hover {
    background: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: #000 !important;
    font-weight: 700 !important;
}

.flatpickr-day.today {
    border-color: var(--accent-color) !important;
    color: var(--accent-color) !important;
}

.flatpickr-day.today:hover {
    background: var(--accent-color) !important;
    color: #000 !important;
}

/* Time Picker (if used later) */
.flatpickr-time {
    background: #1a1a1a !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
}

.flatpickr-time input {
    color: #fff !important;
}

.flatpickr-time .flatpickr-time-separator {
    color: #fff !important;
}

.flatpickr-time .flatpickr-am-pm {
    color: #fff !important;
}

/* Toast Notification System */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none; /* Let clicks pass through container */
}

.toast {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 15px 25px;
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    min-width: 300px;
    opacity: 0;
    transform: translateX(100px);
    animation: toastIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    cursor: pointer;
    pointer-events: auto; /* Re-enable clicks on toast */
    display: flex;
    align-items: center;
    gap: 15px;
}

.toast.toast-error {
    border-left-color: #ff4d4d;
}

.toast.toast-success {
    border-left-color: #4cd137;
}

.toast i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.toast.toast-error i { color: #ff4d4d; }
.toast.toast-success i { color: #4cd137; }

.toast.hiding {
    animation: toastOut 0.4s ease forwards;
}

@keyframes toastIn {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes toastOut {
    to { opacity: 0; transform: translateX(100px); }
}
