/* ===================================
   iOS-INSPIRED PORTFOLIO DESIGN
   "Midnight Mesh" Aesthetic
   ==================================== */

/* CSS Variables - Dark Mode (Default) */
:root {
  /* Primary Colors */
  --color-midnight: #050505; /* Used as main background */
  --color-white: #ffffff;    /* Used as main text */
  --bg-base: #050505;
  --color-gray-subtle: #1a1a1a;

  /* iOS Brand Colors (Dark Mode Variants) */
  --color-ios-blue: #0A84FF; 
  --color-ios-accent: #FF453A; 

  /* Gradients */
  --gradient-1: rgba(10, 132, 255, 0.25);
  --gradient-2: rgba(94, 92, 230, 0.2);
  --gradient-3: rgba(255, 69, 58, 0.15);

  /* Glassmorphism - Dark Mode */
  --glass-bg: rgba(25, 25, 25, 0.6);
  --glass-bg-light: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);

  /* iOS Squircles & Layout (Static across themes) */
  --radius-ios: 32px;
  --radius-pill: 500px;
  --radius-sm: 14px;
  
  /* Shadows - Dark Mode */
  --shadow-ios: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  
  /* Easing & Typography (Static across themes) */
  --transition: all 0.4s cubic-bezier(0.15, 0, 0.15, 1);
  --transition-short: all 0.2s cubic-bezier(0.15, 0, 0.15, 1);
  --font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* ===================================
   Light Mode Theme Overrides
   ==================================== */

[data-theme="light"],
.light-mode {
  /* Primary Colors (Flipped for Light Mode) */
  --color-midnight: #f5f5f7; /* Now acts as light background */
  --color-white: #1d1d1f;    /* Now acts as dark text */
  --bg-base: #f5f5f7;
  --color-gray-subtle: #e8e8ed;

  /* iOS Brand Colors (Light Mode Variants) */
  --color-ios-blue: #007AFF;
  --color-ios-accent: #FF3B30;

  /* Gradients */
  --gradient-1: rgba(0, 122, 255, 0.15);
  --gradient-2: rgba(255, 45, 85, 0.12);
  --gradient-3: rgba(52, 199, 89, 0.1);

  /* Glassmorphism - Light Mode */
  --glass-bg: rgba(255, 255, 255, 0.85); /* Frosty white glass */
  --glass-bg-light: rgba(0, 0, 0, 0.03); /* Subtle dark fill for contrast */
  --glass-border: rgba(0, 0, 0, 0.12);

  /* Shadows - Light Mode */
  --shadow-ios: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ====== RESET ====== */
html,
body {
  margin:0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;

}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg-base);
  color: var(--color-white);
  position: relative;
  overflow-x: hidden;
}

/* Light Mode Body */
[data-theme="light"] body,
.light-mode {
  background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 25%, #f5f5f7 50%, #ffffff 75%, #f5f5f7 100%);
  color: var(--color-white);
}
body {
  background-color: #050505; /* This prevents the white screen if the gradient fails */
  background-image: linear-gradient(135deg, #050505 0%, #0a0a1a 25%, #0f0a1f 50%, #0a0a1a 75%, #050505 100%);
  background-size: 200% 200%;
  /* Rest of your code... */
}
@media (pointer: coarse) {
  body {
    /* iOS struggles with fixed backgrounds; 'scroll' is safer for mobile */
    background-attachment: scroll !important;
    background-color: #050505; /* Force a dark fallback */
  }
}

.feedback-wrapper {
  background-color: #050505; /* This prevents the white screen if the gradient fails */
  background-image: linear-gradient(135deg, #050505 0%, #0a0a1a 25%, #0f0a1f 50%, #0a0a1a 75%, #050505 100%);
  background-size: 200% 200%;
  /* Rest of your code... */
}
@media (pointer: coarse) {
.feedback-wrapper {
    /* iOS struggles with fixed backgrounds; 'scroll' is safer for mobile */
    background-attachment: scroll !important;
    background-color: #050505; /* Force a dark fallback */
  }
}
body::before,
body::after {
  content: "";
  position: fixed;
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  z-index: -1;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.8;
  transition: all 0.5s ease;
}
body::before {
  background: radial-gradient(circle at 30% 30%, var(--gradient-1), transparent 60%),
              radial-gradient(circle at 70% 60%, var(--gradient-2), transparent 60%);
  
  animation: floatGradient1 18s ease-in-out infinite alternate;
}
body::after {
  background: radial-gradient(circle at 60% 20%, var(--gradient-3), transparent 60%),
              radial-gradient(circle at 20% 80%, var(--gradient-1), transparent 60%);
  
  animation: floatGradient2 22s ease-in-out infinite alternate;
}
@keyframes floatGradient1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(5%, -5%) scale(1.1);
  }
  100% {
    transform: translate(-5%, 5%) scale(1);
  }
}

