/* ============================================
   AVID Conference - Stylesheet
   ============================================ */

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

body {
  font-family: 'Inter', sans-serif;
  background: #1a3b2f;
  margin: 20px;
  min-height: 100vh;
}

.full-width {
  width: 100%;
  background: transparent;
}

.inner-content {
  padding: 30px 40px;
  max-width: 1400px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

:root {
  --primary-red: #c41e3a;
  --primary-gold: #e6b422;
  --primary-orange: #ff8c00;
  --glass-border: rgba(255, 255, 255, 0.15);
  --card-bg: rgba(255, 255, 255, 0.08);
}

body {
  color: #ffffff;
}

/* President Message */
.president-message { 
  background: var(--card-bg); 
  backdrop-filter: blur(8px); 
  border-radius: 28px; 
  border: 1px solid var(--glass-border); 
  overflow: hidden; 
  margin-bottom: 20px; 
}

.president-grid { 
  display: grid; 
  grid-template-columns: 1fr 2fr; 
  gap: 0; 
}

.president-image-col { 
  background: rgba(0,0,0,0.3); 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: flex-start; 
  padding: 40px 20px; 
}

.president-circle { 
  width: 220px; 
  height: 220px; 
  border-radius: 50%; 
  overflow: hidden; 
  border: 4px solid var(--primary-gold); 
  margin-bottom: 20px; 
  box-shadow: 0 0 20px rgba(230,180,34,0.3); 
  background: #1a2a3a; 
}

.president-circle img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}

.president-name { 
  text-align: center; 
  color: var(--primary-gold); 
  font-size: 1.2rem; 
  font-weight: 700; 
  margin-bottom: 5px; 
}

.president-title { 
  text-align: center; 
  color: white; 
  font-size: 0.85rem; 
}

.president-content-col { 
  padding: 35px; 
}

.greeting-text { 
  font-size: 24px; 
  font-weight: bold; 
  color: var(--primary-gold); 
  margin-bottom: 20px; 
}

.president-content-col p { 
  color: #f0f4fa; 
  line-height: 1.7; 
  margin-bottom: 15px; 
  font-size: 0.85rem; 
}

.president-signature { 
  margin-top: 20px; 
  padding-top: 15px; 
  border-top: 1px solid rgba(255,255,255,0.1); 
}

.welcome-text { 
  color: var(--primary-orange); 
  font-weight: bold; 
  margin-top: 10px; 
}

/* Conference Promo */
.conference-promo {
  margin-top: 25px;
  padding-top: 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  width: 100%;
}

.conference-promo i {
  font-size: 2rem;
  color: var(--primary-gold);
  margin-bottom: 10px;
}

.conference-promo h4 {
  color: var(--primary-gold);
  font-size: 1rem;
  margin-bottom: 8px;
}

.conference-promo p {
  color: #c0d0e5;
  font-size: 0.75rem;
  margin-bottom: 12px;
}

.promo-btn {
  display: inline-block;
  background: var(--primary-red);
  color: white;
  padding: 8px 20px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s;
}

.promo-btn:hover {
  background: #9e0825;
  transform: translateY(-2px);
}

/* Header */
.site-header { 
  background: rgba(0, 0, 0, 0.4); 
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border); 
  border-radius: 24px;
  padding: 0 16px;
  margin-bottom: 12px;
}

.header-top { 
  display: flex; 
  flex-wrap: wrap; 
  justify-content: space-between; 
  align-items: center; 
  padding: 10px 0 6px; 
}

