/* =========================
   GOOGLE FONTS
========================= */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Poppins:wght@300;400;600&display=swap');

/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: #e8d7a3;
  overflow-x: hidden;
}

/* ============================================================
   GOLD METAL SYSTEM (SINGLE SOURCE OF TRUTH)
============================================================ */
:root {
  --gold-highlight: #fff8cc;
  --gold-light: #f6e27a;
  --gold-main: #e8c75a;
  --gold-dark: #7a5c12;
  --gold-shadow: #3a2a00;
}

/* ============================================================
   UNIVERSAL GOLD METALLIC TITLES (NO BLUR, REAL METAL)
============================================================ */
.gold-title,
.hero h1,
.section h2,
.about-section h2,
.about-section h3 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 3px;
  position: relative;

  /* METALLIC FOIL SURFACE */
  background: linear-gradient(
    135deg,
    var(--gold-highlight) 0%,
    var(--gold-light) 18%,
    var(--gold-main) 40%,
    var(--gold-dark) 60%,
    var(--gold-main) 78%,
    var(--gold-highlight) 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* ENGRAVED DEPTH (CRITICAL) */
  text-shadow:
    0 1px 0 rgba(255,255,255,0.35), /* top rim */
    0 -1px 0 rgba(0,0,0,0.8),       /* bottom cut */
    1px 0 0 rgba(122,92,18,0.8),
    -1px 0 0 rgba(122,92,18,0.8),
    0 4px 10px rgba(0,0,0,0.9);     /* depth */
}

/* SPECULAR METAL HIGHLIGHT (STATIC, NOT BLUR) */
.gold-title::after,
.hero h1::after,
.section h2::after,
.about-section h2::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255,255,255,0.55) 50%,
    transparent 65%
  );

  opacity: 0.35;
  mix-blend-mode: overlay;
}

/* =========================
   LOGO
========================= */
.logo {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 100;
}

.logo img {
  height: 200px;
  width: auto;
  filter:
    drop-shadow(0 8px 22px rgba(0,0,0,0.95))
    drop-shadow(0 0 18px rgba(212,175,55,0.35));
}

@media (max-width: 768px) {
  .logo img {
    height: 90px;
  }
}


/* =========================
   HERO
========================= */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slider {
  display: flex;
  width: 300%;
  height: 100%;
  position: absolute;
  animation: slide 36s infinite linear;
}

.slide {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


@keyframes slide {
  0% { transform: translateX(0); }
  33% { transform: translateX(-100vw); }
  66% { transform: translateX(-200vw); }
  100% { transform: translateX(0); }
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at center, rgba(0,0,0,0.2), rgba(0,0,0,0.9));
}

.hero h1 {
  font-size: 85px;
  line-height: 1;
}

.hero p {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  letter-spacing: 5px;
  margin-top: 12px;
  color: var(--gold-main);
  text-transform: uppercase;
  opacity: 0.9;
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 120px 10%;
  text-align: center;
}

.section.dark {
  background: #0b0b0b;
  border-top: 1px solid #1a1a1a;
}

.section h2 {
  font-size: 44px;
  margin-bottom: 30px;
}

/* =========================
   CARDS
========================= */
.cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-top: 40px;
}

.card {
  background: #121212;
  padding: 30px;
  border-radius: 14px;
  width: 260px;
  border: 1px solid #2a2a2a;
}

/* =========================
   YOUTUBE GRID
========================= */
.youtube-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.youtube-grid iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  border: 1px solid #333;
  transition: 0.3s;
}

.youtube-grid iframe:hover {
  border-color: var(--gold-main);
  transform: translateY(-5px);
}

/* =========================
   ABOUT SECTION – HERITAGE
========================= */
.about-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 80px;
  text-align: left;
}

.about-section h2 {
  font-size: 48px;
  margin-bottom: 26px;
}

.about-section h3 {
  font-size: 28px;
  margin: 70px 0 24px;
}

.about-tagline {
  font-size: 18px;
  color: #e6d8a8;
  margin-bottom: 44px;
}

.about-section p {
  font-size: 17px;
  line-height: 1.95;
  color: #e0d3a3;
  margin-bottom: 24px;
  text-align: justify;
}

/* =========================
   SOCIALS
========================= */
.socials {
  margin-top: 40px;
}

.socials a {
  display: inline-block;
  margin: 10px;
  padding: 12px 26px;
  border: 1px solid var(--gold-main);
  color: var(--gold-main);
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.socials a:hover {
  background: var(--gold-main);
  color: #000;
}

/* =========================
   FOOTER
========================= */
footer {
  padding: 40px;
  text-align: center;
  font-size: 14px;
  background: #000;
  color: #777;
  letter-spacing: 2px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .about-section {
    padding: 90px 30px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .section h2 {
    font-size: 34px;
  }

  .about-section h2 {
    font-size: 36px;
  }

  .about-section h3 {
    font-size: 22px;
  }
}

/* =========================
   CREATIONS SECTION (ENHANCEMENT ONLY)
========================= */
.creations-section {
    position: relative;
  }
  
  .creations-subtitle {
    max-width: 720px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.7;
    color: #e0d3a3;
    opacity: 0.95;
  }
  
  /* Grid enhancement without breaking cards */
  .creations-cards {
    flex-wrap: wrap;
  }
  
  /* Card internal layout */
  .creations-cards .card {
    text-align: center;
    padding: 34px 28px;
    transition: transform 0.35s ease, border-color 0.35s ease;
  }
  
  /* Hover lift */
  .creations-cards .card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-main);
  }
  
  /* Icon */
  .card-icon {
    display: block;
    font-size: 28px;
    margin-bottom: 16px;
  }
  
  /* Card title */
  .creations-cards h3 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--gold-main);
    letter-spacing: 1px;
  }
  
  /* Card text */
  .creations-cards p {
    font-size: 15px;
    line-height: 1.6;
    color: #d6c89a;
  }
  

  /* =========================
   CONTACT SECTION – PROFESSIONAL
========================= */
.contact-section {
  text-align: left;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-intro {
  max-width: 680px;
  margin-bottom: 60px;
  font-size: 18px;
  line-height: 1.7;
  color: #e0d3a3;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
}

/* BLOCK */
.contact-block h3 {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--gold-main);
  letter-spacing: 2px;
}

.contact-item {
  margin-bottom: 28px;
}

.contact-item .label {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #a8924a;
  margin-bottom: 6px;
}

.contact-item .value {
  display: block;
  font-size: 16px;
  color: #e0d3a3;
  line-height: 1.6;
}

/* =========================
   SOCIAL ICONS (GOLD, MINIMAL)
========================= */
.contact-socials {
  display: flex;
  gap: 22px;
  margin-top: 70px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
  position: relative;
}

/* Icon shapes using pure CSS */
.social-icon::before {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  color: var(--gold-main);
}

/* Individual icons */
.social-icon.yt::before { content: "▶"; }
.social-icon.ig::before { content: "⌾"; }
.social-icon.fb::before { content: "f"; }

/* Hover */
.social-icon:hover {
  background: var(--gold-main);
  box-shadow: 0 0 18px rgba(212,175,55,0.45);
}

.social-icon:hover::before {
  color: #000;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .contact-intro {
    margin-bottom: 40px;
  }

  .contact-socials {
    margin-top: 50px;
  }
}

.slider,
.slide {
  pointer-events: none;
}




