/* THEME COLORS */
:root{
  --cream:#FFF7E8;
  --gold:#D4A056;
  --gold-soft:#E5BE7F;
  --text:#4A3C31;
  --muted:#7A6A5A;
  --white:#FFFFFF;
}

/* RESET */
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:Inter,Arial;background:var(--cream);color:var(--text);}

/* HEADER – FINAL FIX */
header{
  display:flex;
  justify-content:space-between; 
  align-items:center;
  padding:18px 32px;
  background:var(--white);
  border-bottom:1px solid #f0e4cc;
  position:sticky;
  top:0;
  z-index:50;
}

/* LOGO + BRAND NAME */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* NAVIGATION */
nav {
  display:flex;
  align-items:center;
  gap: 32px;
  margin-left:auto; /* pushes navbar to the right */
}

nav a{
  color:var(--text);
  text-decoration:none;
  font-weight:600;
  font-size:16px;
  transition:0.3s;
}

nav a:hover,
nav a.active{
  color:var(--gold);
}

/* GENERAL */
.container{max-width:1150px;margin:auto;padding:20px}
h2{text-align:center;font-size:28px;margin-bottom:15px;color:var(--gold);}

/* CARD */
.card{
  background:var(--white);
  padding:22px;
  border-radius:16px;
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
  border:1px solid #f5e6c8;
  transition:transform 0.4s ease, box-shadow 0.4s ease;
}
.card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 26px rgba(0,0,0,0.1);
}

/* HERO NEW */
.hero-new{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:var(--white);
  padding:40px;
  border-radius:20px;
  margin-bottom:30px;
  gap:30px;
}

.hero-text h1{
  font-size:42px;
  margin-bottom:12px;
  color:var(--gold);
}

.hero-text p{
  max-width:520px;
  font-size:17px;
  color:var(--muted);
  margin-bottom:20px;
}

.hero-img img{
  width:340px;
  border-radius:20px;
  object-fit:cover;
  box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

/* BUTTONS */
.btn{
  padding:12px 20px;
  background:var(--gold);
  color:var(--white);
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  font-size:15px;
  transition:0.3s;
  display:inline-block;
}
.btn:hover{
  background:#b6843c;
  transform:scale(1.05);
}

.btn-outline{
  border:2px solid var(--gold);
  color:var(--gold);
  padding:10px 18px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  font-size:15px;
  transition:0.3s;
}
.btn-outline:hover{
  background:var(--gold);
  color:white;
  transform:scale(1.05);
}

/* WHY CHOOSE US */
.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:22px;
  margin-top:15px;
}
.why h3{color:var(--gold);margin-bottom:6px}

/* ORDER FORM */
input,textarea,select{
  width:100%;
  padding:14px;
  margin-bottom:18px;
  border-radius:10px;
  border:1px solid #e5d8bc;
  background:#FFFDF7;
  font-size:15px;
  color:var(--text);
}
textarea{min-height:120px;}

/* FOOTER */
footer{
  text-align:center;
  padding:24px;
  margin-top:40px;
  color:var(--muted);
  font-size:14px;
}

/* STRONG SCROLL ANIMATIONS */
[data-animate]{
  opacity:0;
  transform:translateY(40px);
  transition:all 0.8s ease;
}

[data-animate].active{
  opacity:1;
  transform:translateY(0);
}

.slide-left{transform:translateX(-80px);}
.slide-right{transform:translateX(80px);}
.zoom-in{transform:scale(0.7);}

.active.slide-left,
.active.slide-right{
  transform:translateX(0);
}

.active.zoom-in{
  transform:scale(1);
}

/* POSTERS — uniform cards, centered layout, hover effect */
.posters{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px;
  margin-top:15px;
  justify-items:center;
  align-items:flex-start;
}

.poster-card, .poster{
  width:100%;
  max-width:320px;
  background:var(--white);
  border-radius:14px;
  overflow:hidden;
  border:1px solid #f5e6c8;
  box-shadow:0 8px 22px rgba(0,0,0,0.06);
  transition:transform 0.35s ease, box-shadow 0.35s ease;
  text-align:left;
}

.poster-card img,
.poster img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
  border-radius:12px 12px 0 0;
}

.poster-card .meta,
.poster div.meta{
  padding:14px;
}

.poster-card h4,
.poster h4{
  margin:0 0 6px 0;
  font-size:18px;
  color:var(--gold);
}

.poster-card p,
.poster p{
  margin:0;
  font-size:14px;
  color:var(--muted);
}

.poster-card:hover,
.poster:hover{
  transform:translateY(-8px) scale(1.01);
  box-shadow:0 18px 36px rgba(0,0,0,0.12);
}

/* responsive poster tweak */
@media (max-width:500px){
  .poster-card img,
  .poster img{
    height:180px;
  }
}

/* RESPONSIVE HEADER */
@media (max-width: 600px) {
  .logo img {
    height: 48px;
  }
  .brand-text {
    font-size: 18px;
  }
  nav {
    gap: 18px;
  }
}