@keyframes floatGradient2 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-6%, 6%) scale(1.15);
  }
  100% {
    transform: translate(6%, -6%) scale(1);
  }
}

/* Light Mode Body::before */
[data-theme="light"] body::before,
.light-mode body::before {
  background: radial-gradient(ellipse at 80% 10%, rgba(0, 122, 255, 0.05) 0%, transparent 50%),
              radial-gradient(ellipse at 20% 90%, rgba(255, 59, 48, 0.03) 0%, transparent 50%),
              radial-gradient(ellipse at 40% 50%, rgba(0, 122, 255, 0.02) 0%, transparent 40%);
}

/* ====== TYPOGRAPHY ====== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 10vw, 5.5rem);
}

[data-theme="light"] h1,
.light-mode h1 {
  color: #1d1d1f;
}

h1 {
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  opacity: 0.95;
}

h3 {
  font-size: 1.5rem;
  opacity: 0.9;
}

p {
  font-size: 1rem;
  color: var(--color-white);
  opacity: 0.85;
  line-height: 1.6;
}

[data-theme="light"] p,
.light-mode p {
  color: #1d1d1f;
  opacity: 0.8;
}

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

/* ====== UTILITY CLASSES ====== */
.hidden {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* ====== NAVIGATION (Dynamic Island Style) ====== */
nav {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  z-index: 999;
  padding: 0.8rem 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-ios);
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  padding: 0.5rem 1rem;
  list-style: none;
  border: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Hide hamburger on desktop */
.mobile-menu-toggle {
  background: none;
  border: none !important;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  display: none; /* hidden by default */
}

/* Show hamburger only on small screens */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex; /* or inline-flex */
  }
}

.mobile-menu-toggle i {
  display: block;
}

/* Mode Toggle Styles */
.mode-toggle {
  position: relative;
  width: 50px;
  height: 24px;
  background: var(--color-midnight);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
}

.mode-toggle-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-midnight) 0%, #1a1a1a 100%);
  border-radius: 12px;
  transition: var(--transition);
}

.mode-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: var(--color-white);
  border-radius: 50%;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mode-toggle-thumb i {
  font-size: 10px;
  color: var(--color-midnight);
  transition: var(--transition);
  position: absolute;
}

.mode-icon-dark {
  opacity: 1;
  transform: scale(1);
}

.mode-icon-light {
  opacity: 0;
  transform: scale(0);
}

.mode-toggle.light .mode-icon-dark {
  opacity: 0;
  transform: scale(0);
}

.mode-toggle.light .mode-icon-light {
  opacity: 1;
  transform: scale(1);
}

