/* ---------------- RESET & VARIABLES ---------------- */
:root {
  --bg-dark: #0f0f14;
  --bg-card: #1a1a23;
  --accent: #e6b35a;
  --text-main: #ffffff;
  --text-muted: #b3b3c6;
  --border-soft: rgba(255, 255, 255, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

body {
  background: linear-gradient(180deg, #0f0f14, #12121a);
  color: var(--text-main);
  min-height: 100vh;
}

/* ---------------- HEADER ---------------- */
header {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

/* Logo */
.logo {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Search (center) */
.nav-search {
  display: flex;
  justify-content: center;
}

.nav-search input {
  width: 100%;
  max-width: 380px;
  padding: 0.6rem 1rem;
  border-radius: 30px;
  border: none;
  outline: none;
  font-size: 0.95rem;
}

/* Hamburger toggle */
#nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: 0.3s;
}

/* Navigation */
nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.85;
}

nav a:hover {
  opacity: 1;
}

/* Mobile nav */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    background: #111;
    flex-direction: column;
    width: 100%;
    padding: 1.5rem;
    gap: 1.2rem;
    border-top: 1px solid #222;
  }

  #nav-toggle:checked + .hamburger + nav {
    display: flex;
  }

  nav a {
    font-size: 1.1rem;
  }

  .nav-search input {
    max-width: 100%;
  }
}

/* Hamburger animation */
#nav-toggle:checked + .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#nav-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}

#nav-toggle:checked + .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ---------------- MAIN ---------------- */
main {
  padding: 3rem 2.5rem;
  max-width: 1400px;
  margin: auto;
}

h1 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

/* ---------------- GRID & CARDS ---------------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.6rem;
}

.card {
  background: linear-gradient(160deg, #1a1a23, #20202b);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 1.4rem;
  text-align: center;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* Make cards clickable without link styling */
.card {
  text-decoration: none;
  color: var(--text-main);
  cursor: pointer;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Remove underline from any links inside cards */
.card a {
  text-decoration: none;
  color: inherit;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.9rem;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---------------- TALENT PAGE ---------------- */
.profile-image {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--accent);
  margin: 1.5rem 0;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.media-item img,
.media-item video {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
}

/* ---------------- BUTTONS ---------------- */
button,
.btn {
  background: linear-gradient(135deg, #e6b35a, #d89a2b);
  border: none;
  color: #111;
  padding: 0.65rem 1.4rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

button:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 179, 90, 0.4);
}

/* ---------------- FORMS ---------------- */
form {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.9rem;
  max-width: 500px;
}

input,
textarea,
select {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  padding: 0.65rem;
  border-radius: 6px;
  color: var(--text-main);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* ---------------- TABLES ---------------- */
table {
  width: 100%;
  margin-top: 1.5rem;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
}

th,
td {
  padding: 0.8rem;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.9rem;
}

th {
  background: #15151d;
  color: var(--accent);
}

tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* ---------------- FOOTER ---------------- */
footer {
  margin-top: 5rem;
  padding: 2rem;
  text-align: center;
  border-top: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 600px) {
  main {
    padding: 1.5rem 1rem;
  }

  h1 {
    font-size: 1.7rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .profile-image {
    width: 160px;
    height: 160px;
    margin: 1rem auto;
    display: block;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  button {
    width: 100%;
  }

  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* PROMOTION PAGE */
.promo-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.promo-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 0.8rem;
}

.promo-hero p {
  color: var(--text-muted);
  max-width: 700px;
  margin: auto;
  font-size: 1.05rem;
}

.promo-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.promo-card {
  background: var(--bg-card);
  padding: 1.6rem;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
}

.promo-card h3 {
  margin-bottom: 0.6rem;
  color: var(--accent);
}

.promo-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.promo-form {
  max-width: 600px;
  margin: auto;
}

.promo-form h2 {
  text-align: center;
  margin-bottom: 1.2rem;
}

/* BOOKING CONFIRMATION */
.confirmation-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 65vh;
}

.confirmation-card {
  background: linear-gradient(160deg, #1a1a23, #20202b);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.confirmation-icon {
  font-size: 3.2rem;
  margin-bottom: 1rem;
}

.confirmation-card h1 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.confirmation-message {
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 1.2rem;
}

.confirmation-details p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.confirmation-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #111;
}

/* ---------------- FLASH MESSAGES ---------------- */
.flash-wrapper {
  position: fixed;
  top: 90px;
  right: 30px;
  z-index: 2000;
}

.flash {
  background: linear-gradient(135deg, #1a1a23, #20202b);
  border-left: 5px solid var(--accent);
  color: white;
  padding: 1rem 1.3rem;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  margin-bottom: 1rem;
  animation: slideIn 0.4s ease;
  max-width: 360px;
  font-size: 0.95rem;
}

.flash-success {
  border-left-color: #3ddc84;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
