/* ============================================
   SRI ADITYA UTSAV — Premium Banquet Hall
   Stylesheet v1.0
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --maroon-dark: #1A0505;
  --maroon: #3E0B0B;
  --maroon-light: #5C1515;
  --gold: #C5A355;
  --gold-light: #E8D5A3;
  --gold-dark: #A38A3F;
  --cream: #FFF8EC;
  --white: #FFFFFF;
  --charcoal: #1A1A1A;
  --gray: #888888;
  --gray-light: #F5F5F5;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-gold: 0 5px 30px rgba(197, 163, 85, 0.3);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

/* ============================================
   1. RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
}

/* ============================================
   2. UTILITY CLASSES
   ============================================ */

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section --- */
.section {
  padding: 100px 0;
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.section-title {
  font-size: 44px;
  color: var(--charcoal);
  font-weight: 700;
  margin-bottom: 20px;
}

/* Dark section override */
.section-dark .section-title,
#why-choose .section-title {
  color: var(--cream);
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Dark section override */
.section-dark .section-subtitle,
#why-choose .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.ornament {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 20px auto;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-dark);
  border-color: var(--gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--maroon-dark);
}

/* ============================================
   3. NAVBAR
   ============================================ */
#navbar,
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(26, 5, 5, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo img {
  height: 60px;
  transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
  height: 45px;
}

.nav-links {
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav-link {
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

.nav-link:hover {
  color: var(--gold-light);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  z-index: 1001;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--cream);
  transition: var(--transition);
  transform-origin: center;
}

/* Hamburger to X Animation */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu slide-down animation */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(26, 5, 5, 0.98);
  padding: 0;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              opacity 0.3s ease, 
              visibility 0.3s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--gold);
}

.mobile-menu.active {
  max-height: 400px;
  padding: 10px 0;
  opacity: 1;
  visibility: visible;
}

.mobile-link {
  color: var(--cream);
  padding: 15px 24px;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(197, 163, 85, 0.1);
  transition: var(--transition);
}

.mobile-link:last-child {
  border-bottom: none;
}

.mobile-link:hover {
  color: var(--gold);
  background: rgba(197, 163, 85, 0.05);
}

/* ============================================
   4. HERO
   ============================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 5, 5, 0.7) 0%,
    rgba(62, 11, 11, 0.6) 50%,
    rgba(26, 5, 5, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-tag {
  font-size: 14px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  font-weight: 500;
  font-family: var(--font-body);
}

.hero-title {
  font-size: clamp(36px, 6vw, 68px);
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  z-index: 2;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gold-light);
  border-bottom: 2px solid var(--gold-light);
  transform: rotate(45deg);
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% {
    transform: rotate(45deg) translateY(0);
  }
  40% {
    transform: rotate(45deg) translateY(8px);
  }
  60% {
    transform: rotate(45deg) translateY(4px);
  }
}

/* ============================================
   5. ABOUT
   ============================================ */
#about {
  background: var(--white);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  font-size: 17px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.about-feature {
  text-align: center;
  padding: 30px 20px;
}

.about-feature-icon {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 15px;
}

.about-feature h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.about-feature p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================
   6. BANQUET HALLS
   ============================================ */
.halls-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.hall-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.hall-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.hall-media {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.hall-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.hall-card:hover .hall-media video {
  transform: scale(1.05);
}

.hall-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--maroon-dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

.hall-info {
  padding: 35px;
}

.hall-info h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  margin-bottom: 15px;
  color: var(--maroon);
}

.hall-info p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.hall-details {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

.detail-item i {
  color: var(--gold);
  font-size: 18px;
}

/* ============================================
   6b. CATERING SERVICES
   ============================================ */
#catering {
  background: var(--gray-light);
}

.catering-text {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.cuisines-slider-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 15px;
}

.cuisines-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 10px 0;
  scrollbar-width: none; /* Hide scrollbar Firefox */
}

.cuisines-track::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

.cuisine-slide {
  flex: 0 0 calc(25% - 15px); /* 4 items on desktop */
  scroll-snap-align: start;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.cuisine-slide:hover {
  transform: translateY(-5px);
}

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

.cuisine-slide:hover img {
  transform: scale(1.08);
}

.cuisine-info-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 5, 5, 0.9) 0%, rgba(26, 5, 5, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--white);
}

