:root {
  /* Light theme (default) */
  --bg: #f3f4f6;
  --bg-alt: #ffffff;
  --card: #ffffff;
  --accent: #6366f1;
  --accent-soft: rgba(99, 102, 241, 0.08);
  --accent-strong: rgba(99, 102, 241, 0.18);
  --text-main: #111827;
  --text-muted: #494d53;
  --border-subtle: rgba(148, 163, 184, 0.5);
  --shadow-soft: rgba(0, 107, 230, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
  --bg-color: #ffffff;
  --loader-color: #65656e;
  --bg-color: #ffffff;
  --loader-color: #65656e;
}

body.theme-dark {
  --bg: #050816;
  --bg-alt: #0b1020;
  --card: #111827;
  --accent: #6366f1;
  --accent-soft: rgba(99, 102, 241, 0.14);
  --accent-strong: rgba(129, 140, 248, 0.4);
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.3);
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.8);
  --bg-color: #121214;
  --loader-color: #a5a5b0;
}

body.theme-dark {
  background: radial-gradient(circle at top, #111827 0, #020617 45%, #000 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, rgba(148, 163, 184, 0.32) 0, #e5e7eb 40%, #e5e7eb 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

body.page-songs {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Screen Loader */

/* Screen Loader end */

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

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

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding-block: clamp(2.6rem, 5vw, 3.5rem);
}

.hero {
  padding-top: clamp(2.75rem, 6vw, 4rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(243, 244, 246, 0.96),
    rgba(243, 244, 246, 0.94),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

body.theme-dark .site-header {
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.98),
    rgba(15, 23, 42, 0.9),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.8rem;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}


.logo span {
 width: 60px;
 background-color: #ffffff;
 padding: 2px;
 border-radius: 5px;
} 

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1rem;
}

@media (max-width: 860px) {
  .nav {
    gap: 1.05rem;
    font-size: 0.9rem;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.theme-toggle {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  color: #f59e0b;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  transition: background 0.18s ease, border-color 0.18s ease,
    transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.theme-toggle svg {
  width: 1.1rem;
  height: 1.1rem;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

body.theme-dark .theme-toggle {
  background: rgba(15, 23, 42, 0.98);
  border-color: rgba(129, 140, 248, 0.8);
  color: #e5e7eb;
}

.nav a {
  position: relative;
  color: var(--text-muted);
  transition: color 0.2s ease;
  transition: transform 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 3.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6366f1, #a855f7);
  transition: width 0.18s ease-out;
}

.nav a:hover {
  color: var(--text-main);
  transform: translateY(-5px);
}

.nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.26rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
}

main {
  padding-block: 2.5rem 3.5rem;
}

body.page-songs main {
  flex: 1;
}

.section {
  padding-block: 3.5rem;
}

.section-alt {
  background: radial-gradient(
      circle at top left,
      rgba(129, 140, 248, 0.16),
      transparent 60%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(236, 72, 153, 0.14),
      transparent 55%
    );
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 1.8rem;
  margin: 0 0 0.7rem;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero {
  padding-top: 4rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 3.25rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.3rem, 4vw, 2.9rem);
  margin: 0 0 0.9rem;
  letter-spacing: -0.03em;
}

.hero-text p {
  margin: 0 0 1.6rem;
  color: var(--text-muted);
  max-width: 30rem;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease,
    background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #6366f1, #a855f7);
  color: #f9fafb;
  box-shadow: 0 16px 36px rgba(88, 80, 236, 0.4);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(88, 80, 236, 0.6);
}

.btn.ghost {
  border-color: rgba(148, 163, 184, 0.45);
  color: var(--text-main);
  background: radial-gradient(
      circle at top left,
      rgba(148, 163, 184, 0.3),
      transparent 60%
    ),
    rgba(255, 255, 255, 0.95);
}

.btn.ghost:hover {
  border-color: rgba(148, 163, 184, 0.8);
  background: radial-gradient(
      circle at bottom right,
      rgba(148, 163, 184, 0.3),
      transparent 60%
    ),
    rgba(255, 255, 255, 0.98);
}

.btn.full-width {
  width: 100%;
}

.hero-slider {
  position: relative;
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 1280 / 720;
  background: radial-gradient(
    circle at top left,
    rgba(129, 140, 248, 0.2),
    rgba(15, 23, 42, 0.9)
  );
}
.customslider{
  padding: 1%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.slide-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.slide-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 0.35rem;
}

.slide-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  position: relative;
  pointer-events: auto;
}

.slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at top left,
      rgba(129, 140, 248, 0.16),
      transparent 55%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(244, 114, 182, 0.12),
      transparent 50%
    );
  mix-blend-mode: soft-light;
  opacity: 0.9;
  pointer-events: none;
}

.slider-controls {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 0.8rem;
}

.slider-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: none;
  background: rgba(148, 163, 184, 0.6);
  padding: 0;
  cursor: pointer;
  transition: all 0.18s ease;
}

.slider-dot.active {
  width: 1.4rem;
  background: linear-gradient(90deg, #6366f1, #a855f7);
}
/*Song designs*/
.songs-grid {
  flex-direction: column;
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.song-card {
  background: radial-gradient(
      circle at top left,
      rgba(129, 140, 248, 0.12),
      transparent 65%
    ),
    var(--card);
  border-radius: 1rem;
  padding: 1.1rem 1.1rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.85);
}

/*.song-info {
  margin-bottom: 0.7rem;
}*/

.song-info h3 {
  margin: 0 0 0.15rem;
  font-size: 1rem;
  opacity: 0.8;
  transition: 0.3s;
  font-weight: 500;
}

.song-info h3:hover{
  translate: 10px;
  color: #FFD700
}

.song-info p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

audio {
  width: 100%;
  filter: drop-shadow(0 6px 18px rgba(15, 23, 42, 0.9));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
}

.album-card {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.album-card img {
  display: block;
  width: 100%;
  border-radius: 1rem;
  height: 180px;
  object-fit: cover;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.album-card figcaption {
  padding: 0.7rem 0.8rem 0.8rem;
}

.album-card h3 {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
}

.album-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.album-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.95);
  border-color: rgba(129, 140, 248, 0.7);
}

.gallery-grid .album-card--video {
  cursor: pointer;
}

.album-card--video video {
  display: block;
  width: 100%;
  border-radius: 1rem;
  height: 180px;
  object-fit: cover;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: #0f172a;
}

.section-header .nowrap {
  white-space: nowrap;
}

.gallery-grid img {
  cursor: zoom-in;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(2, 6, 23, 0.92);
  padding: 1.5rem;
}

.lightbox-overlay.open {
  display: flex;
}

.lightbox-image {
  max-width: min(1200px, 94vw);
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.9);
}

.lightbox-image[hidden] {
  display: none !important;
}

.lightbox-video {
  display: block;
  max-width: min(1200px, 94vw);
  max-height: min(90vh, 800px);
  width: 100%;
  border-radius: 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.9);
  background: #020617;
}

