/* masterclass.css — General Styles */
body {
  font-family: 'Inter', sans-serif;
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: #b11226;
}


h1, h2, h3 {
  font-weight: bold;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

p {
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

/* Logo wrapper */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}


.logo img {
  height: 65px;
  width: auto;
  object-fit: contain;
  display: block; 
  transform: scale(2.5);    /* scales image visually without increasing height box */
  transform-origin: center;
}

/* Hero Section Background */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0a0a 100%);
  overflow: hidden;
  padding: 100px 20px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(128,0,32,0.1), transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(255,255,255,0.05), transparent 50%);
  z-index: 0;
  pointer-events: none;
}

/* Hero Content on Top */
.hero-content {
  position: relative;
  z-index: 1;
}

/* Benefits Section - Premium Style */
.benefits {
  background: linear-gradient(135deg, #111, #1c1c1c);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.benefits h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #fff;
}

.benefits-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(8px);
}

.benefit-item .icon {
  font-size: 2rem;
  color: #b11226; /* Burgundy accent */
}

.benefit-item h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #fff;
}

.benefit-item p {
  color: #ccc;
  font-size: 1rem;
}

/* ===== MODAL STYLES ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: #111;
  margin: auto;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  color: #fff;
  box-shadow: 0 0 20px rgba(128, 0, 32, 0.7);
  position: relative;
  animation: slideUp 0.4s ease;
}

.modal-content h2 {
  color: #c8a951;
  margin-bottom: 20px;
}

.modal-content ul {
  list-style-type: disc;
  margin-left: 20px;
  line-height: 1.6;
  color: #ccc;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.available-soon {
  display: inline-block;
  padding: 12px 26px;
  background: #800020; /* burgundy */
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  cursor: not-allowed;
  opacity: 0.95;
  letter-spacing: 0.5px;
  box-shadow: 0 0 12px rgba(128, 0, 32, 0.45);
}