.cuisine-info-overlay h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.cuisine-info-overlay p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.cuisine-arrow {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid #e0e0e0;
  color: var(--maroon);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  flex-shrink: 0;
  z-index: 10;
  border: none;
}

.cuisine-arrow:hover {
  background: var(--gold);
  color: var(--maroon-dark);
  border-color: var(--gold);
}

/* ============================================
   6c. LUXURY ROOMS
   ============================================ */
#rooms {
  background: var(--white);
}

.rooms-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.rooms-video-col {
  width: 100%;
}

.rooms-slider-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 420px;
  background: var(--maroon-dark);
}

.rooms-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.room-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.room-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.room-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(26, 5, 5, 0.7);
  border: 1px solid rgba(197, 163, 85, 0.3);
  color: var(--gold);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
  border: none;
}

.room-arrow:hover {
  background: var(--gold);
  color: var(--maroon-dark);
  border-color: var(--gold);
}

.room-arrow.prev {
  left: 15px;
}

.room-arrow.next {
  right: 15px;
}

.room-dots {
  position: absolute;
  bottom: 15px;
  right: 25px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

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

.room-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

.rooms-video-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(26, 5, 5, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(197, 163, 85, 0.3);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rooms-details-col h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--maroon);
  margin-bottom: 20px;
}

.rooms-details-col > p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 30px;
}

.rooms-amenities-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  padding: 0;
}

.rooms-amenities-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.rooms-amenities-list li > i {
  font-size: 20px;
  color: var(--gold);
  margin-top: 4px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(197, 163, 85, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rooms-amenities-list li strong {
  display: block;
  font-size: 15px;
  color: var(--charcoal);
  margin-bottom: 4px;
  font-weight: 600;
}

.rooms-amenities-list li p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   7. EVENTS
   ============================================ */
#events {
  background: var(--white);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.events-column {
  padding: 30px;
  border-radius: 12px;
  background: var(--gray-light);
}

.events-column-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--gold);
}

.events-column-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon-dark);
  font-size: 16px;
  flex-shrink: 0;
}

.events-column-title {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--maroon);
}

.event-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #555;
  padding: 8px 0;
}

.event-icon {
  color: var(--gold);
  font-size: 14px;
  min-width: 20px;
  text-align: center;
}

/* ============================================
   8. WHY CHOOSE US / STATS
   ============================================ */
#why-choose {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.stat-item {
  text-align: center;
  padding: 30px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 52px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 163, 85, 0.2);
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.feature-card:hover {
  background: rgba(197, 163, 85, 0.1);
  border-color: var(--gold);
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(197, 163, 85, 0.2), rgba(197, 163, 85, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--gold);
}

.feature-card h3 {
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 10px;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================
   8b. POLICIES & INCLUSIONS
   ============================================ */
#policies {
  background: var(--white);
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.policies-col {
  background: var(--gray-light);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  transition: var(--transition);
}

.policies-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.policies-col h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--maroon);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.policies-col h3 i {
  color: var(--gold);
  font-size: 20px;
}

.policy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.policy-list li > i {
  font-size: 18px;
  color: var(--gold);
  margin-top: 3px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.policy-list li strong {
  display: block;
  font-size: 15px;
  color: var(--charcoal);
  margin-bottom: 4px;
  font-weight: 600;
}

.policy-list li p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   9. TESTIMONIALS
   ============================================ */
#testimonials {
  background: var(--cream);
}

.testimonial-slider {
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-item {
  min-width: 100%;
  padding: 40px;
}

.testimonial-quote-icon {
  font-size: 60px;
  color: var(--gold);
  opacity: 0.5;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 20px;
  text-align: center;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  font-style: italic;
  text-align: center;
  margin-bottom: 30px;
  font-family: var(--font-heading);
}

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

.author-name {
  font-weight: 600;
  color: var(--maroon);
  font-size: 16px;
}

.author-event {
  font-size: 13px;
  color: var(--gray);
  margin-top: 4px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-light);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.slider-dot:hover {
  background: var(--gold);
}

/* ============================================
   10. CONTACT
   ============================================ */
#contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-form-wrapper {
  background: var(--gray-light);
  padding: 40px;
  border-radius: 12px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  transition: var(--transition);
  background: var(--white);
  color: var(--charcoal);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(197, 163, 85, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

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

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

/* Contact Info */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 25px;
  background: var(--gray-light);
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow);
}