/* -----------------------------------
   MOBILE RESPONSIVE FIXES – FINAL
   ----------------------------------- */

/* For tablets & medium screens */
@media (max-width: 900px) {

  /* Hero section becomes vertical */
  .hero-new {
    flex-direction: column;
    text-align: center;
    padding: 28px;
    gap: 20px;
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 16px;
    margin: auto;
  }

  .hero-img img {
    width: 85%;
    max-width: 320px;
  }

  /* Cards spacing */
  .card {
    padding: 18px;
  }

  /* Navbar spacing */
  nav {
    gap: 18px;
  }
}

/* -------- SMALL MOBILE PHONES (Under 600px) -------- */
@media (max-width: 600px) {

  /* HEADER */
  header {
    flex-wrap: wrap;
    padding: 14px 20px;
    justify-content: center;
    gap: 12px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  nav a {
    font-size: 14px;
  }

  /* LOGO */
  .logo img {
    height: 44px;
  }
  .brand-text {
    font-size: 16px;
  }

  /* HERO */
  .hero-new {
    padding: 20px;
    margin-top: 10px;
  }

  .hero-text h1 {
    font-size: 26px;
  }

  .hero-text p {
    font-size: 15px;
    padding: 0 5px;
  }

  .hero-img img {
    width: 92%;
    max-width: 280px;
    border-radius: 14px;
  }

  /* BUTTONS */
  .btn,
  .btn-outline {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* GRID → 1 Column */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* POSTERS */
  .poster-card img,
  .poster img {
    height: 170px;
  }

  /* CONTAINER padding */
  .container {
    padding: 15px;
  }

  /* Footer */
  footer {
    font-size: 13px;
    padding: 16px;
  }
}

/* MOBILE FIX PACK — FINAL CLEAN VERSION */
@media (max-width: 600px) {

  /* 🔥 1. FIX NAVBAR OVERLAP ISSUE */
  header {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 14px 10px;
    text-align: center;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
  }

  nav a {
    font-size: 14px;
    margin: 0 6px;
  }

  /* 🔥 2. FIX HERO SECTION SPACING */
  .hero-new {
    flex-direction: column;
    text-align: center;
    padding: 20px 12px;
    gap: 20px;
  }

  .hero-text h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 15px;
    padding: 0 10px;
  }

  /* 🔥 3. HERO IMAGE FIX */
  .hero-img img {
    width: 100%;
    max-width: 260px;
    border-radius: 14px;
    margin-top: 10px;
  }

  /* 🔥 4. FIX BUTTON BREAKING */
  .hero-new .btn,
  .hero-new .btn-outline {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 14px;
  }

  /* 🔥 5. CENTER ALL MAIN CONTENT */
  .container {
    padding: 15px;
  }

  /* 🔥 6. MAKE WHY-GRID SINGLE COLUMN */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* 🔥 7. CARD RESPONSIVE FIX */
  .card {
    padding: 18px;
  }
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-section img {
  height: 60px;
}

.page-title {
  max-width: 700px;         /* Match card width */
  margin: 40px auto 20px;   /* Center it horizontally */
  text-align: center;       /* Keep the title centered */
}

.page-title h1 {
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1.2px;
}

.page-title {
  max-width: 700px;
  margin: 60px auto 35px;  /* Increased spacing */
  text-align: center;
}

.page-title h1 {
  font-size: 20px;        /* Slightly smaller */
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1.2px;
  margin-bottom: 10px;     /* Space below title */
}

.card {
  margin-top: 20px;        /* Add breathing space below title */
  padding: 30px;           /* More room inside card */
}

.card p {
  line-height: 1.8;
  font-size: 17px;
}

/* Better spacing between labels and inputs */
form label {
  display: block;
  margin-bottom: 6px;
  margin-top: 18px;
  font-weight: 600;
  color: var(--text)
}

/* Premium input spacing */
input, textarea, select {
  padding: 14px 16px;
  font-size: 16px;
  border-radius: 10px;
}

/* Remove blue outline + gold focus */
input:focus,
textarea:focus,
select:focus {
  outline: none !important;
  border: 2px solid var(--gold) !important;
  box-shadow: 0 0 6px rgba(197, 139, 43, 0.35);
  transition: 0.2s ease-in-out;
}

/* Reduce blank space on contact page */
.page-title {
  margin-top: 5px !important;
  text-align: center;
  margin-bottom: 15px !important;
}

.page-title .underline {
  width: 80px;
  height: 4px;
  background: var(--gold);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Better card spacing */
.card {
  border-radius: 16px;
  padding: 25px;
}

/* Form spacing premium */
form label {
  display: block;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 6px;
}

input, textarea {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 16px;
}

/* Gold focus */
input:focus, textarea:focus {
  outline: none;
  border: 2px solid var(--gold);
  box-shadow: 0 0 6px rgba(197, 139, 43, 0.35);
}

.about-promise-title {
    margin-top: 30px;   /* adjust spacing as you like */
}
