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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: #f8f4e8;
  color: #1f2430;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: 0.3s ease;
}

img {
  width: 100%;
  display: block;
}

/* ========== NAVBAR ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #f8f4e8;
  border-bottom: 1px solid rgba(31, 36, 48, 0.12);
  padding: 16px 0;
}

.navbar .container {
  max-width: 1240px;
  position: relative;
}

.navbar-brand {
  color: #1f2430 !important;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 3px;
  white-space: nowrap;
}

.navbar-toggler {
  border: 2px solid #1f2430;
  border-radius: 12px;
  padding: 9px 11px;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

/* Desktop nav */
@media (min-width: 1200px) {
  .navbar-expand-lg .navbar-toggler {
    display: none !important;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
  }
  .navbar-nav {
    display: flex;
    align-items: center;
    gap: 24px !important;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .navbar-nav .nav-link {
    color: #1f2430 !important;
    font-size: 12px;
    letter-spacing: 1.5px;
    white-space: nowrap;
  }
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    color: #b9834b !important;
  }
}

/* Tablet/Mobile nav */
@media (max-width: 1199px) {
  .navbar-expand-lg .navbar-toggler {
    display: block !important;
    margin-left: auto;
  }
  .navbar-expand-lg .navbar-collapse {
    display: none !important;
  }
  .navbar-expand-lg .navbar-collapse.show {
    display: block !important;
  }
  .navbar-collapse {
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    padding: 22px;
    border-radius: 24px;
    background: #f8f4e8;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
  }
  .navbar-nav {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  .navbar-nav .nav-item,
  .navbar-nav .nav-link,
  .navbar-nav .btn-main {
    width: 100%;
  }
}

/* ========== BUTTONS ========== */
.btn-main,
.btn-outline-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.35s ease;
  cursor: pointer;
}

.btn-main {
  border: none;
  color: #fff !important;
  background: linear-gradient(135deg, #1f2430 0%, #4d3529 45%, #b9834b 100%);
  box-shadow: 0 14px 30px rgba(31, 36, 48, 0.25);
}
.btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(31, 36, 48, 0.35);
}

.btn-outline-main {
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}
.btn-outline-main:hover {
  background: linear-gradient(135deg, #b9834b 0%, #1f2430 100%);
  border-color: transparent;
  transform: translateY(-3px);
}

/* ========== HERO ========== */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px;
  color: white;
  overflow: hidden;
}