.info-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon-dark);
  font-size: 18px;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--charcoal);
}

.info-text p,
.info-text a {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}

.info-text a:hover {
  color: var(--gold);
}

/* Map */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 10px;
  height: 250px;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   11. FOOTER
   ============================================ */
#footer {
  background: var(--maroon-dark);
  color: rgba(255, 255, 255, 0.7);
}

.footer-main {
  padding: 80px 0 40px;
}

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

.footer-col h3 {
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.footer-about p {
  line-height: 1.8;
  margin-top: 15px;
}

.footer-logo {
  height: 70px;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(197, 163, 85, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 16px;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--gold);
  color: var(--maroon-dark);
  border-color: var(--gold);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--maroon-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  border: none;
  box-shadow: var(--shadow-gold);
}

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

.back-to-top:hover {
  transform: translateY(-3px);
}

/* ============================================
   12. SCROLL REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   13. RESPONSIVE DESIGN
   ============================================ */

/* ---------- Tablet (≤ 1024px) ---------- */
@media (max-width: 1024px) {
  .halls-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cuisine-slide {
    flex: 0 0 calc(50% - 10px);
  }

  .rooms-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .rooms-slider-wrapper {
    height: 320px;
  }

  .policies-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 36px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

/* ---------- Mobile (≤ 768px) ---------- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .halls-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 32px;
  }

  .stat-number {
    font-size: 40px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-item {
    padding: 20px;
  }

  .testimonial-text {
    font-size: 16px;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .footer-main {
    padding: 50px 0 30px;
  }

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

/* ---------- Small Mobile (≤ 480px) ---------- */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section-title {
    font-size: 26px;
  }

  .btn {
    padding: 12px 28px;
    font-size: 13px;
  }

  .cuisine-slide {
    flex: 0 0 100%;
  }

  .hall-media {
    height: 220px;
  }

  .hall-info {
    padding: 20px;
  }

  .hall-info h3 {
    font-size: 20px;
  }

  .stat-number {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .scroll-indicator {
    display: none;
  }
}

/* ============================================
   14. BLOG & ADMIN PAGES
   ============================================ */

/* --- Blog Hero / Banner --- */
.blog-hero {
  padding: 180px 0 80px;
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(197, 163, 85, 0.2);
}
.blog-hero .ornament {
  margin: 15px auto 0;
}
.blog-hero .section-title {
  color: var(--gold-light);
}
.blog-hero .section-subtitle {
  color: var(--cream);
  opacity: 0.8;
}

/* --- Category Filters --- */
.blog-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 22px;
  border: 1px solid rgba(197, 163, 85, 0.3);
  background: transparent;
  color: var(--charcoal);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.blog-filters.dark-theme .filter-btn {
  color: var(--cream);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--maroon-dark);
  box-shadow: var(--shadow-gold);
}

/* --- Blog Grid & Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
.blog-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(197, 163, 85, 0.3);
}
.blog-card-media {
  position: relative;
  height: 230px;
  overflow: hidden;
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-card:hover .blog-card-media img {
  transform: scale(1.08);
}
.blog-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--maroon);
  color: var(--gold-light);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  border: 1px solid var(--gold-dark);
}
.blog-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-card-meta {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.blog-card-meta i {
  color: var(--gold-dark);
}
.blog-card-title {
  font-size: 22px;
  color: var(--maroon-dark);
  margin-bottom: 15px;
  font-weight: 700;
  transition: var(--transition);
}
.blog-card:hover .blog-card-title {
  color: var(--gold);
}
.blog-card-excerpt {
  color: #555555;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}
.blog-card-link {
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: var(--transition);
}
.blog-card-link i {
  transition: transform 0.3s ease;
}
.blog-card:hover .blog-card-link {
  color: var(--maroon);
}
.blog-card:hover .blog-card-link i {
  transform: translateX(5px);
}

/* --- Article Detail Modal --- */
.blog-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background: rgba(26, 5, 5, 0.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 20px;
}
.blog-modal.active {
  display: flex;
  opacity: 1;
}
.blog-modal-content {
  background: var(--white);
  width: 100%;
  max-width: 850px;
  max-height: 90vh;
  border-radius: 12px;
  overflow-y: auto;
  border: 1px solid rgba(197, 163, 85, 0.3);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.blog-modal.active .blog-modal-content {
  transform: scale(1);
}
.blog-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(26, 5, 5, 0.8);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}
.blog-modal-close:hover {
  background: var(--gold);
  color: var(--maroon-dark);
  transform: rotate(90deg);
}
.blog-modal-header {
  position: relative;
  height: 350px;
}
.blog-modal-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-modal-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(26, 5, 5, 0.9));
}
.blog-modal-header-text {
  position: absolute;
  bottom: 30px;
  left: 40px;
  right: 40px;
  color: var(--white);
}
.blog-modal-badge {
  background: var(--gold);
  color: var(--maroon-dark);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
}
.blog-modal-title {
  font-size: 32px;
  color: var(--cream);
  line-height: 1.3;
}
.blog-modal-body {
  padding: 40px;
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.8;
}
.blog-modal-body p {
  margin-bottom: 20px;
}
.blog-modal-meta {
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 30px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  color: var(--gray);
  font-size: 14px;
}