.lightbox-video[hidden] {
  display: none !important;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(15, 23, 42, 0.86);
  color: #f8fafc;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover {
  background: rgba(99, 102, 241, 0.9);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
  gap: 3rem;
  align-items: flex-start;
}

.about-grid h2 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.about-grid p {
  margin-top: 0;
  margin-bottom: 0.8rem;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.about-highlights {
  display: grid;
  gap: 0.9rem;
}

.about-item {
  background: radial-gradient(
      circle at top left,
      rgba(79, 70, 229, 0.16),
      transparent 60%
    ),
    var(--card);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(129, 140, 248, 0.5);
  box-shadow: 0 14px 34px rgba(30, 64, 175, 0.85);
}

.about-item h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.about-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.donate-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 2.7rem;
  align-items: stretch;
}

.donate-note {
  margin-top: 0.7rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.4rem;
  align-items: stretch;
}

#contact {
  background: linear-gradient(
    180deg,
    rgba(99, 102, 241, 0.08) 0%,
    rgba(255, 255, 255, 0.82) 100%
  );
}

body.theme-dark #contact {
  background: linear-gradient(
    180deg,
    rgba(99, 102, 241, 0.18) 0%,
    rgba(2, 6, 23, 0.7) 100%
  );
}

.contact-intro h2 {
  margin: 0 0 0.7rem;
  font-size: 1.7rem;
}

.contact-intro p {
  margin: 0 0 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6366f1;
  background: var(--accent-soft);
  margin-bottom: 0.7rem;
}

.contact-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.contact-meta li {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.contact-value {
  font-size: 0.9rem;
}

.contact-card {
  background: var(--card);
  border-radius: 1.3rem;
  padding: 1.5rem 1.5rem 1.35rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-soft);
}