.hero-content {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.hero h1 {
  font-size: clamp(42px, 8vw, 92px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 26px;
  font-weight: 900;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ========== SECTIONS ========== */
.section-padding {
  padding: 90px 0;
}

.section-title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 50px;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 900;
  color: #1f2430;
}

/* ========== ABOUT ========== */
.about-section {
  padding: 80px 20px;
  background: #f8f4e8;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
}

.about-label {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  color: #777;
  margin-bottom: 24px;
}

.about-heading {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.05;
  color: #1f2430;
}

.about-text {
  color: #555;
  line-height: 2.1;
  font-size: 18px;
  max-width: 760px;
}

/* ========== BRAND LOGOS ========== */
.brands-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
}

.brand-logo-item {
  min-height: 150px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 36, 48, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(31, 36, 48, 0.16);
  border-color: #b9834b;
}
.brand-logo-item img {
  max-width: 130px;
  max-height: 90px;
  object-fit: contain;
}

/* ========== ARTICLE FEATURE ========== */
.article-feature-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px;
  border-radius: 30px;
  background: #f5efe4;
  text-align: center;
}
.article-feature-box h2 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05;
  margin-bottom: 24px;
}
.article-feature-box p {
  max-width: 680px;
  margin: 0 auto 32px;
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

/* ========== PERSONAL PROJECTS / GALLERY ========== */
.personal-preview-grid,
.personal-projects-gallery,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.personal-preview-grid img {
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 24px;
}
.gallery-item img {
  height: 100%;
  object-fit: cover;
}

/* ========== SERVICES ========== */
.service-box {
  border-top: 1px solid #ccc;
  padding: 32px 24px;
  height: 100%;
}
.service-box:hover {
  border-top-color: #b9834b;
  border-top-width: 3px;
}
.service-box h4 {
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 19px;
}
.service-box p {
  color: #666;
  line-height: 1.7;
}

/* ========== CONSULTATION ========== */
.consultation-box {
  background: #fffaf0;
  padding: 60px 30px;
  border: 1px solid rgba(31, 36, 48, 0.14);
  text-align: center;
  border-radius: 26px;
}

.contact-email {
  border: 1px solid #252943;
  color: #252943 !important;
  background: transparent;
}
.contact-email:hover {
  background: linear-gradient(135deg, #1f2430, #b9834b);
  color: white !important;
  border-color: transparent;
}

/* ========== BRANDS PAGE ========== */
.brands-hero {
  background:
    linear-gradient(
      rgba(31, 36, 48, 0.62),
      rgba(31, 36, 48, 0.88)
    ),
    url("images/brand-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 150px 24px;
  text-align: center;
  margin-top: 80px;
  overflow: hidden;
}
.brands-hero h1 {
  font-size: clamp(42px, 8vw, 76px);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 900;
  line-height: 1.05;
  max-width: 900px;
  margin: 0 auto;
}
.brands-hero p {
  max-width: 760px;
  margin: 22px auto 0;
  line-height: 1.8;
}

.brand-detail-section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(31, 36, 48, 0.08);
}
.brand-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.brand-detail-layout.reverse {
  direction: rtl;
}
.brand-detail-layout.reverse > * {
  direction: ltr;
}
.brand-detail-image {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(31, 36, 48, 0.1);
}
.brand-detail-image img {
  height: 400px;
  object-fit: cover;
}
.brand-detail-content h2 {
  font-size: clamp(32px, 5vw, 48px);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  font-weight: 900;
}
.brand-category {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  color: #b9834b;
  font-weight: 850;
  margin-bottom: 20px;
}
.brand-description {
  color: #555;
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 20px;
}
.brand-services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.service-tag {
  background: #fffaf0;
  color: #252943;
  padding: 10px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(37, 41, 67, 0.2);
}

.brand-image-gallery,
.vuse-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.brand-image-gallery img,
.vuse-gallery img {
  border-radius: 20px;
  object-fit: cover;
}

/* ========== FOOTER ========== */
footer {
  position: relative;
  background-image: url("https://i.imgur.com/pCZHQ6r.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 90px 0 40px;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(31, 36, 48, 0.55) 0%,
    rgba(31, 36, 48, 0.75) 100%
  );
  z-index: 0;
}

footer > * {
  position: relative;
  z-index: 1;
}

footer a {
  color: #fff;
  transition: color 0.25s ease;
}
footer a:hover {
  color: #b9834b;
}

.footer-credit {
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  margin-top: 22px;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: bold;
  z-index: 999;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  font-size: 14px;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  color: white;
}

/* ========== TABLET (≤991px) ========== */
@media (max-width: 991px) {
  .about-layout,
  .brand-detail-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-section {
    padding: 60px 30px;
  }

  .brands-logos-grid,
  .personal-preview-grid,
  .personal-projects-gallery,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .personal-preview-grid img {
    height: 420px;
  }

  .section-padding {
    padding: 70px 0;
  }
}

/* ========== MOBILE (≤576px) ========== */
/* All phone overrides are merged into one clean block */
@media (max-width: 576px) {
  html {
    scroll-padding-top: 110px;
  }

  .navbar {
    padding: 22px 0;
  }
  .navbar-brand {
    font-size: 13px;
    letter-spacing: 1.4px;
  }

  /* Hero */
  .hero {
    min-height: calc(100vh - 90px);
    padding: 80px 18px 120px;
    align-items: center;
  }
  .hero-kicker {
    max-width: 320px;
    margin: 0 auto 18px;
    font-size: 10px;
    line-height: 1.8;
    letter-spacing: 3px;
  }
  .hero h1 {
    font-size: clamp(39px, 11.2vw, 52px);
    line-height: 0.96;
    letter-spacing: 1px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }
  .btn-main,
  .btn-outline-main {
    width: 100%;
    min-height: 54px;
    padding: 14px 22px;
  }

  /* Sections */
  .section-padding {
    padding: 58px 20px;
  }
  .section-title {
    font-size: 30px;
    letter-spacing: 3px;
    margin-bottom: 34px;
  }

  /* About */
  .about-section {
    padding: 58px 20px;
  }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 100%;
  }
  .about-label {
    font-size: 12px;
    letter-spacing: 3px;
    line-height: 1.6;
  }
  .about-heading {
    font-size: 42px;
    line-height: 1.05;
    letter-spacing: 3px;
    margin-bottom: 20px;
  }
  .about-text {
    font-size: 16px;
    line-height: 1.9;
    max-width: 100%;
  }

  /* Article feature */
  .article-feature-box {
    padding: 40px 22px;
    margin: 0 auto;
  }
  .article-feature-box h2 {
    font-size: clamp(24px, 6vw, 40px);
  }
  .article-feature-box p {
    font-size: 15px;
  }

  /* Brand logos */
  .brands-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 30px 0;
  }
  .brand-logo-item {
    min-height: 145px;
    padding: 22px;
    border-radius: 24px;
  }
  .brand-logo-item img {
    max-width: 105px;
    max-height: 78px;
  }

  /* Galleries */
  .personal-preview-grid,
  .personal-projects-gallery,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .personal-preview-grid img {
    height: auto;
    min-height: 300px;
  }

  /* Brands hero */
  .brands-hero {
    width: 100%;
    padding: 90px 24px;
    margin-top: 0;
    overflow: hidden;
    background-position: center;
  }
  .brands-hero h1 {
    font-size: 30px !important;
    line-height: 1.15;
    letter-spacing: 1.5px;
    max-width: 300px;
    margin: 0 auto;
  }
  .brands-hero p {
    font-size: 15px;
    line-height: 1.7;
    max-width: 300px;
    margin: 18px auto 0;
  }

  /* Brand detail */
  .brand-detail-section {
    padding: 64px 20px;
  }
  .brand-detail-layout {
    gap: 30px;
  }
  .brand-detail-content h2 {
    font-size: 32px;
    letter-spacing: 2px;
  }
  .brand-description {
    font-size: 15.5px;
    line-height: 1.8;
  }
  .brand-detail-image img {
    height: 280px;
  }

  /* Services */
  .service-box {
    padding: 28px 18px;
  }
  .service-box h4 {
    font-size: 16px;
  }
  .service-box p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Consultation */
  .consultation-box {
    padding: 40px 24px;
  }
  .consultation-box h2 {
    font-size: 28px;
  }

  /* Footer – mobile only */
  footer {
    padding: 80px 24px 40px;
    background: #11151f;                    /* fallback colour */
  }
  footer::before {
    /* replaces the desktop gradient with the logo/image */
    background: none;
    background-image: url("https://i.imgur.com/pCZHQ6r.jpg");
    background-repeat: no-repeat;
    background-position: center 40px;
    background-size: 520px;
    opacity: 0.28;
  }
  footer .container {
    position: relative;
    z-index: 2;
    padding-left: 0;
    padding-right: 0;
  }
  footer h5 {
    font-size: 16px;
    margin-bottom: 16px;
  }
  footer p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
  }

  /* WhatsApp */
  .whatsapp-float {
    right: 18px;
    bottom: 90px;               /* final chosen position */
    padding: 12px 22px;
    font-size: 14px;
  }
}

/* ========== EXTRA SMALL (≤370px) ========== */
@media (max-width: 370px) {
  .hero-kicker {
    font-size: 9px;
  }
  .hero h1 {
    font-size: clamp(32px, 9vw, 44px);
  }
  .btn-main,
  .btn-outline-main {
    padding: 12px 18px;
    font-size: 12px;
  }
  .about-heading {
    font-size: 36px;
  }
  .about-text {
    font-size: 15px;
    line-height: 1.8;
  }
  .navbar-brand {
    font-size: 11px;
  }
}
.projects-hero .container {
  /* Centering everything */
  text-align: center;
  max-width: 650px;
  margin: 40px auto; 
  padding: 2.5rem;
  
  /* The "Blur Black Ground" effect */
  background: rgba(0, 0, 0, 0.65); /* Dark transparent background */
  backdrop-filter: blur(12px);    /* Blurs the page behind it */
  -webkit-backdrop-filter: blur(12px); 
  
  /* Making it pop */
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Changing the text colors so they stand out clearly against the new dark background */
.projects-hero .projects-label {
  color: #cccccc !important;
}

.projects-hero h1 {
  color: #ffffff !important;
  margin: 10px 0;
}

.projects-hero .projects-description {
  color: #e0e0e0 !important;
}