@media (max-width: 600px) {
  .blog-modal-header {
    height: 220px;
  }
  .blog-modal-header-text {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .blog-modal-title {
    font-size: 22px;
  }
  .blog-modal-body {
    padding: 25px 20px;
  }
}

/* --- Admin Styles (Glassmorphism & Email Client) --- */
.admin-container {
  padding: 140px 0 60px;
  min-height: calc(100vh - 100px);
  background: radial-gradient(circle at center, var(--maroon), var(--maroon-dark));
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Glassmorphic Login Card */
.login-card {
  width: 100%;
  max-width: 450px;
  background: rgba(26, 5, 5, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(197, 163, 85, 0.25);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  text-align: center;
  color: var(--cream);
}
.login-logo {
  height: 70px;
  margin: 0 auto 25px;
}
.login-card h2 {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--gold-light);
}
.login-card p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 30px;
}
.login-hint {
  background: rgba(197, 163, 85, 0.1);
  border: 1px dashed rgba(197, 163, 85, 0.3);
  padding: 12px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--gold-light);
  margin-bottom: 25px;
  text-align: left;
  line-height: 1.5;
}
.login-hint code {
  color: var(--white);
  background: rgba(0,0,0,0.3);
  padding: 2px 6px;
  border-radius: 3px;
  font-family: monospace;
}
.admin-input-group {
  margin-bottom: 20px;
  text-align: left;
}
.admin-input-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}
.admin-input-group input,
.admin-input-group select,
.admin-input-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 163, 85, 0.2);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition);
}
.admin-input-group input:focus,
.admin-input-group select:focus,
.admin-input-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(197, 163, 85, 0.2);
}

/* Email-Style Dashboard Layout */
.dashboard-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(26, 5, 5, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(197, 163, 85, 0.25);
  border-radius: 12px;
  display: flex;
  min-height: 680px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  color: var(--cream);
}

@media (max-width: 900px) {
  .dashboard-wrapper {
    flex-direction: column;
    margin: 20px;
  }
}

/* Sidebar folders */
.dashboard-sidebar {
  width: 250px;
  background: rgba(15, 2, 2, 0.5);
  border-right: 1px solid rgba(197, 163, 85, 0.15);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .dashboard-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(197, 163, 85, 0.15);
    padding: 20px;
  }
}
.sidebar-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(197, 163, 85, 0.1);
  margin-bottom: 25px;
}
.user-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--maroon-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  border: 1.5px solid var(--gold-light);
}
.user-details h4 {
  font-size: 15px;
  color: var(--white);
}
.user-details p {
  font-size: 11px;
  color: var(--gray);
}
.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}
@media (max-width: 900px) {
  .sidebar-menu {
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
}
.menu-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
}
@media (max-width: 900px) {
  .menu-item {
    width: auto;
  }
}
.menu-item:hover,
.menu-item.active {
  background: rgba(197, 163, 85, 0.15);
  color: var(--gold-light);
  border-left: 3px solid var(--gold);
}
.menu-item i {
  font-size: 16px;
}
.btn-logout {
  margin-top: auto;
  color: #ff5e5e;
  border-radius: 6px;
  background: rgba(255, 94, 94, 0.05);
  border: 1px solid rgba(255, 94, 94, 0.15);
  text-align: center;
  justify-content: center;
}
.btn-logout:hover {
  background: rgba(255, 94, 94, 0.15);
  color: #ff8888;
}

