:root {
  --burnt-orange: #c65a1e;
  --soft-cream: #f6f1eb;
  --dark: #1e1e1e;
  --gray: #6f6f6f;
  --accent: #e28a4a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
}

/* ===== NAV ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--soft-cream);
  display: flex;
  justify-content: space-between;
  padding: 15px 40px;
  z-index: 1000;
}

.navbar a {
  margin-left: 25px;
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
}

.navbar a:hover {
  color: var(--burnt-orange);
}

.navbar a.active {
  color: var(--burnt-orange);
  font-weight: 600;
}

.logo {
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--burnt-orange);
}

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - 80px);
  background-color: #111;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;

}

.hero span {
  color: var(--burnt-orange);
}

.btn-primary {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #c65a1e, #8b3f16); 
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  color: white; 
  text-decoration: none;
  border-radius: 30px;
}


.btn-dark:hover {
  background: linear-gradient(135deg, #c65a1e, #8b3f16); 
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 40px;
  position: relative;
  z-index: 2;
}

.light {
  background: var(--soft-cream);
}

.dark {
  background: #111;
  color: white;
}

.accent {
  background: var(--burnt-orange);
  color: white;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.center {
  text-align: center;
}

/* ===== CARD ===== */
.card {
  background: white;
  padding: 30px;
  border-radius: 16px;
}

.card ul {
  list-style: none;
}

.card li {
  margin: 12px 0;
}

/* ===== GALLERY SECTION ===== */
#gallery {
  padding: 80px 0;
  background: #111;
}

#gallery h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
  font-size: 2.5rem;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* IMAGE BOX */
.gallery-item {
  height: 300px; /* increased from 220px */
  border-radius: 16px;
  overflow: hidden;
  background: #333;
}

/* IMAGE FIT */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* HOVER EFFECT */
.gallery-item:hover img {
  transform: scale(1.05);
}

/* ===== STELLAR MOMENTS VIDEOS ===== */
.video-section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--burnt-orange);
}

.section-subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: #777;
}

/* GRID LAYOUT */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* VIDEO CARD */
/* VIDEO GRID */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* side-by-side */
  gap: 30px;
  margin-bottom: 40px;
}

/* VIDEO CARD */
.video-card {
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 16/9; /* consistent video height */
}

.video-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* Video inside card (preview) */
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card p {
  color: #fff;
  font-weight: 600;
  padding: 10px 0;
  text-align: center;
}

/* Full Video Player */
.video-full-display {
  max-width: 900px;
  margin: 50px auto 0 auto;
  text-align: center;
}

.video-full-display video {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 15px;
}

.video-full-display p {
  font-size: 18px;
  color: #c65a1e; /* Stellar accent */
  font-weight: 600;
  margin-bottom: 30px;
}

/* MOBILE STACK */
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   WHATSAPP CONTACT
========================= */

.whatsapp-contact {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 25px;
  padding: 14px 22px;
  border-radius: 50px;
  background: linear-gradient(135deg, #c65a1e, #8b3f16);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.whatsapp-icon {
  font-size: 26px;
  color: white;
}

.whatsapp-contact a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}

.whatsapp-contact:hover {
  transform: translateY(-2px);
  transition: all 0.3s ease;
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

/* ===== FOOTER ===== */
footer {
  padding: 20px;
  background: black;
  color: white;
  text-align: center;
}

/* ================= ABOUT + SIGNATURE ================= */
.about-signature {
  position: relative;   
  height: 100vh;
  background: linear-gradient(
    135deg,
    #fdf8f3 0%,
    #f3e8dd 100%
  );
  overflow: visible;
}

/* Layout */
.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  z-index: 2;
}

/* Image */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 32px;
  object-fit: cover;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

/* Text */
.about-content {
  animation: fadeUp 1s ease forwards;
}

.about-label {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--burnt-orange);
}

.about-content h2 {
  font-size: 1.7rem;
  margin: 14px 0 12px;
}

/* Accent line */
.about-line {
  width: 65px;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--accent),
    transparent
  );
  margin-bottom: 26px;
}

/* Paragraphs */
.about-intro {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 18px;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--gray);
  max-width: 460px;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== STELLAR REGISTER BUTTON ===== */