body:not(.theme-dark) .contact-card {
  background: radial-gradient(
      circle at top left,
      rgba(99, 102, 241, 0.06),
      transparent 55%
    ),
    rgba(255, 255, 255, 0.92);
  border-color: rgba(148, 163, 184, 0.55);
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 0.9rem;
}

.contact-info-grid {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.9rem;
}

.info-card {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  font-size: 0.88rem;
}

.info-card h4 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
}

.info-card p {
  margin: 0.12rem 0;
}

.info-card a {
  color: #2563eb;
}

.info-card a:hover {
  text-decoration: underline;
}

body.theme-dark .info-card {
  background: #020617;
  border-color: rgba(148, 163, 184, 0.6);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.9);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.field {
  margin-bottom: 0.85rem;
}

.field label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
  color: var(--text-muted);
}

input,
textarea {
  width: 100%;
  border-radius: 0.7rem;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-main);
  padding: 0.55rem 0.7rem;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease,
    background 0.16s ease;
}

input:focus,
textarea:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.35);
  background: #ffffff;
}

body.theme-dark input,
body.theme-dark textarea {
  background: rgba(15, 23, 42, 0.9);
}

body.theme-dark input:focus,
body.theme-dark textarea:focus {
  background: rgba(15, 23, 42, 0.96);
}

textarea {
  resize: vertical;
  min-height: 110px;
}

.form-status {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.form-status[data-type="loading"] {
  color: var(--text-muted);
}

.form-status[data-type="success"] {
  color: #16a34a;
}

.form-status[data-type="error"] {
  color: #dc2626;
}

button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.site-footer {
  position: relative;
  border-top: 1px solid rgba(148, 163, 184, 0.28);
  padding-block: 1.5rem 2rem;
  background: #eef2ff;
}

body.theme-dark .site-footer {
  border-top: 1px solid rgba(99, 102, 241, 0.45);
  background: #020617;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  padding: 0;
}

body.theme-dark .footer-inner {
  color: #94a3b8;
}

.footer-inner p {
  margin: 0;
  color: var(--text-main);
  font-weight: 500;
}

@media (max-width: 720px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    row-gap: 0.9rem;
  }

  .footer-links {
    order: 1;
  }

  .footer-social {
    order: 2;
  }
}

.footer-links {
  display: flex;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  transition: transform 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

body.theme-dark .footer-links a {
  background: rgba(15, 23, 42, 0.7);
  color: #e2e8f0;
  border-color: rgba(99, 102, 241, 0.4);
}

.footer-links a:hover {
  color: var(--accent);
  border-color: rgba(99, 102, 241, 0.65);
  transform: translateY(-1px);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-social a {
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: var(--text-muted);
  transition: border-color 0.16s ease, background 0.16s ease,
    transform 0.16s ease, color 0.16s ease;
}

body.theme-dark .footer-social a {
  background: rgba(15, 23, 42, 0.86);
  border-color: rgba(99, 102, 241, 0.45);
}

.footer-social a svg {
  width: 1rem;
  height: 1rem;
}

.footer-social a:hover {
  border-color: rgba(129, 140, 248, 0.95);
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
  color: #f8fafc;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    order: -1;
  }

  .about-grid,
  .donate-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(1120px, 100% - 1.5rem);
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 0.7rem;
    left: 0.7rem;
    flex-direction: column;
    gap: 0.7rem;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 0.9rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
    transform-origin: top right;
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  body.theme-dark .nav {
    background: rgba(15, 23, 42, 0.98);
  }

  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .hero-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero-text p {
    max-width: 38rem;
  }
}

@media (max-width: 520px) {
  .header-inner {
    padding-block: 0.65rem;
  }

  .hero-text h1 {
    font-size: 2.05rem;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .slider {
    border-radius: 1.1rem;
  }

  .contact-card {
    padding: 1.15rem 1.05rem 1.05rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .container {
    width: min(1200px, 100% - 3rem);
  }

  .hero-inner {
    gap: 3.75rem;
  }
}

@media (min-width: 1280px) {
  .container {
    width: min(1240px, 100% - 3.5rem);
  }
}

@media (min-width: 1536px) {
  .container {
    width: min(1360px, 100% - 4rem);
  }

  .hero-text h1 {
    font-size: 3.1rem;
  }
}
