/* ============================================
   UNIMO RESORT - White & Sand Theme
   ============================================ */

:root {
  --sand-light: #f5f0e8;
  --sand-medium: #e8dcc8;
  --sand-dark: #c9b896;
  --white-cream: #faf8f5;
  --warm-white: #fdfdf9;
  --text-dark: #2c2a25;
  --text-medium: #5a554a;
  --text-light: #8a8378;
  --accent-gold: #b8956e;
  --overlay-dark: rgba(44, 42, 37, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--sand-light);
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
}

/* ============================================
   NAVBAR - Glassmorphic
   ============================================ */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1200px;
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(200, 180, 150, 0.2);
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(139, 121, 94, 0.15);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: 0.15em;
}

.navbar-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.navbar-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-medium);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: color 0.3s ease;
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.navbar-links a:hover {
  color: var(--text-dark);
}

.navbar-links a:hover::after {
  width: 100%;
}

.reserve-btn {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #b8956e 0%, #8b7355 100%);
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(184, 149, 110, 0.3);
}

.reserve-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 149, 110, 0.4);
}

/* ============================================
   VIDEO CONTAINER
   ============================================ */
#container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: opacity 0.4s ease;
}

.scroll-track {
  position: relative;
  height: 12000px;
  pointer-events: none;
}

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

/* ============================================
   LOADING - 3D Animation (White & Sand Theme)
   ============================================ */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f0e8 0%, #e8dcc8 50%, #f5f0e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.loader-ring {
  position: relative;
  width: 200px;
  height: 200px;
  perspective: 800px;
}

.loader-ring-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  border: 3px solid transparent;
  border-top: 3px solid #b8956e;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(60deg);
  animation: spinRing 2s linear infinite;
  box-shadow: 0 0 30px rgba(184, 149, 110, 0.4);
}

.loader-ring-outer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 160px;
  border: 2px solid transparent;
  border-bottom: 2px solid rgba(184, 149, 110, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(60deg) rotateZ(180deg);
  animation: spinRingReverse 3s linear infinite;
  box-shadow: 0 0 20px rgba(184, 149, 110, 0.3);
}

@keyframes spinRing {
  0% { transform: translate(-50%, -50%) rotateX(60deg) rotateZ(0deg); }
  100% { transform: translate(-50%, -50%) rotateX(60deg) rotateZ(360deg); }
}

@keyframes spinRingReverse {
  0% { transform: translate(-50%, -50%) rotateX(60deg) rotateZ(180deg) rotateY(0deg); }
  100% { transform: translate(-50%, -50%) rotateX(60deg) rotateZ(180deg) rotateY(360deg); }
}

.loader-spheres {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
}

.sphere {
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at 30% 30%, #b8956e, #8b7355);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(184, 149, 110, 0.6);
}

.sphere-1 {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation: floatSphere1 2s ease-in-out infinite;
}

.sphere-2 {
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  animation: floatSphere2 2.5s ease-in-out infinite;
}

.sphere-3 {
  bottom: 10%;
  left: 30%;
  animation: floatSphere3 2.2s ease-in-out infinite;
}

@keyframes floatSphere1 {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  50% { transform: translateX(-50%) translateY(-15px) scale(1.1); }
}

@keyframes floatSphere2 {
  0%, 100% { transform: translateY(-50%) translateX(0) scale(1); }
  50% { transform: translateY(-50%) translateX(-10px) scale(1.1); }
}

@keyframes floatSphere3 {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); }
  50% { transform: translateY(-12px) translateX(8px) scale(1.05); }
}

.loader-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.loading-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #2c2a25;
  letter-spacing: 0.1em;
}

.loading-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: #5a554a;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.loading-progress {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.progress-bar {
  width: 250px;
  height: 4px;
  background: rgba(184, 149, 110, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #b8956e, #8b7355);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.progress-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: #5a554a;
  min-width: 40px;
}

.progress-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  min-width: 40px;
}

/* ============================================
   FRAME INDICATOR
   ============================================ */
#frameIndicator {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white-cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 3px;
  background: rgba(44, 42, 37, 0.6);
  padding: 10px 25px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  z-index: 100;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* ============================================
   WELCOME TEXT
   ============================================ */
#welcomeText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 50;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#welcomeText h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white-cream);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.scroll-btn {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white-cream);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 14px 35px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  letter-spacing: 0.15em;
}

.scroll-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ============================================
   OVERLAY - Vignette
   ============================================ */
#overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.35) 100%),
    rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

/* ============================================
   CONTENT SECTION
   ============================================ */
.content-section {
  min-height: 100vh;
  padding: 6rem 2rem 4rem;
  background: linear-gradient(180deg, #fdfcfb 0%, #f8f5ef 50%, #f0ebe0 100%);
  position: relative;
}

.content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, #fdfcfb 0%, transparent 100%);
  pointer-events: none;
}

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

.resort-title {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 500;
  color: #000;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
}

.resort-location {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #444;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
  padding: 2rem;
}

.about-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #2c2a25;
  margin-bottom: 1.5rem;
}

.about-section p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: #5a554a;
  line-height: 2;
}

/* ============================================
   SECTION TITLE
   ============================================ */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: #2c2a25;
  text-align: center;
  margin: 3rem 0 2rem;
  letter-spacing: 0.05em;
}

/* ============================================
   FACILITIES GRID
   ============================================ */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.facility-card {
  background: #fdfcfb;
  border: 1px solid rgba(200, 180, 150, 0.15);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.facility-card:hover {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(139, 121, 94, 0.12);
}

.facility-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.facility-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #2c2a25;
  margin-bottom: 0.8rem;
}