.btn-dark {
  display: inline-block;
  padding: 24px 40px;
  background: linear-gradient(135deg, #c65a1e, #8b3f16);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 40px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-top: 50px; 
}

    /* ===
       Scroll to Top Button
   === */

    .up {
      position: fixed;
      bottom: 10px;
      right: 20px;
      width: 35px;
      height: 35px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: linear-gradient(135deg, #e28a4a, #c65a1e);
      color: white;
      box-shadow: 0 10px 25px rgba(198, 90, 30, 0.35);
      font-size: 16px;
      cursor: pointer;
      z-index: 9999; 
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .up.show-up-btn {
      opacity: 1;
      pointer-events: auto;
    }

    .up:hover {
     transform: translateY(-12%);
     box-shadow: 0 14px 35px rgba(198, 90, 30, 0.55);
    }


/* ====
   RESPONSIVE DESIGN 
==== */

/* ---------- Large Tablets / Small Laptops ---------- */
@media (max-width: 1024px) {

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .about-image img {
    max-width: 500px;
    margin: 0 auto;
  }

  .about-line {
    margin: 0 auto 26px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 100vh;
    padding-top: 140px;
    position: relative;
  z-index: 1;
  }
}


/* ---------- Tablets ---------- */
@media (max-width: 768px) {

  /* NAV */
  .navbar {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }

  .navbar nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  /* HERO */
  .hero {
    padding: 120px 24px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content span {
    display: block;
  }

  /* ABOUT / SIGNATURE */
  .about-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-content {
    order: 1;
    text-align: center;
    margin-bottom: 40px;
  }

  .about-image {
    order: 2;
    width: 100%;
  }

  .about-content p {
    margin: 0 auto;
  }

  /* GALLERY */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Phones ---------- */
@media (max-width: 480px) {

  body {
    font-size: 15px;
  }

  /* NAV */
  .logo {
    font-size: 22px;
  }

  .navbar nav a {
    font-size: 14px;
  }

  /* FIX NAV OVERLAP */
  #home {
    padding-top: 180px;
    padding-bottom: 80px;
  }

  /* HERO */
  .hero {
    padding: 100px 18px;
  }

  .hero-content h1 {
    font-size: 30px;
    line-height: 1.25;
  }

  .hero-content p {
    font-size: 14.5px;
  }

  .btn-primary {
    padding: 12px 22px;
    font-size: 14px;
  }

  /* ABOUT / SIGNATURE */
  .about-content {
    padding: 0 12px;
  }

  .about-content h2 {
    font-size: 26px;
  }

  .about-content p {
    font-size: 14.5px;
  }

  .about-image {
    margin-top: 40px;
  }

  .about-image img {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    border-radius: 16px;
  }

  /* VIDEOS */
  .video-card p {
    font-size: 14px;
  }

  /* GALLERY */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  /* CONTACT */
  .contact-email {
    font-size: 14px;
  }

  footer {
    font-size: 13px;
  }
}

@media (max-width: 1024px) {
  .about-signature {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
  }

  .navbar {
    flex-direction: column;
    gap: 10px;
  }
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MAKE GALLERY IMAGES TALLER ON MOBILE/TABLET ===== */
@media (max-width: 1024px) {
  .gallery-item {
    height: 350px; /* taller for tablets */
  }
}

@media (max-width: 768px) {
  .gallery-item {
    height: 400px; /* even taller for small tablets */
  }
}

@media (max-width: 480px) {
  .gallery-item {
    height: 450px; /* tallest for phones */
  }
}

/* ===== MOVE SIGNATURE IMAGE TO FRONT ON MOBILE/TABLETS ===== */
@media (max-width: 1024px) {
  .about-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-image {
    order: -1; /* signature first */
    width: 100%;
    margin-bottom: 30px;
  }

  .about-content {
    order: 1;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .about-image {
    order: -1;
    max-width: 320px;
    margin-bottom: 30px;
  }

  .about-content {
    order: 1;
    text-align: center;
  }
}


/* ===== MEDIA QUERIES SPECIFICALLY FOR IPHONES ===== */

@supports (-webkit-touch-callout: none) {

  /* ---------- GLOBAL SCALE DOWN ---------- */
  body {
    font-size: 14.5px;
  }

  h1 {
    font-size: 30px;
    line-height: 1.25;
  }

  h2 {
    font-size: 24px;
  }

  p {
    font-size: 14.5px;
  }

  /* ---------- HERO FIX ---------- */
  .hero {
    min-height: 100svh;
    height: auto;
    padding: 140px 20px 120px; /* top & bottom space */
  }

  .btn-primary {
    padding: 11px 22px;
    font-size: 14px;
  }

  /* ---------- NAV ---------- */
  .navbar {
    padding: 16px 20px;
  }

  .navbar a {
    font-size: 14px;
  }

  .logo {
    font-size: 22px;
  }

  /* ---------- GALLERY ---------- */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-item {
    height: 260px;
    border-radius: 14px;
  }

  /* ---------- VIDEO PREVIEWS ---------- */
  .video-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .video-card {
    aspect-ratio: 16 / 9;
  }

  .video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: black;
  }

  .video-card p {
    font-size: 14px;
  }

  /* ---------- ABOUT / SIGNATURE ---------- */
  .about-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-image {
    order: -1;
    max-width: 300px;
    margin-bottom: 26px;
  }

  .about-image img {
    border-radius: 18px;
  }

  .about-content h2 {
    font-size: 24px;
  }

  .about-content p {
    font-size: 14.5px;
    line-height: 1.7;
  }

  /* ---------- BUTTONS ---------- */
  .btn-dark {
    padding: 18px 30px;
    font-size: 14px;
    margin-top: 40px;
  }

  /* ---------- FOOTER ---------- */
  footer {
    font-size: 13px;
  }
}

/* ===== FINAL UNIVERSAL MOBILE NAV FIX ===== */
@media (max-width: 768px) {

  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 14px 20px;
    background: var(--soft-cream);
    z-index: 1000;
  }

  .navbar nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .navbar a {
    font-size: 14px;
    margin: 0;
  }

  .logo {
    font-size: 22px;
  }

  .hero {
    padding-top: 170px;
  }

    .about-signature {
    padding-top: 140px;
  }

  .about-image {
    margin-top: 25px;
  }
}






























