:root {
  --bg: #000000;
  --text: #ffffff;
  --muted: #b0b0b0;
  --accent: #d4af37;
  --surface: rgba(0, 0, 0, 0.92);
  --border: rgba(212, 175, 55, 0.15);
  --shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #000000;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('Images/BackgroundImage.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  backdrop-filter: blur(18px);
  background: rgba(0, 0, 0, 0.98);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(17, 17, 17, 0.08);
}

.brand-name {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

main {
  display: block;
}

.slider-section {
  position: relative;
  width: 100%;
  height: clamp(500px, 56.25vw, 1000px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 65%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 65%, rgba(0,0,0,0) 100%);
}

.slider {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.slider-overlay {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 40px 30px;
}

.hero-copy {
  max-width: 860px;
  text-align: center;
}

.hero-copy p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  line-height: 1.02;
  margin: 0;
  color: var(--accent);
}

.content-wrapper {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.story-section,
.courses-section,
.gallery-section,
.contact-section {
  padding: 40px 0;
}

.courses-section {
  background: transparent;
}

.story-section h2,
.courses-section h2,
.gallery-section h2,
.contact-section h2 {
  font-size: 2.6rem;
  margin-bottom: 18px;
  color: var(--accent);
}

.story-section p,
.courses-section p,
.contact-section p {
  max-width: 880px;
  line-height: 1.85;
  color: var(--muted);
  font-size: 1rem;
}

.section-intro {
  display: grid;
  gap: 18px;
  margin-bottom: 40px;
}

.become-card {
  background: rgba(250, 250, 250, 0.95);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 32px;
  box-shadow: 0 30px 70px rgba(17, 17, 17, 0.08);
  padding: 40px;
}

.become-card-header {
  display: grid;
  gap: 10px;
  margin-bottom: 36px;
}

.eyebrow {
  color: var(--text);
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
}

.become-card-header h3 {
  margin: 0;
  font-size: clamp(2rem, 2.3vw, 2.7rem);
  line-height: 1.05;
  max-width: 760px;
}

.course-section-panel {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  padding-top: 36px;
  margin-top: 36px;
}

.course-section-panel:first-of-type {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}

.course-section-panel h3 {
  margin: 0 0 16px;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.course-subtitle {
  margin: 0 0 20px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.course-section-panel p {
  color: var(--muted);
  max-width: 900px;
}

.course-topics {
  margin-top: 24px;
}

.course-topics h4,
.dj-extra h4 {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.course-topics ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.course-topics li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  line-height: 1.8;
}

.course-topics li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent);
  font-size: 1.3rem;
  line-height: 1;
}

.dj-extra p {
  margin: 0;
  color: var(--muted);
  max-width: 900px;
}

.story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
}

.story-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: transparent;
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.story-button:hover,
.story-button.active {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(212, 175, 55, 0.2);
  border-color: var(--accent);
  background: transparent;
  color: var(--accent);
}

.story-button.prominent {
  min-width: 240px;
  background: var(--accent);
  color: #000000;
  box-shadow: 0 22px 55px rgba(212, 175, 55, 0.25);
}

.story-button.prominent:hover {
  background: var(--accent);
  color: #000000;
}

.story-button.secondary {
  background: transparent;
  border-color: rgba(212, 175, 55, 0.2);
  color: var(--text);
}

.story-content {
  margin-top: 28px;
}

.story-panel {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(18px);
  transition: opacity 0.25s ease, transform 0.25s ease, max-height 0.25s ease;
}

.story-panel.active {
  opacity: 1;
  max-height: 1000px;
  transform: translateY(0);
}

.gallery-placeholder {
  min-height: 280px;
  border: 1px dashed var(--border);
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: rgba(212, 175, 55, 0.05);
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.contact-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
}

/* Contact Toggle Buttons */
.contact-toggle-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
  flex-wrap: wrap;
}

.toggle-btn {
  padding: 14px 32px;
  background: none;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.3s ease;
  position: relative;
}

.toggle-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.toggle-btn.active {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

/* Contact Info */
.contact-info {
  transition: all 0.3s ease;
}

.contact-info.hidden {
  display: none;
}

/* Contact Forms */
.contact-form {
  max-width: 500px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
  opacity: 1;
}

.contact-form.hidden {
  display: none;
  opacity: 0;
}

.contact-form h3 {
  color: var(--accent);
  font-size: 1.6rem;
  margin: 0 0 28px;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--bg);
  color: var(--text);
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

.submit-btn:hover {
  background: #f5d76e;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.close-form-btn {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.close-form-btn:hover {
  color: var(--text);
  border-color: var(--accent);
}

/* Book Event Section */
.book-event-section {
  padding: 40px 0;
  background: transparent;
}

.book-event-section h2 {
  font-size: 2.6rem;
  margin-bottom: 18px;
  color: var(--accent);
  text-align: center;
}

.book-event-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.book-event-btn {
  padding: 14px 32px;
  background: none;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.3s ease;
  position: relative;
}

.book-event-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.book-event-btn.active {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.book-event-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  transition: all 0.3s ease;
}

.book-event-form.hidden {
  display: none;
}

.book-event-form h3 {
  color: var(--accent);
  font-size: 1.4rem;
  margin: 0 0 24px;
  text-align: center;
  font-weight: 800;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
  outline: none;
}

/* Footer */
.site-footer {
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid var(--border);
  padding: 40px 0 20px;
  margin-top: 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: var(--accent);
  font-size: 2.6rem;
  margin: 0 0 24px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}

.footer-section p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.9rem;
  margin: 0;
}