.mode-toggle.light .mode-toggle-thumb {
  transform: translateX(26px);
  background: var(--color-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mode-toggle.light .mode-toggle-thumb i {
  color: var(--color-midnight);
}

.mode-toggle.light .mode-toggle-track {
  background: linear-gradient(135deg, #e5e5e7 0%, #d5d5d7 100%);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.mode-toggle.light {
  border-color: rgba(0, 0, 0, 0.2);
}

.mode-toggle:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.floating-mode-toggle {
  display: none;
}

.nav-mode-toggle {
  display: block;
}

/* Hero Section Container */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  overflow: hidden;
  background: #050505; /* Fallback for --color-midnight */
}

/* Background Glow Effect - Pulsing */
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(0, 122, 255, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
  pointer-events: none;
  /* Fixed transform here to ensure it stays centered while scaling */
  animation: glowBreathe 8s ease-in-out infinite alternate;
}

/* Staggered Text Animations */
.hero-badge, .hero-title, .hero-subtitle, .hero-btns {
  opacity: 0;
  animation: slideUpFade 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-badge { 
  animation-delay: 0.2s; 
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 500px;
  color: #007aff;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-title { 
  animation-delay: 0.4s;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
}

.hero-title span {
  /* This creates the moving shine on the text */
  background: linear-gradient(to bottom, #fff 20%, rgba(255,255,255,0.2) 50%, #fff 80%);
  background-size: 100% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShine 6s linear infinite;
}

.hero-subtitle { 
  animation-delay: 0.6s; 
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.hero-btns { 
  animation-delay: 0.8s;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* --- Keyframes --- */

@keyframes slideUpFade {
  from { 
    opacity: 0; 
    transform: translateY(40px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

@keyframes textShine {
  from { background-position: 0% 200%; }
  to { background-position: 0% 0%; }
}

@keyframes glowBreathe {
  from { 
    transform: translate(-50%, -50%) scale(0.8); 
    opacity: 0.4; 
  }
  to { 
    transform: translate(-50%, -50%) scale(1.2); 
    opacity: 0.8; 
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { 
    opacity: 0; 
    transform: translateY(20px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

/* ====== CONTAINER ====== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 2rem;
}

/* ====== GALLERY ====== */
.gallery {
  padding-top: 8rem;
}

.gallery-title {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeIn 0.8s ease-out forwards;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin-bottom: 4rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  animation: fadeInUp 0.6s cubic-bezier(0.15, 0, 0.15, 1) forwards;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

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

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.gallery-item-overlay-text {
  font-size: 1.2rem;
  font-weight: 600;
  opacity: 0;
  transform: scale(0.9);
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay-text {
  opacity: 1;
  transform: scale(1);
}

.gallery-item.see-more-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.25);
}

.see-more-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  color: #fff;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
}

.see-more-content span {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.see-more-content i {
  font-size: 1.5rem;
}

/* ====== MODAL / LIGHTBOX ====== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.98);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
  backdrop-filter: blur(10px);
}

.modal.active {
  display: flex;
}

.modal-image-container {
  position: relative;
  width: 90vw;
  height: 90vh;
  max-width: 1000px;
  max-height: 800px;
}

/* ====== FOOTER ====== */
.professional-footer {
  background: var(--color-midnight);
  color: var(--color-white);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-section h4 {
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section p {
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--color-white);
  opacity: 0.7;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section ul li a:hover {
  opacity: 1;
  color: var(--color-ios-blue);
}

.footer-section ul li i {
  width: 16px;
  text-align: center;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.6;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--color-white);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--color-ios-blue);
}
@media (max-width: 768px) {
  .nav-mode-toggle {
    order: 2;             /* keeps flex order correct */
    margin-left: auto;     /* pushes it to the right */
    margin-right: 0.3rem;    /* 1rem space from the edge */
  }
}
/* Footer Responsive */
@media (max-width: 768px) {
  .nav-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  
  .logo {
    order: 1;
    flex: 1;
  }

  
  .mobile-menu-toggle {
    order: 3;
    display: flex;
  }
  

  .professional-footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }
  
  .footer-bottom {
    font-size: 0.8rem;
  }
}
/* =========================
   NAV LINKS (DESKTOP)
========================= */

/* Links */
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.6;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

/* Hover */
.nav-links a:hover {
  opacity: 1;
  color: var(--color-ios-blue);
}

/* Active */
.nav-links a.active {
  opacity: 1;
  color: var(--color-ios-blue);
  border-bottom: 2px solid var(--color-ios-blue);
}

/* =========================
   LIGHT MODE FIX
========================= */
[data-theme="light"] .nav-links a:hover,
[data-theme="light"] .nav-links a.active {
  color: var(--color-ios-blue);
}

/* =========================
   MOBILE NAV
========================= */

@media (max-width: 768px) {

  .nav-links {
    display: none;
    flex-direction: column;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    position: fixed;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    top: 3.5rem;
    left: 50%;
    border-bottom-left-radius: 20px;   
    border-bottom-right-radius: 20px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 0.75rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.05);
  }
}

/* =========================
   LIGHT MODE (MOBILE)
========================= */

@media (max-width: 768px) {

  [data-theme="light"] .nav-links {
    background: white;
    border: 1px solid var(--glass-border);
  }

  [data-theme="light"] .nav-links a {
    color: var(--color-white); /* ✅ FIXED */
    border-bottom: 1px solid var(--glass-border);
  }

  [data-theme="light"] .nav-links a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--color-ios-blue);
  }
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #050505; /* Matches your body background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Higher than navbar and everything else */
  transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

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

.loader-logo {
  font-size: 1.2rem;
  letter-spacing: 5px;
  color: white;
  margin-bottom: 20px;
  font-weight: 300;
  animation: pulse 2s infinite ease-in-out;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-progress {
  width: 0%;
  height: 100%;
  background: #007aff; /* Your accent blue */
  animation: load-progress 3s forwards cubic-bezier(0, 0.5, 0.5, 1);
}

/* Animations */
@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes load-progress {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* Class to hide the loader */
.loader-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
}

/* ====== NOTIFICATION STYLES ====== */
.notification-container {
  position: fixed;
  top: 100px;
  right: 1.5rem;
  z-index: 9999;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.notification-container > div {
  padding: 1rem 1.25rem;
  border-radius: 14px;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.4;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  animation: slideInNotification 0.3s cubic-bezier(0.15, 0, 0.15, 1) forwards;
}

@keyframes slideInNotification {
  from {
    opacity: 0;
    transform: translateX(400px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Success notification (blue) */
.notification-success {
  background: linear-gradient(135deg, rgba(10, 132, 255, 0.95), rgba(0, 122, 255, 0.85)) !important;
}

/* Error notification (red) */
.notification-error {
  background: linear-gradient(135deg, rgba(255, 69, 58, 0.95), rgba(255, 45, 85, 0.85)) !important;
}

[data-theme="light"] .notification-container > div,
.light-mode .notification-container > div {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .notification-container {
    top: 80px;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
}