/* =====================
   CINZEL – Standard
===================== */

@font-face {
  font-family: "Cinzel";
  src: url("../fonts/cinzel/Cinzel-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cinzel";
  src: url("../fonts/cinzel/Cinzel-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cinzel";
  src: url("../fonts/cinzel/Cinzel-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JustSans";
  src: url("./fonts/just-sans.regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* =======================
    ROOT – LUXURY COLORS
    ====================== */
:root {
  --bg-main: #f6f6f6;
  --bg-white: #ffffff;
  --bg-dark: #0f0f0f;

  --text-primary: #1c1c1c;
  --text-muted: #6e6e6e;

  --border-light: rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {

  font-family: "JUST Sans", sans-serif;
  color: var(--text-primary);
  overflow-x: hidden;
}

/* =======ANIMATIONS ============= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes luxuryReveal {
  0% {
    opacity: 0;
    transform: scale(1.1) translateY(20px);
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

@keyframes elegantSlide {
  0% {
    opacity: 0;
    transform: translateX(60px);
    filter: brightness(0.7);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
    filter: brightness(1);
  }
}

@keyframes wordReveal {
  0% {
    opacity: 0;
    transform: translateY(15px);
    filter: blur(3px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.brand img {
  width: 80%;
}

.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.heading-word {
  display: inline-block;
  opacity: 0;
  animation: wordReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* =======================
    HERO SECTION
    ====================== */
.hero {
  min-height: 85vh;
  padding: 60px 80px;
  background-image: url('../images/main-banner.png');
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Header */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  opacity: 0;
}

.header.show {
  animation: fadeInDown 1s ease forwards;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: scale(1.05);
}

.hero-content {
  max-width: 600px;
  margin: 160px auto 0;
  text-align: center;
}

.hero-content h1 {
  font-family: "Cinzel", serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-content p {
  margin-bottom: 30px;
  font-family: "JUST Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000000;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 1px;
  text-align: center;
  text-transform: capitalize;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

.btn {
  font-family: "JUST Sans", sans-serif;
  padding: 14px 36px;
  border-radius: 30px;
  border: 1px solid #000;
  background: #000;
  color: #ffffff;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .4s ease;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.9s forwards;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #ffffff;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  color: #000000;
  border-color: var(--bg-dark);
}

/* Model Image - Simple Fade */
.model {
  position: absolute;
  right: 4px;
  bottom: 20px;
  height: 80vh;
  width: auto;
  overflow: hidden;
  opacity: 0;
  transition: opacity 2s ease;
}

.model.fade-in {
  opacity: 1;
}

.model img {
  height: 100%;
  width: auto;
  object-fit: cover;
}

/* =======================
    SERVICES
    ====================== */
.services {
  text-align: center;
  padding: 100px 20px;
  width: 80%;
  margin: 0 auto;
}

.services h2 {
  font-family: "Cinzel", serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.15;
  text-align: center;
  padding-bottom: 8px;
}

.service-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 40px;
}

.service {
  padding: 12px 28px;
  border-radius: 30px;
  border: 1px solid var(--border-light);
  font-family: "JUST Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 1px;
  text-align: center;
  vertical-align: middle;
  text-transform: capitalize;
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--bg-dark);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.service:hover::before {
  width: 300px;
  height: 300px;
}

.service:hover {
  color: #fff;
  border: 1px solid #4B4A4B;
  transform: translateY(-2px);
}

/* =======================
    CTA / BANNER
    ====================== */
.cta-section {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  margin-bottom: 5rem;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/CTA-section-bg.png');
  background-size: cover;
  background-position: center;
  will-change: transform, opacity;

  animation: ctaFadeZoom 8s ease-in-out infinite;
}

@keyframes ctaFadeZoom {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.06);
  }

  100% {
    opacity: 0.5;
    transform: scale(1);
  }
}



.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 49%);
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: 140px 20px;
  text-align: center;
  color: #fff;
}

.cta-content h3 {
  font-family: "Cinzel", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: 0px;
  text-align: center;
  text-transform: uppercase;
  width: 75%;
  margin: 0 auto;
  padding-bottom: 25px;
}

.cta-content p {
  opacity: 0.8;
  margin-bottom: 30px;
}

.cta-content .btn {
  background: #ffffff;
  color: #000000;
}

.cta-content .btn::before {
  background: #000000;
}

.cta-content .btn:hover {
  color: #ffffff;
  border: 1px solid #ffffff;
}

/* ====== FOOTER ===== */
.footer {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  background: url("../images/footer-img.webp") center/cover no-repeat;
  color: #fff;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: #89898900;
  z-index: 1;
}

.footer .brand,
.footer p,
.footer .socials {
  position: relative;
  z-index: 2;
}

.footer .brand {
  margin-bottom: 35px;
  font-size: 22px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.footer p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.socials {
  margin-top: 20px;
}

.socials a {
  margin: 0 10px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.socials a:hover {
  transform: translateY(-2px);
}

.socials img {
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.socials a:hover img {
  opacity: 1;
}

a.footer-mail {
  text-decoration: none;
  color: #000000;
  font-family: "JUST Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
}

footer .brand img {
  width: auto;
}

/* ===RESPONSIVE========= */
@media (max-width: 1400px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .services h2 {
    font-size: 33px;
  }

  .services {
    padding: 64px 20px;
  }

  .btn {
    font-size: 14px;
  }

  .cta-content h3 {
    font-size: 33px;
    line-height: 1.2;
    text-transform: uppercase;
    width: 45%;
  }

  .cta-content {
    padding: 100px 20px;
  }

  .service-list {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 30px;
    padding-bottom: 10px;
  }

  .cta-content h3 {
    font-size: 26px;
  }

  .service {
    width: 100%;
  }

  .services {
    text-align: center;
    padding: 50px 20px;
    width: 98%;
  }

  .model {
    position: static;
    left: 50%;
    transform: none;
    height: 40vh;
    bottom: unset;
    width: 100%;
  }


  .hero {
    min-height: 100vh;
    padding: 87px 30px;
    position: relative;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    min-height: max-content;
  }

  .brand img {
    width: 100%;
  }

  .header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
  }

  .brand {
    width: 40%;
    margin: 0 auto;
  }

  footer .brand img {
    width: 100%;
  }

  .footer .brand {
    width: 70%;
  }

  .footer {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    background: url(../images/footer-img-mob.png) center / cover no-repeat;
    min-height: 55vh;
  }

  .cta-section {
    margin: 15px;
    margin-bottom: 5rem;
  }

  .model img {
    height: 100%;
    width: auto;
  }

  .hero-content {
    margin: 0;
    order: 2;
    padding-top: 40px;
  }

}


.hero {
  position: relative;
  overflow: hidden;
}

.white-shade {
  position: absolute;
  top: 0;
  left: -20%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, #dfd9d936 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  animation: sweep 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes sweep {
  0% {
    left: -20%;
    transform: skewX(-20deg);
  }

  50% {
    left: 60%;
    transform: skewX(-20deg) scaleX(1.2);
  }

  100% {
    left: 100%;
    transform: skewX(-20deg);
  }
}

/* Content above shade */
.hero-content,
.model {
  z-index: 2;
}