/* ============================================
   DELAR' ARTS PAGE — Bright Yellow Theme
   ============================================ */

body.delar-arts {
  background: #FED606;
  color: #000;
}

/* Decorative shapes */
body.delar-arts::before {
  content: '';
  position: fixed;
  top: 10%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 91, 181, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

body.delar-arts::after {
  content: '';
  position: fixed;
  bottom: 5%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(91, 141, 202, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  animation: float 10s ease-in-out infinite reverse;
}

/* NAV */
body.delar-arts .nav {
  background: rgba(254, 214, 6, 0.85);
}
body.delar-arts .nav-scrolled {
  background: rgba(254, 214, 6, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
body.delar-arts .nav-brand,
body.delar-arts .nav-link {
  color: #000;
}
body.delar-arts .nav-link::after {
  background: #EF3D4D;
}
body.delar-arts .nav-toggle span {
  background: #000;
}
@media (max-width: 880px) {
  body.delar-arts .nav-links {
    background: #FED606;
  }
}

/* ============================================
   SECTION 1: HERO
   ============================================ */
.da-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.da-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FED606 0%, #FFE94D 50%, #FED606 100%);
  z-index: 0;
}

/* Hero image placeholder */
.da-hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.da-hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  mix-blend-mode: multiply;
}

.da-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.da-hero-logo {
  max-width: 380px;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

.da-hero-tagline {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #EF3D4D;
  margin-bottom: 1rem;
  transform: rotate(-2deg);
  display: inline-block;
}

.da-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
  color: #000;
}

.da-hero-title em {
  color: #182851;
  font-style: italic;
}

.da-hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  color: #1a1a1a;
}

.da-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #000;
  color: #FED606;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.da-hero-cta:hover {
  background: #EF3D4D;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(239, 61, 77, 0.5);
}

/* ============================================
   SECTION 2: ABOUT DELAR' ARTS
   ============================================ */
.da-about {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

.da-about-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.da-section-eyebrow {
  font-family: var(--font-script);
  font-size: 1.75rem;
  color: #EF3D4D;
  margin-bottom: 0.5rem;
  display: inline-block;
  transform: rotate(-2deg);
}

.da-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #000;
}

.da-section-title em {
  color: #182851;
  font-style: italic;
}

.da-about-text {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
}

.da-about-decoration {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.da-about-decoration span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.da-about-decoration span:nth-child(1) { background: #EF3D4D; }
.da-about-decoration span:nth-child(2) { background: #5B8DCA; }
.da-about-decoration span:nth-child(3) { background: #182851; }
.da-about-decoration span:nth-child(4) { background: #FF5BB5; }
.da-about-decoration span:nth-child(5) { background: #A4FF3B; }

/* ============================================
   SECTION 3: SERVICES
   ============================================ */
.da-services {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

.da-section-intro {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
}

.da-services-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 880px) {
  .da-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .da-services-grid {
    grid-template-columns: 1fr;
  }
}

.da-service-card {
  background: #000;
  color: #FED606;
  padding: 2.5rem 1.75rem;
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.da-service-card:nth-child(2) { background: #EF3D4D; color: #fff; }
.da-service-card:nth-child(3) { background: #5B8DCA; color: #fff; }
.da-service-card:nth-child(4) { background: #182851; color: #fff; }
.da-service-card:nth-child(5) { background: #FF5BB5; color: #000; }
.da-service-card:nth-child(6) { background: #000; color: #A4FF3B; }

.da-service-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.da-service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 1.75rem;
}

.da-service-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.da-service-tagline {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.da-service-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-top: 0.75rem;
  border-top: 1px solid currentColor;
  margin-top: 0.5rem;
  opacity: 0.85;
}

/* ============================================
   SECTION 4: ART ACTIVITIES
   ============================================ */
.da-activities {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

.da-activities-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 880px) {
  .da-activities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .da-activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.da-activity-card {
  background: #fff;
  padding: 1.5rem 1rem;
  border-radius: 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 130px;
}

.da-activity-card:hover {
  border-color: #000;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.da-activity-card:nth-child(odd):hover {
  border-color: #EF3D4D;
  background: #fff5f6;
}

.da-activity-card:nth-child(3n):hover {
  border-color: #5B8DCA;
  background: #f0f6ff;
}

.da-activity-emoji {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.da-activity-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
}

/* ============================================
   SECTION 5: GALLERY
   ============================================ */
.da-gallery {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

.da-gallery-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 880px) {
  .da-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.da-gallery-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.da-gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.da-gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
  color: #FED606;
  font-family: var(--font-script);
  font-size: 3rem;
  opacity: 0.7;
}

.da-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  transition: all 0.4s ease;
}

.da-gallery-card:hover .da-gallery-overlay {
  background: linear-gradient(to top, rgba(239, 61, 77, 0.95) 0%, rgba(239, 61, 77, 0.4) 60%, transparent 100%);
}

.da-gallery-label {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.da-gallery-count {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: rgba(254, 214, 6, 0.95);
  color: #000;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================
   SECTION 6: CTA
   ============================================ */
.da-cta {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

.da-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  background: #000;
  border-radius: 32px;
  padding: clamp(3rem, 7vw, 5rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.da-cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(254, 214, 6, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.da-cta-eyebrow {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: #FED606;
  margin-bottom: 0.5rem;
  display: inline-block;
  position: relative;
}

.da-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
  position: relative;
}

.da-cta-title em {
  color: #FED606;
  font-style: italic;
}

.da-cta-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.da-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.da-cta-btn-primary,
.da-cta-btn-secondary {
  padding: 1rem 2.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.da-cta-btn-primary {
  background: #FED606;
  color: #000;
}

.da-cta-btn-primary:hover {
  background: #EF3D4D;
  color: #fff;
  transform: translateY(-3px);
}

.da-cta-btn-secondary {
  background: transparent;
  color: #FED606;
  border: 2px solid #FED606;
}

.da-cta-btn-secondary:hover {
  background: #FED606;
  color: #000;
  transform: translateY(-3px);
}

/* ============================================
   FOOTER (delar-arts)
   ============================================ */
body.delar-arts .footer {
  background: #000;
  color: #FED606;
  margin-top: 3rem;
  z-index: 1;
  position: relative;
}

body.delar-arts .footer-brand-name {
  color: #FED606;
}

body.delar-arts .footer-col h4 {
  color: #FED606;
}

body.delar-arts .footer-tagline,
body.delar-arts .footer-list a,
body.delar-arts .footer-since {
  color: #fff;
}

body.delar-arts .footer-list a:hover {
  color: #FED606;
}

body.delar-arts .footer-social-icons a {
  background: rgba(254, 214, 6, 0.15);
  color: #FED606;
}

body.delar-arts .footer-social-icons a:hover {
  background: #FED606;
  color: #000;
}

body.delar-arts .footer-bottom {
  border-top: 1px solid rgba(254, 214, 6, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

body.delar-arts .footer-bottom a {
  color: #FED606;
}
