/* ===== GLOBAL ===== */
    * {margin:0; padding:0; box-sizing:border-box;}
    :root {
      --gold: #d4af37;
      --light-gold: #f6e27a;
      --dark-bg: #0a0a0a;
      --darker-bg: #000;
      --medium-bg: #111;
      --text: #f5f5f5;
      --text-secondary: #ccc;
      --crimson: #000000;
    }

    html{
      scroll-behavior: smooth;
    }
    body {
      font-family:"Noto Sans JP", sans-serif;
      background:var(--darker-bg);
      color:var(--text);
      line-height:1.8;
      overflow-x: hidden;
    }
    h1,h2,h3 {
      font-family:"Cinzel Decorative", serif;
      letter-spacing:3px;
    }
    img {max-width:100%; display:block; border-radius:14px;}
    a {text-decoration:none; color:inherit;}
    section {padding:110px 20px;}

    /* ===== HEADER ===== */
    header {
      position:fixed; top:0; left:0; width:100%;
      display:flex; justify-content:space-between; align-items:center;
      padding:1.5rem 5rem;
      background:rgba(0,0,0,0.85);
      backdrop-filter: blur(8px);
      border-bottom:1px solid rgba(212,175,55,0.3);
      z-index:1000;
      transition: all 0.4s ease;
    }
    header.scrolled {
      padding: 1rem 5rem;
      background: rgba(0,0,0,0.95);
    }
    .logo {
      font-size:2.4rem; font-weight:bold;
      background:linear-gradient(90deg,var(--gold),var(--light-gold));
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
      letter-spacing:4px; cursor:pointer;
      transition: opacity .3s;
      display: flex;
      align-items: center;
    }
    .logo span {
      font-family: "Noto Sans JP", sans-serif;
      font-size: 1.2rem;
      margin-left: 8px;
      background: none;
      -webkit-text-fill-color: var(--text);
      opacity: 0.8;
    }
    .logo:hover {opacity:0.8;}
    nav ul {list-style:none; display:flex; gap:3rem;}
    nav ul li a {
      color:#fff; font-weight:600; font-size:1rem;
      position:relative; transition:.3s;
      letter-spacing:1px;
    }
    nav ul li a::after {
      content:""; position:absolute; bottom:-8px; left:0;
      width:0%; height:2px;
      background:linear-gradient(90deg,var(--gold),var(--light-gold));
      transition:width .4s;
    }
    nav ul li a:hover::after {width:100%;}
    nav ul li a:hover {color:var(--gold);}
    
    /* Mobile menu */
    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-around;
      width: 30px;
      height: 25px;
      cursor: pointer;
    }
    .menu-toggle span {
      width: 100%;
      height: 3px;
      background: var(--gold);
      transition: all 0.3s ease;
      border-radius: 2px;
    }

     /* ===== ANIMATION CLASSES ===== */
    .animate-on-scroll {
      opacity: 0;
      transform: translateY(50px);
      transition: opacity 1s ease, transform 1s ease;
    }
    
    .animate-on-scroll.animated {
      opacity: 1;
      transform: translateY(0);
    }
    
    .fade-in {
      animation: fadeIn 1.5s ease forwards;
    }
    
    .slide-in-left {
      animation: slideInLeft 1.2s ease forwards;
    }
    
    .slide-in-right {
      animation: slideInRight 1.2s ease forwards;
    }
    
    .zoom-in {
      animation: zoomIn 1.5s ease forwards;
    }
    
    .stagger-item {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }
    
    .stagger-item.animated {
      opacity: 1;
      transform: translateY(0);
    }
    
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }
    .delay-4 { transition-delay: 0.4s; }
    .delay-5 { transition-delay: 0.5s; }
    
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-100px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(100px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    @keyframes zoomIn {
      from {
        opacity: 0;
        transform: scale(0.9);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }
    
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-15px); }
      100% { transform: translateY(0px); }
    }
    
    .floating {
      animation: float 5s ease-in-out infinite;
    }

    /* ===== HERO ===== */
    .hero {
      height:100vh; display:flex; justify-content:center; align-items:center; text-align:center;
      position:relative; overflow:hidden; padding:0 2rem;
      background:#000;
    }
    .hero::after {
      content:""; position:absolute; inset:0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
    }
    .hero-content {
      position:relative; z-index:2; max-width:850px;
      animation:fadeInUp 1.8s ease;
    }
    .hero img {
      position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
      width:80%; height:100%; object-fit:cover; z-index:1;
      filter: brightness(0.7);
    }
    .hero h1 {
      font-size:4.5rem; color:var(--gold);
      text-shadow:2px 2px 20px rgba(0,0,0,0.9);
      margin-bottom:1rem;
      position: relative;
    }
    .hero h1::after {
      content: "";
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 3px;
      background: var(--gold);
    }
    .hero p {
      font-size:1.5rem; 
      color:#e0e0e0; 
      margin-bottom:2.5rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      margin-top: 5%;
      font-family: "Cormorant Garamond", serif;
      font-style: italic;
    }
    .btn {
      background:linear-gradient(135deg,var(--gold),var(--light-gold));
      color:#000; font-weight:bold;
      padding:16px 45px; border:none; border-radius:40px;
      cursor:pointer; transition:.4s; font-size:1.1rem;
      letter-spacing:1px;
      position: relative;
      overflow: hidden;
      z-index: 1;
      box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    }
    .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--crimson), #b91d44);
      transition: all 0.4s ease;
      z-index: -1;
    }
    .btn:hover::before {
      left: 0;
    }
    .btn:hover {
      color:#fff; 
      transform:scale(1.07);
      box-shadow: 0 7px 20px rgba(212, 175, 55, 0.6);
    }
    @keyframes fadeInUp {
      from {
        opacity:0; 
        transform:translateY(40px);
      } 
      to {
        opacity:1; 
        transform:translateY(0);
      }
    }

    /* Decorative elements */
    .decorative-element {
      position: absolute;
      opacity: 0.1;
      z-index: 1000;
    }
    .decorative-element.cherry-blossom {
      top: 20%;
      left: 10%;
      font-size: 5rem;
      color: #ff9eb5;
      transform: rotate(-30deg);
      z-index: 1000;
    }

    /* Scroll indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      color: var(--gold);
      font-size: 1.5rem;
      animation: bounce 2s infinite;
      z-index: 2;
    }
    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
      }
      40% {
        transform: translateX(-50%) translateY(-20px);
      }
      60% {
        transform: translateX(-50%) translateY(-10px);
      }
    }

    /* ===== ABOUT ===== */
    .about {
      background:var(--dark-bg); 
      position: relative;
    }
    .about-container {
      display: flex;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      gap: 100px;
    }
    .about-image {
      flex: 1;
      position: relative;
    }
    .about-image::before {
      content: "";
      position: absolute;
      top: -15px;
      left: -15px;
      width: 100%;
      height: 100%;
      border: 2px solid var(--gold);
      border-radius: 14px;
      z-index: -1;
      opacity: 0.7;
    }
    .about-content {
      flex: 1;
      text-align: left;
    }
    .about h2 {
      font-size:3rem; 
      margin-bottom:25px; 
      color:var(--gold);
      position: relative;
      display: inline-block;
    }
    .about h2::after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 60%;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), transparent);
    }
    .about p {
      font-size:1.15rem; 
      color:var(--text-secondary);
      margin-bottom: 25px;
    }
    .about-signature {
      font-family: "Cormorant Garamond", serif;
      font-style: italic;
      color: var(--gold);
      font-size: 1.4rem;
      text-align: right;
      margin-top: 30px;
    }

    /* ===== MENU ===== */
    .menu-section {
      background:var(--medium-bg); 
      position: relative;
      text-align: center;
    }
    .menu-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .menu-section h2 {
      font-size:3.2rem; 
      color:var(--gold); 
      margin-bottom:50px;
      position: relative;
      display: inline-block;
      text-align: center;
      width: 100%;
    }
    .menu-section h2::after {
      content: "";
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 3px;
      background: var(--gold);
    }
    .menu-grid {
      display:grid; 
      grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
      gap:40px; 
      max-width:1200px; 
      margin:0 auto;
    }
    .menu-item {
      background:rgba(20,20,20,0.9);
      backdrop-filter: blur(10px);
      border-radius:20px; 
      overflow:hidden;
      border:1px solid rgba(212,175,55,0.25);
      box-shadow:0 6px 35px rgba(0,0,0,0.8);
      transition:.4s;
      position: relative;
    }
    .menu-item:hover {
      transform:translateY(-10px);
      border-color:var(--gold);
      box-shadow:0 10px 40px rgba(212,175,55,0.4);
    }
    .menu-item-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: var(--gold);
      color: #000;
      font-weight: bold;
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      z-index: 2;
    }
    .menu-item img {
      width:100%; 
      height:240px; 
      object-fit:cover;
      transition: transform 0.5s ease;
    }
    .menu-item:hover img {
      transform: scale(1.05);
    }
    .menu-content {padding:24px; text-align:left;}
    .menu-content h3 {font-size:1.6rem; color:#fff; margin-bottom:12px;}
    .menu-content p {font-size:1rem; color:#bbb; margin-bottom:18px;}
    .menu-footer {display:flex; justify-content:space-between; align-items:center;}
    .price {color:var(--light-gold); font-weight:bold; font-size:1.2rem; letter-spacing:1px;}
    .menu-cta {
      text-align: center;
      margin-top: 60px;
    }

    /* ===== RESERVATION ===== */
    .reservation {
      background:linear-gradient(135deg,var(--dark-bg),var(--medium-bg)); 
      text-align:center;
      position: relative;
    }
    .reservation::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .reservation h2 {
      font-size:3rem; 
      color:var(--gold); 
      margin-bottom:35px;
      position: relative;
      display: inline-block;
    }
    .reservation h2::after {
      content: "";
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 3px;
      background: var(--gold);
    }
    .reservation form {
      max-width:700px; 
      margin:0 auto; 
      display:grid; 
      gap:22px;
      grid-template-columns: 1fr 1fr;
    }
    .reservation form .full-width {
      grid-column: 1 / span 2;
    }
    .reservation input,.reservation select,.reservation textarea {
      padding:16px; 
      border:1px solid #333; 
      border-radius:12px;
      background:#1a1a1a; 
      color:white; 
      font-size:1rem;
      transition:.3s;
    }
    .reservation input:focus,.reservation textarea:focus,.reservation select:focus {
      border-color:var(--gold); 
      box-shadow:0 0 10px rgba(212, 175, 55, 0.4); 
      outline:none;
    }
    .reservation button {
      background:linear-gradient(135deg,var(--gold),var(--light-gold));
      color:#000; 
      font-weight:bold;
      padding:18px; 
      border:none; 
      border-radius:40px;
      cursor:pointer; 
      transition:.4s; 
      font-size:1.1rem;
      grid-column: 1 / span 2;
    }
    .reservation button:hover {
      background:#e6c200; 
      transform:scale(1.07);
    }

    
    /* ===== FOOTER ===== */
    footer {
      background:var(--dark-bg); 
      color:#999; 
      text-align:center;
      padding:60px 35px 35px; 
      font-size:0.95rem;
      border-top:1px solid rgba(212,175,55,0.25);
      position:relative;
    }
    footer::before {
      content:""; 
      position:absolute; 
      top:0; 
      left:50%; 
      transform:translateX(-50%);
      width:120px; 
      height:3px;
      background:linear-gradient(90deg,var(--gold),var(--light-gold));
      border-radius:2px;
    }
    footer span {color:var(--gold);}
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      text-align: left;
      max-width: 1200px;
      margin: 0 auto 40px;
    }
    .footer-column h3 {
      color: var(--gold);
      font-size: 1.4rem;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
    }
    .footer-column h3::after {
      content: "";
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 40px;
      height: 2px;
      background: var(--gold);
    }
    .footer-column p, .footer-column li {
      margin-bottom: 12px;
      color: var(--text-secondary);
    }
    .footer-column ul {
      list-style: none;
    }
    .footer-column li {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .footer-column i {
      color: var(--gold);
      width: 20px;
    }
    .socials {
      margin-top:18px;
      display: flex;
      justify-content: center;
      gap: 20px;
    }
    .socials a {
      width: 45px;
      height: 45px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    .socials a:hover {
      background: var(--gold);
      transform: translateY(-5px);
    }
    .socials a:hover i {
      color: #000;
    }
    .copyright {
      margin-top: 30px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    /* ===== BACK TO TOP ===== */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: var(--gold);
      color: #000;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
      z-index: 999;
    }
    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
    }
    .back-to-top:hover {
      background: var(--light-gold);
      transform: translateY(-5px);
    }

    /* ===== RESPONSIVE ===== */
    @media(max-width: 992px) {
      .about-container {
        flex-direction: column;
        text-align: center;
      }
      .about-content {
        text-align: center;
      }
      .about h2::after {
        left: 50%;
        transform: translateX(-50%);
      }
      .about-signature {
        text-align: center;
      }
      .reservation form {
        grid-template-columns: 1fr;
      }
      .reservation form .full-width {
        grid-column: 1;
      }
      .reservation button {
        grid-column: 1;
      }
      .decorative-element {
        display: none;
      }
    }
    @media(max-width:768px){
      header {
        padding: 1rem 2rem;
      }
      header.scrolled {
        padding: 0.8rem 2rem;
      }

      .hero img {
      display: none;
    }

    .about-image{
      width: 90%;
    }

    .about-content{
      width: 80%;
    }

    .menu-item{
      width: 100%;
    }

    .logo {
      font-size:1.2rem;
    }
      nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        flex-direction: column;
        background: rgba(10,10,10,0.98);
        backdrop-filter: blur(10px);
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        z-index: 999;
        gap: 2.5rem;
      }
      nav ul.active {
        right: 0;
      }
      .menu-toggle {
        display: flex;
        z-index: 1000;
      }
      .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 8px);
      }
      .menu-toggle.active span:nth-child(2) {
        opacity: 0;
      }
      .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -8px);
      }
      .hero h1 {font-size:2.7rem;}
      section {padding:80px 15px;}
      .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
      }
    }

    
    /* ===== NOTIFICATION STYLES ===== */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: 8px;
  color: white;
  z-index: 10000;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 350px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification.success {
  background: linear-gradient(135deg, #4caf50, #45a049);
  border-left: 4px solid #2e7d32;
}

.notification.error {
  background: linear-gradient(135deg, #f44336, #d32f2f);
  border-left: 4px solid #b71c1c;
}

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

.notification-content i {
  font-size: 1.2rem;
}

/* ===== MODAL STYLES ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  overflow: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.modal-content {
  background-color: var(--dark-bg);
  margin: auto;
  padding: 40px;
  border: 1px solid var(--gold);
  width: 90%;
  max-width: 500px;
  position: relative;
  border-radius: 12px;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.show .modal-content {
  transform: scale(1);
}

.close-modal {
  color: var(--gold);
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.close-modal:hover {
  color: var(--text-light);
}

.modal-icon {
  font-size: 60px;
  color: var(--gold);
  margin-bottom: 20px;
}

.modal h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--gold);
}

.reservation-details {
  background: rgba(20, 20, 20, 0.5);
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  text-align: left;
}

.reservation-details p {
  margin-bottom: 10px;
  display: flex;
}

.reservation-details strong {
  min-width: 120px;
  display: inline-block;
}

.modal-close-btn {
  margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .reservation-details p {
    flex-direction: column;
  }
  
  .reservation-details strong {
    min-width: auto;
    margin-bottom: 5px;
  }
  
  .notification {
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

/* ===== FORM VALIDATION STYLES ===== */
.reservation input.error,
.reservation select.error,
.reservation textarea.error {
  border-color: #ff6b6b !important;
  box-shadow: 0 0 5px rgba(255, 107, 107, 0.5) !important;
}

.error-message {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
  grid-column: 1 / span 2;
}

/* ===== NOTIFICATION STYLES ===== */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: 8px;
  color: white;
  z-index: 10000;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 350px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification.success {
  background: linear-gradient(135deg, #4caf50, #45a049);
  border-left: 4px solid #2e7d32;
}

.notification.error {
  background: linear-gradient(135deg, #f44336, #d32f2f);
  border-left: 4px solid #b71c1c;
}

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

.notification-content i {
  font-size: 1.2rem;
}

/* ===== MODAL STYLES ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  overflow: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.modal-content {
  background-color: var(--dark-bg);
  margin: auto;
  padding: 40px;
  border: 1px solid var(--gold);
  width: 90%;
  max-width: 500px;
  position: relative;
  border-radius: 12px;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.show .modal-content {
  transform: scale(1);
}

.close-modal {
  color: var(--gold);
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.close-modal:hover {
  color: var(--text-light);
}

.modal-icon {
  font-size: 60px;
  color: var(--gold);
  margin-bottom: 20px;
}

.modal h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--gold);
}

.reservation-details {
  background: rgba(20, 20, 20, 0.5);
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  text-align: left;
}

.reservation-details p {
  margin-bottom: 10px;
  display: flex;
}

.reservation-details strong {
  min-width: 120px;
  display: inline-block;
}

.modal-close-btn {
  margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .reservation-details p {
    flex-direction: column;
  }
  
  .reservation-details strong {
    min-width: auto;
    margin-bottom: 5px;
  }
  
  .notification {
    right: 10px;
    left: 10px;
    max-width: none;
  }
  
  .error-message {
    grid-column: 1;
  }
}

/* ===== FORM VALIDATION STYLES ===== */
.reservation input.error,
.reservation select.error,
.reservation textarea.error {
  border-color: #ff6b6b !important;
  box-shadow: 0 0 5px rgba(255, 107, 107, 0.5) !important;
}

.error-message {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
  grid-column: 1 / span 2; 
}

/* ===== NOTIFICATION STYLES ===== */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: 8px;
  color: white;
  z-index: 10000;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 350px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification.success {
  background: linear-gradient(135deg, #4caf50, #45a049);
  border-left: 4px solid #2e7d32;
}

.notification.error {
  background: linear-gradient(135deg, #f44336, #d32f2f);
  border-left: 4px solid #b71c1c;
}

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

.notification-content i {
  font-size: 1.2rem;
}

/* ===== MODAL STYLES ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  overflow: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.modal-content {
  background-color: var(--dark-bg);
  margin: auto;
  padding: 40px;
  border: 1px solid var(--gold);
  width: 90%;
  max-width: 500px;
  position: relative;
  border-radius: 12px;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.show .modal-content {
  transform: scale(1);
}

.close-modal {
  color: var(--gold);
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.close-modal:hover {
  color: var(--text-light);
}

.modal-icon {
  font-size: 60px;
  color: var(--gold);
  margin-bottom: 20px;
}

.modal h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--gold);
}

.reservation-details {
  background: rgba(20, 20, 20, 0.5);
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  text-align: left;
}

.reservation-details p {
  margin-bottom: 10px;
  display: flex;
}

.reservation-details strong {
  min-width: 120px;
  display: inline-block;
}

.modal-close-btn {
  margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .reservation-details p {
    flex-direction: column;
  }
  
  .reservation-details strong {
    min-width: auto;
    margin-bottom: 5px;
  }
  
  .notification {
    right: 10px;
    left: 10px;
    max-width: none;
  }
  
  .error-message {
    grid-column: 1; 
  }
}