/* FEDORA CLUB - Cinematic Light Theme (Public Pages) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ===== BASE ===== */
body.public-page {
  font-family: 'Outfit', sans-serif;
  background: #f8fafc;
  color: #1e293b;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
body.public-page .navbar {
  background: linear-gradient(135deg, #4e73df 0%, #764ba2 100%) !important;
  backdrop-filter: blur(10px);
  padding: 0.8rem 0;
}

body.public-page .navbar-brand {
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.5px;
}

body.public-page .nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 0 2px;
}

body.public-page .nav-link:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

/* ===== HERO / BANNER ===== */
body.public-page .homepage-banner {
  border-radius: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

body.public-page .homepage-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

body.public-page .homepage-banner img {
  height: 500px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 768px) {
  body.public-page .homepage-banner img {
    height: 600px;
  }
}

body.public-page .homepage-banner .position-absolute {
  z-index: 2;
}

body.public-page .homepage-banner h1 {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -2px;
  text-transform: uppercase;
}

body.public-page .homepage-banner .lead {
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1rem;
}

/* ===== HEADINGS ===== */
body.public-page h4 {
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1e293b;
}

body.public-page h4 i {
  color: #4e73df;
}

/* ===== CARDS ===== */
body.public-page .card {
  background: white;
  border: none;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.public-page .card:hover {
  box-shadow: 0 12px 40px rgba(78, 115, 223, 0.15);
  transform: translateY(-5px);
}

body.public-page .card-header {
  border-bottom: 1px solid #e2e8f0;
  font-weight: 600;
}

/* ===== QUICK LINK CARDS (Home) ===== */
body.public-page a.text-decoration-none .card {
  border: 1px solid #e2e8f0;
}

body.public-page a.text-decoration-none .card:hover {
  border-color: #4e73df;
  box-shadow: 0 8px 30px rgba(78, 115, 223, 0.2);
}

body.public-page a.text-decoration-none .card i {
  transition: transform 0.3s;
}

body.public-page a.text-decoration-none .card:hover i {
  transform: scale(1.2);
}

/* ===== BUTTONS ===== */
body.public-page .btn-primary {
  background: linear-gradient(135deg, #4e73df, #764ba2);
  border: none;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.7rem 2rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(78, 115, 223, 0.3);
}

body.public-page .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(78, 115, 223, 0.4);
}

body.public-page .btn-light.btn-lg {
  font-weight: 600;
  border-radius: 50px;
  padding: 0.8rem 2.5rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

body.public-page .btn-light.btn-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ===== TABLES ===== */
body.public-page .table th {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #64748b;
  border-bottom: 2px solid #e2e8f0;
}

body.public-page .table td {
  vertical-align: middle;
  border-bottom: 1px solid #e2e8f0;
}

body.public-page .table-hover tbody tr:hover {
  background: #eef2ff;
}

/* ===== FORMS ===== */
body.public-page .form-control {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.7rem 1rem;
  transition: all 0.3s;
}

body.public-page .form-control:focus {
  border-color: #4e73df;
  box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.15);
}

/* ===== BADGES ===== */
body.public-page .badge {
  border-radius: 50px;
  font-weight: 500;
  padding: 0.45em 0.9em;
}

/* ===== FOOTER ===== */
body.public-page footer {
  background: white !important;
  border-top: 1px solid #e2e8f0 !important;
}

/* ===== GOOGLE CALENDAR ===== */
body.public-page .google-calendar-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* ===== ANIMATIONS ===== */
body.public-page .card {
  animation: cineFadeIn 0.6s ease forwards;
  opacity: 0;
}

body.public-page .homepage-banner {
  animation: cineFadeIn 0.8s ease forwards;
}

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

/* Stagger animation for cards */
body.public-page .row .col-6:nth-child(1) .card,
body.public-page .row .col-md-3:nth-child(1) .card,
body.public-page .row .col-lg-6:nth-child(1) .card { animation-delay: 0.1s; }
body.public-page .row .col-6:nth-child(2) .card,
body.public-page .row .col-md-3:nth-child(2) .card,
body.public-page .row .col-lg-6:nth-child(2) .card { animation-delay: 0.2s; }
body.public-page .row .col-6:nth-child(3) .card,
body.public-page .row .col-md-3:nth-child(3) .card { animation-delay: 0.3s; }
body.public-page .row .col-6:nth-child(4) .card,
body.public-page .row .col-md-3:nth-child(4) .card { animation-delay: 0.4s; }

/* ===== NO BANNER HERO SECTION ===== */
body.public-page .text-center .rounded-circle {
  box-shadow: 0 8px 30px rgba(78, 115, 223, 0.3);
}