/* Social Media Icons */
.social-media {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-media a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #a0a0a0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.social-media a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}



.social-icon {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}

/* Welcome Section Styles */
.welcome-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.welcome-section h2 {
  font-size: 2.8rem;
  color: var(--accent);
  margin: 0 0 32px;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.welcome-intro {
  max-width: 900px;
  margin: 0 auto 24px;
}

.welcome-preview {
  color: var(--text);
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
}

.welcome-preview.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.view-all-toggle {
  display: block;
  margin: 32px auto 0;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 12px 36px;
  border-radius: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.view-all-toggle:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.view-all-toggle::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.view-all-toggle:hover::after {
  opacity: 1;
}

/* Welcome Preview Bold Text Styling */
.welcome-preview strong {
  color: var(--accent);
  font-weight: 700;
}

.welcome-paragraph strong {
  color: var(--text);
}

/* Welcome Highlight Sections */
.welcome-highlight-section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.welcome-highlight-section h3 {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.05em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.welcome-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
}

.welcome-highlights li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.welcome-highlights li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent);
  font-size: 1.3rem;
  line-height: 1;
}

.welcome-highlights li strong {
  color: var(--text);
  font-weight: 700;
}

.guarantee-subsection {
  margin-bottom: 24px;
}

/* DJ Skills Success Guaranteed - Centered and Golden */
.welcome-highlight-section:nth-of-type(2) h3 {
  text-align: center;
  color: var(--accent);
}

.guarantee-subsection h4 {
  text-align: center;
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.guarantee-subsection p {
  color: var(--text);
  line-height: 1.8;
  font-size: 0.95rem;
  margin: 0;
}

.guarantee-subsection strong {
  color: #ffffff;
  font-weight: 700;
}

/* Courses/Tabs Section */
.courses-section {
  padding: 40px 0;
}

.courses-header {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 60px;
}

.course-tab {
  padding: 14px 28px;
  background: transparent;
  border: 2px solid rgba(212, 175, 55, 0.3);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.3s ease;
  position: relative;
}

.course-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.course-tab.active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.course-tab.active::before {
  content: '';
  position: absolute;
  inset: -2px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  opacity: 0;
  animation: none;
}

.courses-content {
  max-width: 1000px;
  margin: 0 auto;
}

.course-panel {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease;
}

.course-panel.active {
  opacity: 1;
  max-height: 2000px;
  transform: translateY(0);
}

.course-panel h3 {
  font-size: 2.2rem;
  color: var(--accent);
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.course-panel-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 28px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.course-panel-content {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 32px;
}

.course-panel-content p {
  margin: 0 0 16px;
}

.course-panel-content h4 {
  font-size: 1.05rem;
  color: var(--accent);
  margin: 32px 0 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
}

.course-topics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.course-topics li {
  padding-left: 28px;
  position: relative;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.course-topics li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: bold;
}

@media (max-width: 840px) {
  .slider-section {
    height: 350px;
  }

  .slider-overlay {
    height: 350px;
  }

  .site-header {
    padding: 18px 22px;
  }

  .site-nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    max-width: 80vw;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 40px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 0;
    gap: 32px;
    transform: translateX(100%);
    opacity: 1;
    pointer-events: none;
    z-index: 90;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .site-nav.open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 100;
  }

  .site-nav a {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .site-nav a:hover, .site-nav a:active {
    color: var(--accent);
    transform: translateX(8px);
  }

  .story-actions {
    flex-direction: column;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .courses-header {
    flex-direction: column;
  }

  .course-tab {
    width: 100%;
    text-align: center;
  }

  .welcome-section h2 {
    font-size: 2rem;
  }

  .welcome-highlight-section h3 {
    font-size: 1.1rem;
  }

  .contact-toggle-buttons {
    gap: 12px;
  }

  .toggle-btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .footer-content {
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .hero-copy h1 {
    font-size: 2.35rem;
  }

  .story-section,
  .welcome-section,
  .courses-section,
  .gallery-section,
  .contact-section {
    padding: 48px 0;
  }

  .welcome-section h2 {
    font-size: 1.6rem;
  }

  .welcome-highlight-section h3 {
    font-size: 1rem;
  }

  .welcome-preview {
    font-size: 0.9rem;
  }

  .contact-toggle-buttons {
    flex-direction: column;
  }

  .toggle-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.9rem;
  }

  .contact-form {
    padding: 24px 16px;
    max-width: 100%;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .social-media {
    gap: 12px;
  }

  .social-media a {
    width: 40px;
    height: 40px;
  }

  .social-icon {
    width: 18px;
    height: 18px;
  }

  .footer-section h4 {
    font-size: 1rem;
  }

  .footer-section p {
    font-size: 0.85rem;
  }
}
