* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Remove horizontal scroll */
html, body{
  overflow-x: hidden;
  width: 100%;
}
body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}

header.scrolled {
  background: #000;
  height: 80px;
}

.logo-box {
  flex: 1;
    height: 100%;
  display: flex;
  align-items: center;
}

.logo-box a {
  text-decoration: none;
  font-weight: 600;
  font-size: 1.5rem;
  color: white;
  letter-spacing: 2px;
}


.logo-img {
   height: 180px;
  width: auto;
  padding-top: 50px;
  display: block;
  object-fit: contain;
  
}
@media (max-width: 576px){

  .logo-img {
    height: 140px;
  }

}
.logo-box {
  display: flex;
  align-items: center;
}
nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 3px;
  transition: color 0.3s ease;
  text-transform: uppercase;
}



.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

#closeMenu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
  position: absolute;
  top: 1rem;
  right: 2rem;
}

@media (max-width: 768px) {
  nav {
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    background: #000;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 4rem 0;
    gap: 1rem;
  }

  nav.active {
    left: 0;
  }

  .menu-toggle {
    display: block;
  }

  #closeMenu.active {
    display: block;
  }
}



/* pages banner */

.about-hero {
  position: relative;
  height: 100%;    
  min-height: 320px;
          
  overflow: hidden;
  text-align: center;
}



.about-hero-img {
  width: 100%;
  height: 600px;
  object-position: center 15%;  /* Adjust focus */

  object-fit: cover;
}

/* Overlay */
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
    height: 600px;

}

/* Content */
.about-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  width: 100%;
  padding: 0 20px;
}

.about-hero-content h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.about-hero-content p {
  font-size: 16px;
}
/* mobile */
@media (max-width: 576px) {
  .about-hero {
    height: 30vh;
    min-height: 220px;
  }

  .about-hero-content h1 {
    font-size: 22px;
  }

  .about-hero-content p {
    font-size: 13px;
  }

}
/* tab */
@media (max-width: 992px) {
  .about-hero {
    height: 38vh;
  }

  .about-hero-content h1 {
    font-size: 30px;
  }
}

/* FOOTER */
/* ===============================
   FOOTER – CROWN BEYOND LIMITS
================================= */

.footer {
  background: #000;
  color: #ccc;
  padding: 90px 0 30px;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

/* Container */
.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* Columns */
.footer-col {
  flex: 1;
  min-width: 260px;
}

/* Push Quick Links & Connect Down */
.footer-col:nth-child(2),
.footer-col:nth-child(3) {
  padding-top: 90px;
  padding-left: 40px;
}

/* ===============================
   LOGO DESIGN
================================= */

.footer-logo {
  width: 140px;
  margin-bottom: 25px;
  transition: 0.4s ease;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.footer-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.7));
}

/* ===============================
   HEADINGS
================================= */

.footer-col h4 {
  color: #d4af37;
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Paragraph */
.footer-col p {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 15px;
  color: #bbb;
}

/* ===============================
   LINKS
================================= */

.footer-col a {
  display: block;
  color: #bbb;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-col a:hover {
  color: #d4af37;
  transform: translateX(6px);
}

/* ===============================
   SOCIAL ICONS
================================= */

.socials {
  margin-top: 20px;
}

.socials a {
  display: inline-block;
  margin-right: 15px;
  font-size: 18px;
  color: #bbb;
  transition: 0.3s ease;
}

.socials a:hover {
  color: #d4af37;
  transform: scale(1.2);
}

/* ===============================
   FOOTER BOTTOM
================================= */

.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  margin-top: 60px;
  padding-top: 25px;
  font-size: 13px;
  color: #777;
}

/* Designer Credit */
.design-credit {
  margin-left: 5px;
  color: #999;
}

.design-credit img {
  width: 30px;
  vertical-align: middle;
  margin-left: 8px;
  transition: 0.3s ease;
  
}



/* ===============================
   RESPONSIVE DESIGN
================================= */
/* =====================================
   MOBILE & TABLET FOOTER
===================================== */

@media (max-width: 992px) {

  body{
    overflow-x: hidden;
  }

  .footer {
    padding: 45px 15px 20px;
  }

  /* GRID */
  .footer-container {
    width: 100%;
    max-width: 100%;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .footer-col {
    min-width: unset;
    text-align: left; /* ✅ LEFT ALIGN */
  }

  /* =============================
     ORDER
  ============================== */

  /* BRAND TOP FULL WIDTH */
  .footer-brand {
    grid-column: span 2;
    order: 1;
    text-align: left; /* ✅ changed */
  }

  .footer-col:nth-child(2){
    order: 2;
  }

  .footer-col:nth-child(3){
    order: 3;
  }

  /* REMOVE DESKTOP SPACE */
  .footer-col:nth-child(2),
  .footer-col:nth-child(3){
    padding: 0;
  }

  /* =============================
     SIZE CONTROL
  ============================== */

  .footer-logo{
    width: 110px;
    margin-bottom: 15px; /* ✅ no auto center */
  }

  .footer-col h4{
    font-size: 15px;
    margin-bottom: 10px;
  }

  .footer-col p,
  .footer-col a{
    font-size: 13px;
    margin-bottom: 6px;
    line-height: 1.6;
  }

  .socials{
    margin-top: 10px;
  }

  .socials a{
    margin-right: 10px;
  }

  /* FOOTER BOTTOM */
  .footer-bottom{
    margin-top: 30px;
    padding-top: 15px;
    font-size: 10px;
    text-align: center;
  }

  .design-credit img{
    width: 24px;
  }
}


/* SMALL MOBILE */
@media (max-width:576px){

  .footer-container{
    grid-template-columns: 1fr 1fr;
    gap:18px;
  }

  .footer{
    padding:40px 12px 15px;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  /* section {
    padding: 3rem 1.5rem;
  } */

  .section-title {
    font-size: 1.8rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  header {
    padding: 1rem 1.5rem;
  }

  nav {
    gap: 1rem;
  }
}