/* ============================================
   Barbershop Twello | Modern Gold & Black Theme
   ============================================ */

:root {
  --gold: #d4af37;
  --gold-dark: #b4942c;
  --gold-light: #f3d572;
  --black: #000000;
  --black-light: #0a0a0a;
  --gray-dark: #111111;
  --gray-border: #1f1f1f;
  --text-light: #e5e5e5;
  --text-muted: #9ca3af;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--black);
  color: var(--text-light);
  scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gold-text {
  color: var(--gold);
}

.gold-bg {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  transition: all 0.3s ease;
}

.gold-bg:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
}

.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* Navigation - Glassmorphism */
.nav-modern {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  transition: all 0.3s ease;
}

.nav-link {
  position: relative;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--gold);
}

.active-nav {
  color: var(--gold) !important;
}

.active-nav::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Cards */
.card-dark {
  background: var(--gray-dark);
  border: 1px solid var(--gray-border);
  border-radius: 1.5rem;
  transition: all 0.35s cubic-bezier(0.2, 0, 0, 1);
  overflow: hidden;
}

.card-dark:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 25px 35px -12px rgba(0, 0, 0, 0.8);
}

/* Hero Overlay */
.hero-overlay {
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.4) 100%);
}

/* Form Elements */
input, textarea, select {
  background-color: #121212;
  border: 1px solid #2a2a2a;
  border-radius: 1rem;
  padding: 0.875rem 1rem;
  color: white;
  width: 100%;
  transition: all 0.2s;
  font-size: 0.95rem;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
  background-color: #1a1a1a;
}

::placeholder {
  color: #6b7280;
}

/* Buttons */
button, .btn {
  cursor: pointer;
}

/* Footer */
.footer-link {
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--gold);
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease-out forwards;
}

/* Gallery hover effect */
.gallery-img {
  transition: all 0.4s ease;
}

.gallery-img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 30px -10px rgba(212, 175, 55, 0.2);
}
/* Admin Panel Styles */
.admin-edit-btn {
  background: rgba(212, 175, 55, 0.15);
  border: 1px dashed var(--gold);
  border-radius: 0.5rem;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}
.admin-edit-btn:hover {
  background: rgba(212, 175, 55, 0.3);
}
.admin-controls {
  background: #1a1a1a;
  border-bottom: 2px solid var(--gold);
}
.admin-login-btn {
  background: var(--gold);
  color: black;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}
.admin-login-btn:hover {
  background: var(--gold-dark);
}/* Modern Admin Modal */
.admin-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.admin-modal.active {
  visibility: visible;
  opacity: 1;
}
.admin-modal-content {
  background: #111;
  border: 1px solid var(--gold);
  border-radius: 1.5rem;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.5);
}
.admin-modal-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.admin-modal-content input {
  background: #1a1a1a;
  border: 1px solid #333;
  color: white;
  padding: 0.75rem;
  border-radius: 0.75rem;
  width: 100%;
  margin: 1rem 0;
}
.admin-modal-content button {
  background: var(--gold);
  color: black;
  padding: 0.6rem 1.5rem;
  border-radius: 2rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 0.5rem;
}
.close-modal {
  background: #2a2a2a;
  margin-left: 0.5rem;
}