.facility-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: #5a554a;
  line-height: 1.8;
}

/* ============================================
   ROOMS GRID
   ============================================ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.room-card {
  background: #fdfcfb;
  border: 1px solid rgba(200, 180, 150, 0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.room-card:hover {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(139, 121, 94, 0.12);
}

.room-image {
  height: 140px;
  background: linear-gradient(135deg, #e8dcc8 0%, #d4c4a8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.room-info {
  padding: 1.5rem;
}

.room-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #2c2a25;
  margin-bottom: 0.5rem;
}

.room-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #b8956e;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.room-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: #5a554a;
  margin-bottom: 1rem;
}

.room-book {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, #b8956e 0%, #8b7355 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.room-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(184, 149, 110, 0.3);
}

/* ============================================
   DINE & EVENTS CARDS
   ============================================ */
.dine-card,
.events-card {
  text-align: center;
  margin-bottom: 2rem;
}

.dine-card h2,
.events-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #2c2a25;
  margin-bottom: 1rem;
}

.dine-card p,
.events-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: #5a554a;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.event-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.event-types span {
  background: rgba(184, 149, 110, 0.1);
  color: #5a554a;
  padding: 8px 16px;
  border-radius: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
}

/* ============================================
   STATS ROW - Infographic
   ============================================ */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--warm-white);
  padding: 1.5rem 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(200, 180, 150, 0.2);
  box-shadow: 0 4px 15px rgba(139, 121, 94, 0.1);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #000;
}

.stat-label {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ============================================
   CONTENT GRID
   ============================================ */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.content-card {
  background: #fdfcfb;
  border: 1px solid rgba(200, 180, 150, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 2px 20px rgba(139, 121, 94, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.content-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(139, 121, 94, 0.12);
  background: #fff;
}

.content-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 500;
  color: #2c2a25;
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.content-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: #5a554a;
  line-height: 1.9;
}

.content-card ul {
  list-style: none;
  padding: 0;
}

.content-card ul li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: #5a554a;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(200, 180, 150, 0.1);
}

.content-card ul li:last-child {
  border-bottom: none;
}

.content-card ul li::before {
  content: "✦";
  color: #000;
  margin-right: 0.7rem;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #000;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.feature-list li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--text-medium);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(200, 180, 150, 0.15);
}

.feature-list li::before {
  content: "✓";
  color: #000;
  margin-right: 0.7rem;
  font-weight: bold;
}

.amenities-list {
  list-style: none;
  padding: 0;
}

.amenities-list li {
  display: flex;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--text-medium);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(200, 180, 150, 0.15);
}

.amenity-icon {
  margin-right: 0.8rem;
  font-size: 1.2rem;
  color: #000;
  font-weight: 700;
}

.contact-icon {
  margin-right: 0.8rem;
  font-size: 1.1rem;
  color: #000;
  font-weight: 700;
}

.contact-info p {
  display: flex;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--text-medium);
  padding: 0.5rem 0;
}

.contact-icon {
  margin-right: 0.8rem;
  font-size: 1.1rem;
}

.cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 14px 35px;
  background: var(--accent-gold);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #a6855c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184, 149, 110, 0.3);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-section {
  margin-top: 4rem;
  text-align: center;
}

.testimonial-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--sand-light);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(200, 180, 150, 0.2);
}

.testimonial-card .quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.testimonial-card .author {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #000;
  font-weight: 600;
}

.testimonial-card .rating {
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #000;
}

/* ============================================
   SCROLL FADE ANIMATION
   ============================================ */
.scroll-fade {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.content-spacer {
  background: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .navbar {
    padding: 0.8rem 1.5rem;
  }
  
  .navbar-links {
    gap: 1.5rem;
  }
  
  .navbar-links a {
    font-size: 0.75rem;
  }
  
  #welcomeText h1 {
    font-size: 2.8rem;
  }
  
  .resort-title {
    font-size: 2.8rem;
  }
  
  .content-card {
    padding: 1.8rem;
  }
}

/* ============================================
   ADMIN PANEL
   ============================================ */
.admin-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.admin-toggle:hover {
  transform: rotate(45deg);
}

.admin-panel {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  height: 100vh;
  background: #fff;
  z-index: 3000;
  overflow-y: auto;
  transition: right 0.4s ease;
  box-shadow: -5px 0 30px rgba(0,0,0,0.2);
}

.admin-panel.open {
  right: 0;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: #000;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.admin-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.admin-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.admin-section {
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
}

.admin-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #000;
}

.admin-field {
  margin-bottom: 1rem;
}

.admin-field label {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.4rem;
}

.admin-field input[type="text"],
.admin-field textarea,
.admin-field input[type="file"] {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: #000;
  background: #fafafa;
  transition: border-color 0.3s ease;
}

.admin-field input[type="text"]:focus,
.admin-field textarea:focus {
  outline: none;
  border-color: #000;
  background: #fff;
}

.admin-field textarea {
  resize: vertical;
  min-height: 80px;
}

.logo-preview {
  margin-top: 0.5rem;
  max-width: 100%;
  height: 60px;
  border-radius: 8px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-preview img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.logo-preview span {
  color: #999;
  font-size: 0.8rem;
}

.admin-actions {
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #eee;
}

.admin-save,
.admin-reset {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.admin-save {
  background: #000;
  color: #fff;
}

.admin-save:hover {
  background: #333;
}

.admin-reset {
  background: #f5f5f5;
  color: #666;
  border: 1px solid #ddd;
}

.admin-reset:hover {
  background: #eee;
}

@media (max-width: 768px) {
  .admin-panel {
    width: 100%;
    right: -100%;
  }
}