/* Dashboard main area */
.dashboard-main {
  flex-grow: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  .dashboard-main {
    padding: 20px;
  }
}
.dashboard-section {
  display: none;
  flex-direction: column;
  height: 100%;
}
.dashboard-section.active {
  display: flex;
}
.section-header-admin {
  border-bottom: 1px solid rgba(197, 163, 85, 0.15);
  padding-bottom: 15px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-header-admin h2 {
  font-size: 26px;
  color: var(--gold-light);
}

/* Email style composer form */
.email-composer {
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(197, 163, 85, 0.15);
  border-radius: 8px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.email-header-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 15px;
}
.email-field {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.email-field-label {
  width: 80px;
  color: var(--gold-light);
  font-weight: 600;
}
.email-field-value {
  flex-grow: 1;
  color: var(--white);
  opacity: 0.8;
}
.email-field input,
.email-field select {
  flex-grow: 1;
  background: transparent !important;
  border: none !important;
  padding: 4px 0 !important;
  color: var(--white) !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.email-field input::placeholder {
  color: rgba(255,255,255,0.3);
}
.email-body-editor {
  flex-grow: 1;
}
.email-body-editor textarea {
  min-height: 250px;
  resize: vertical;
}

/* Image Preset Visual Picker */
.image-preset-picker {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
  margin-top: 8px;
}
.preset-option {
  position: relative;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.preset-option img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.preset-option:hover {
  transform: translateY(-2px);
}
.preset-option.selected {
  border-color: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}
.preset-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  font-size: 9px;
  text-align: center;
  padding: 2px 0;
}

/* Composer footer controls */
.email-composer-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.composer-actions {
  display: flex;
  gap: 12px;
}

/* Sending Animation Overlay */
.sending-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 5, 5, 0.9);
  z-index: 3000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}
.sending-overlay.active {
  display: flex;
}
.paper-plane-container {
  font-size: 60px;
  margin-bottom: 25px;
  position: relative;
  color: var(--gold);
  animation: float 2s ease-in-out infinite;
}
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(-5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}
.sending-airplane-fly {
  animation: flyaway 1.5s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards;
}
@keyframes flyaway {
  0% { transform: scale(1) translate(0, 0); opacity: 1; }
  30% { transform: scale(0.9) translate(-10px, 10px); opacity: 0.9; }
  100% { transform: scale(0.2) translate(800px, -800px); opacity: 0; }
}
.sending-bar {
  width: 250px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 15px;
}
.sending-progress {
  width: 0%;
  height: 100%;
  background: var(--gold);
  transition: width 0.1s linear;
}

/* Sent mail folder (posts list) */
.sent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sent-post-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 163, 85, 0.1);
  border-radius: 6px;
  transition: var(--transition);
}
.sent-post-row:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(197, 163, 85, 0.25);
}
.sent-post-info {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-grow: 1;
}
.sent-post-thumbnail {
  width: 50px;
  height: 38px;
  border-radius: 3px;
  object-fit: cover;
  border: 1px solid rgba(197, 163, 85, 0.2);
}
.sent-post-title-col {
  display: flex;
  flex-direction: column;
}
.sent-post-row-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}
.sent-post-row-meta {
  font-size: 12px;
  color: var(--gray);
}
.sent-post-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-delete-post {
  background: transparent;
  border: none;
  color: #ff6c6c;
  cursor: pointer;
  font-size: 16px;
  padding: 6px;
  border-radius: 4px;
  transition: var(--transition);
}
.btn-delete-post:hover {
  background: rgba(255, 108, 108, 0.15);
  color: #ff8e8e;
}
.sent-posts-empty {
  text-align: center;
  padding: 40px;
  color: var(--gray);
  font-style: italic;
}

