/* ============================================
   HOME PAGE — Light & Colorful
   ============================================ */

body.home {
  background: #fafafa;
  color: #1a1a1a;
}

/* Decorative gradient blobs in background */
body.home::before {
  content: '';
  position: fixed;
  top: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(254, 214, 6, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

body.home::after {
  content: '';
  position: fixed;
  bottom: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(178, 34, 34, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  animation: float 10s ease-in-out infinite reverse;
}

/* NAV (home) */
body.home .nav {
  background: rgba(250, 250, 250, 0.7);
}
body.home .nav-scrolled {
  background: rgba(255, 255, 255, 0.95);
}
body.home .nav-brand,
body.home .nav-link {
  color: #1a1a1a;
}
body.home .nav-link::after {
  background: linear-gradient(90deg, #FED606, #EF3D4D);
}
body.home .nav-toggle span {
  background: #1a1a1a;
}
@media (max-width: 880px) {
  body.home .nav-links {
    background: #fafafa;
  }
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(250, 250, 250, 0.88) 0%,
    rgba(255, 245, 200, 0.82) 40%,
    rgba(255, 220, 220, 0.85) 70%,
    rgba(230, 240, 255, 0.88) 100%
  );
  backdrop-filter: blur(2px);
}

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

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: #B22222;
  margin-bottom: 1rem;
  transform: rotate(-3deg);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.hero-title .accent-yellow {
  background: linear-gradient(120deg, transparent 0%, transparent 60%, #FED606 60%, #FED606 100%);
  padding: 0 0.5rem;
}

.hero-title .accent-red {
  color: #B22222;
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  max-width: 640px;
  margin: 0 auto 0.75rem;
  color: #444;
}

.hero-since {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #1B3B6F;
  margin-bottom: 2.5rem;
  font-weight: 700;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

.btn-primary {
  background: #000;
  color: #FED606;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: #FED606;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(254, 214, 6, 0.5);
}

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

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

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #666;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 30px;
  background: #666;
  margin: 0.75rem auto 0;
}

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

.about-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

@media (max-width: 880px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.about-image {
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FED606, #FF5BB5);
  border-radius: 16px;
  z-index: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover::before {
  transform: translate(8px, 8px);
}

.about-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-eyebrow {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: #B22222;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.about-title em {
  color: #B22222;
  font-style: italic;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.25rem;
}

.about-signature {
  font-family: var(--font-script);
  font-size: 2.25rem;
  color: #1B3B6F;
  margin-top: 1.5rem;
}

/* ============================================
   SECTION 3: TWO BRANDS, ONE ARTIST
   ============================================ */
.brands {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

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

.brands-eyebrow {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: #B22222;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.brands-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
}

.brands-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 880px) {
  .brands-grid {
    grid-template-columns: 1fr;
  }
}

.brand-card {
  padding: 3.5rem 2.5rem;
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brand-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.brand-card-arts {
  background: linear-gradient(135deg, #FED606 0%, #FFE94D 100%);
  color: #000;
}

.brand-card-tattoo {
  background: linear-gradient(135deg, #000 0%, #2C2C2C 100%);
  color: #fff;
}

.brand-card-logo {
  height: 140px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-card-logo img {
  max-height: 100%;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.brand-card-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.brand-card-desc {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.brand-card-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  align-self: center;
}

.brand-card-arts .brand-card-btn {
  background: #000;
  color: #FED606;
}

.brand-card-arts .brand-card-btn:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}

.brand-card-tattoo .brand-card-btn {
  background: #D4AF37;
  color: #000;
}

.brand-card-tattoo .brand-card-btn:hover {
  background: #fff;
  transform: scale(1.05);
}

.brand-card-decoration {
  position: absolute;
  font-family: var(--font-script);
  font-size: 8rem;
  opacity: 0.08;
  top: 1rem;
  right: 1rem;
  pointer-events: none;
  line-height: 1;
}

/* ============================================
   SECTION 4: TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

.testimonials-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.testimonials-eyebrow {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: #B22222;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.testimonials-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
}

.testimonials-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 880px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: #FED606;
  margin-bottom: 0.5rem;
  font-style: italic;
}

.testimonial-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FED606, #FF5BB5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-source {
  font-size: 0.8rem;
  color: #888;
}

.testimonials-more {
  text-align: center;
}

.testimonials-more-btn {
  background: transparent;
  color: #000;
  border: 2px solid #000;
  padding: 0.85rem 2.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.testimonials-more-btn:hover {
  background: #000;
  color: #FED606;
  transform: translateY(-3px);
}

/* ============================================
   FOOTER (home)
   ============================================ */
body.home .footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
  color: #fff;
  margin-top: 4rem;
  z-index: 1;
  position: relative;
}

body.home .footer-brand-name {
  background: linear-gradient(90deg, #FED606, #FF5BB5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

body.home .footer-social-icons a {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

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

body.home .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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