/* Exam Format Styles */
/* Using the website's existing CSS variables from modern.css */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-section {
  background: radial-gradient(at top left, #4a00e0, transparent 70%),
              radial-gradient(at bottom right, #8e2de2, var(--background) 100%);
  color: var(--text-primary);
  padding: 4rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
  border-radius: var(--border-radius);
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Dela Gothic One', cursive;
}

.hero-description {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.9;
}

/* Test Date Banner */
.test-date-banner {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.12),
    0 1px 2px rgba(255, 255, 255, 0.24);
}

.date-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.date-content .material-symbols-rounded {
  font-size: 3rem;
  color: var(--accent-blue);
}

.date-info h2 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.exam-date {
  color: var(--accent-blue);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.exam-time {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.countdown {
  display: flex;
  gap: 1.5rem;
}

.countdown-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: var(--border-radius);
  min-width: 80px;
}

.countdown-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-blue);
}

.countdown-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Overview Section */
.overview-section {
  margin-bottom: 3rem;
}

.overview-section h2 {
  color: var(--text-primary);
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.overview-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.12),
    0 1px 2px rgba(255, 255, 255, 0.24);
}

.overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background-color: rgba(255, 255, 255, 0.04);
}

.overview-card .material-symbols-rounded {
  font-size: 3rem;
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

.overview-card h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.overview-card p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 500;
}

/* Structure Section */
.structure-section {
  margin-bottom: 3rem;
}

.structure-section h2 {
  color: var(--text-primary);
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.structure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.structure-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.12),
    0 1px 2px rgba(255, 255, 255, 0.24);
}

.structure-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background-color: rgba(255, 255, 255, 0.04);
}

.card-header {
  background: var(--accent-blue);
  color: white;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.card-header .material-symbols-rounded {
  font-size: 2rem;
}

.card-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.card-content {
  padding: 1.5rem;
}

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

.card-content li {
  color: var(--text-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-content li:last-child {
  border-bottom: none;
}

.card-content strong {
  color: var(--text-primary);
}

/* Big Ideas Section */
.big-ideas-section {
  margin-bottom: 3rem;
}

.big-ideas-section h2 {
  color: var(--text-primary);
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.big-ideas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.big-idea-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.12),
    0 1px 2px rgba(255, 255, 255, 0.24);
}

.big-idea-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background-color: rgba(255, 255, 255, 0.04);
}

.idea-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.idea-header .material-symbols-rounded {
  font-size: 2rem;
  color: var(--accent-blue);
}

.idea-header h3 {
  color: var(--text-primary);
  margin: 0;
  font-size: 1.25rem;
}

.big-idea-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.coverage-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.coverage-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-blue), #10b981);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.coverage-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Scoring Section */
.scoring-section {
  margin-bottom: 3rem;
}

.scoring-section h2 {
  color: var(--text-primary);
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.scoring-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.scoring-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.12),
    0 1px 2px rgba(255, 255, 255, 0.24);
}

.scoring-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background-color: rgba(255, 255, 255, 0.04);
}

.scoring-card h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

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

.scoring-card li {
  color: var(--text-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.scoring-card li:last-child {
  border-bottom: none;
}

.score-scale {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.score-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.05);
}

.score-number {
  background: var(--accent-blue);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.score-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Performance Tasks Section */
.performance-tasks-section {
  margin-bottom: 3rem;
}

.performance-tasks-section h2 {
  color: var(--text-primary);
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.tasks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.task-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.12),
    0 1px 2px rgba(255, 255, 255, 0.24);
}

.task-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background-color: rgba(255, 255, 255, 0.04);
}

.task-header {
  background: var(--accent-blue);
  color: white;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.task-header .material-symbols-rounded {
  font-size: 2rem;
}

.task-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.task-content {
  padding: 1.5rem;
}

.task-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.task-content strong {
  color: var(--text-primary);
}

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

.task-content li {
  color: var(--text-secondary);
  padding: 0.25rem 0;
}

/* Test Day Section */
.test-day-section {
  margin-bottom: 3rem;
}

.test-day-section h2 {
  color: var(--text-primary);
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.test-day-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.info-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.12),
    0 1px 2px rgba(255, 255, 255, 0.24);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background-color: rgba(255, 255, 255, 0.04);
}

.info-card .material-symbols-rounded {
  font-size: 3rem;
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

.info-card h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.info-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Preparation Section */
.preparation-section {
  margin-bottom: 3rem;
}

.preparation-section h2 {
  color: var(--text-primary);
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.preparation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.tip-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.12),
    0 1px 2px rgba(255, 255, 255, 0.24);
}

.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background-color: rgba(255, 255, 255, 0.04);
}

.tip-card .material-symbols-rounded {
  font-size: 3rem;
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

.tip-card h4 {
  color: var(--text-primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.tip-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Resources Section */
.resources-section {
  margin-bottom: 3rem;
}

.resources-section h3 {
  color: var(--text-primary);
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.resource-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.resource-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-blue);
  background-color: rgba(255, 255, 255, 0.04);
}

.resource-link .material-symbols-rounded {
  font-size: 2rem;
  color: var(--accent-blue);
}

.resource-link span:last-child {
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .container {
    padding: 1rem;
  }
  
  .test-date-banner {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .countdown {
    justify-content: center;
  }
  
  .overview-grid,
  .structure-grid,
  .big-ideas-grid,
  .scoring-grid,
  .tasks-grid,
  .test-day-grid,
  .preparation-grid,
  .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .card-header,
  .task-header {
    padding: 1rem;
  }
  
  .card-header h3,
  .task-header h3 {
    font-size: 1.1rem;
  }
  
  .card-content,
  .task-content {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 2rem 1rem;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .overview-section h2,
  .structure-section h2,
  .big-ideas-section h2,
  .scoring-section h2,
  .performance-tasks-section h2,
  .test-day-section h2,
  .preparation-section h2,
  .resources-section h3 {
    font-size: 1.5rem;
  }
  
  .countdown {
    gap: 1rem;
  }
  
  .countdown-item {
    min-width: 60px;
    padding: 0.75rem;
  }
  
  .countdown-number {
    font-size: 1.5rem;
  }
  
  .countdown-label {
    font-size: 0.8rem;
  }
} 