.branding { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-wrapper img { 
  width: 100%; 
  height: 100%; 
  border-radius: 50%; 
  object-fit: cover; 
  border: 2px solid rgba(230,180,34,0.7); 
}

.site-title h1 { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.3rem; 
  font-weight: 800; 
  color: #ffffff; 
}

.site-title p { 
  font-size: 0.65rem; 
  font-weight: 500; 
  color: var(--primary-gold); 
}

.header-actions { 
  display: flex; 
  gap: 12px; 
  align-items: center; 
}

.btn-donate, .submit-btn {
  background: var(--primary-red);
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.btn-join {
  color: var(--primary-gold);
  border: 1px solid var(--primary-gold);
  background: transparent;
  padding: 6px 18px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
}

.btn-join:hover {
  background: var(--primary-gold);
  color: #0a1a2e;
}

.btn-primary {
  background: var(--primary-red);
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: #9e0825;
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--primary-gold);
  color: #0a1a2e;
  border: none;
  padding: 12px 32px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: #f0c040;
  transform: translateY(-2px);
}

/* Navigation */
.primary-nav { 
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; 
  gap: 6px 24px; 
  padding: 8px 0; 
  list-style: none; 
  border-top: 1px solid rgba(255,255,255,0.1);
}

.primary-nav a { 
  font-weight: 600; 
  font-size: 0.9rem; 
  padding: 5px 0; 
  transition: all 0.25s; 
  color: #ffffff !important;
  text-decoration: none;
}

.primary-nav a:hover, 
.primary-nav .active a { 
  border-bottom: 2px solid var(--primary-gold); 
  color: var(--primary-gold) !important;
}

/* Hero Section */
.hero { 
  background: linear-gradient(107deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%); 
  padding: 40px 0; 
  text-align: center; 
  border-radius: 28px; 
  backdrop-filter: blur(4px);
  margin-bottom: 20px;
  border: 1px solid var(--glass-border);
}

.hero-content h2 { 
  font-size: 30px; 
  font-weight: 800; 
  font-family: 'Playfair Display', serif; 
  margin-bottom: 15px; 
  color: var(--primary-gold);
}

.hero-content p { 
  font-size: 18px; 
  max-width: 600px; 
  margin: 0 auto 20px; 
  color: var(--primary-gold);
}

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

/* Grid Systems */
.grid-2cols { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 30px; 
}

@media (max-width: 780px) {
  .grid-2cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Cards */
.card { 
  background: rgba(255, 255, 255, 0.08); 
  backdrop-filter: blur(10px);
  padding: 25px;
  transition: all 0.3s; 
  border: 1px solid var(--glass-border); 
  border-radius: 28px;
}

.card:hover { 
  transform: translateY(-4px); 
  border-color: rgba(230,180,34,0.5); 
  background: rgba(255, 255, 255, 0.12); 
}

.card i { 
  font-size: 2rem; 
  margin-bottom: 12px; 
  color: var(--primary-gold);
}

.card h3 { 
  margin-bottom: 10px; 
  font-size: 1.2rem; 
  color: white;
}

.price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-gold);
  margin: 10px 0;
}

/* Benefits List */
.benefits-list {
  list-style: none;
  margin: 15px 0;
}

.benefits-list li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f0f4fa;
  font-size: 0.8rem;
}

.benefits-list li i {
  color: var(--primary-gold);
  font-size: 0.8rem;
  width: 20px;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.stat-card {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-gold);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.85rem;
  color: #c0d0e5;
}

/* Schedule Section */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 30px 0;
}

.schedule-day {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,0.1);
}

.schedule-day h3 {
  color: var(--primary-gold);
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.day-subtitle {
  color: #c0d0e5;
  font-size: 0.8rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.schedule-item {
  display: flex;
  gap: 15px;
  font-size: 0.85rem;
}

.schedule-item time {
  min-width: 80px;
  color: var(--primary-gold);
  font-weight: 600;
}

.schedule-item span {
  color: #c0d0e5;
}

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

.section-alt { 
  background: rgba(255, 255, 255, 0.05); 
  backdrop-filter: blur(8px);
  padding: 20px; 
  margin: 15px 0; 
  border-radius: 28px;
  border: 1px solid var(--glass-border);
}

.section-title { 
  text-align: center; 
  font-size: 1.8rem; 
  font-weight: 700; 
  margin-bottom: 25px; 
  color: white;
}

.section-title:after { 
  content: ''; 
  display: block; 
  width: 80px; 
  height: 3px; 
  background: var(--primary-gold); 
  margin: 12px auto 0; 
  border-radius: 4px; 
}

/* Copy Button */
.copy-small-btn {
  background: var(--primary-gold);
  color: #0a1a2e;
  border: none;
  padding: 8px 12px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.7rem;
  cursor: pointer;
  margin-top: 10px;
}

.copy-small-btn:hover {
  background: #f0c040;
  transform: translateY(-2px);
}

/* PayPal Button */
.paypal-small-btn {
  background: #ffc439;
  color: #0a1a2e;
  border: none;
  padding: 8px 12px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.7rem;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

.paypal-small-btn:hover {
  background: #ffb300;
  transform: translateY(-2px);
}

.btn-membership-footer {
  background: var(--primary-gold);
  color: #0a1a2e;
  border: none;
  padding: 8px 12px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.7rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-membership-footer:hover {
  background: #f0c040;
  transform: translateY(-2px);
}

/* Military Logos */
.military-logos { 
  padding: 20px 0 10px; 
  text-align: center; 
}

.united-title { 
  font-size: 24px; 
  font-weight: bold; 
  color: var(--primary-gold); 
  margin-bottom: 20px; 
}

.logos-table { 
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; 
  gap: 10px; 
  max-width: 900px; 
  margin: 0 auto; 
}

.logos-table img { 
  height: 40px; 
  background: rgba(255,255,255,0.1); 
  padding: 5px; 
  border-radius: 12px; 
}

/* Footer Payment Section */
.footer-payment-section {
  background: rgba(10, 26, 46, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid rgba(230,180,34,0.3);
}

.footer-payment-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.payment-card {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  padding: 15px;
  text-align: center;
  flex: 1;
  min-width: 180px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.payment-card:hover {
  transform: translateY(-3px);
  border: 1px solid var(--primary-gold);
  background: rgba(0, 0, 0, 0.5);
}

.payment-card i { 
  font-size: 1.5rem; 
  color: var(--primary-gold); 
}

.payment-card h3 { 
  color: white; 
  font-size: 0.9rem; 
  font-weight: 600;
}

.payment-card p { 
  font-size: 0.7rem; 
  color: #e0e8f0; 
}

/* Footer Main */
.footer-main {
  background: rgba(5, 21, 42, 0.8);
  backdrop-filter: blur(10px);
  padding: 25px 0 15px;
  border-radius: 20px 20px 0 0;
  margin-top: 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
  margin-bottom: 20px;
}

.footer-col h3 { 
  color: white; 
  margin-bottom: 10px; 
  font-size: 0.9rem; 
}

.footer-col p { 
  margin: 8px 0; 
  font-size: 0.7rem; 
  color: #c0d0e5; 
}

.footer-col a {
  color: #c0d0e5;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--primary-gold);
}

.copyright { 
  text-align: center; 
  border-top: 1px solid rgba(255,255,255,0.1); 
  padding-top: 15px; 
  font-size: 0.65rem; 
  color: #c0d0e5; 
}

.copyright p {
  margin: 3px 0;
}

.admin-link { 
  text-align: center; 
  margin-top: 15px; 
  padding-top: 10px; 
  border-top: 1px solid rgba(255,255,255,0.1); 
}

.admin-link a { 
  color: rgba(255,255,255,0.4); 
  text-decoration: none; 
  font-size: 0.65rem; 
}

.admin-link a:hover { 
  color: var(--primary-gold); 
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gold { color: var(--primary-gold) !important; }

/* Responsive */
@media (max-width: 1024px) {
  .stats-grid, .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) { 
  .president-grid { 
    grid-template-columns: 1fr; 
  }
  .president-circle { 
    width: 160px; 
    height: 160px; 
  }
  .greeting-text { 
    font-size: 20px; 
  }
  .header-top { 
    flex-direction: column; 
    gap: 8px; 
  } 
  .inner-content { 
    padding: 15px; 
  } 
  .hero-content h2 { 
    font-size: 24px; 
  }
  .hero-content p { 
    font-size: 16px; 
  }
  .footer-content { 
    flex-direction: column; 
    text-align: center; 
  }
  .logo-wrapper { 
    width: 50px; 
    height: 50px; 
  }
  .site-title h1 { 
    font-size: 1.1rem; 
  }
  .price { 
    font-size: 1.5rem; 
  }
  .stats-grid, .schedule-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .footer-payment-container {
    flex-direction: column;
    align-items: center;
  }
  .payment-card {
    width: 100%;
  }
}