/* ?============= REQUIRE.CSS =============?*/



/* *TABLE OF CONTENT*/

/************ Custom properties..............Global variable */
/************ Reset..........................Removed browser default style */
/************ Typography.....................Typography style */
/************ Reused.........................Reused classes */
/************ Preloader......................Preload style */
/************ Header.........................Header style */
/************ Footer.........................Footer style */
/************ Media queries..................Responsive for all devices */



/* ?============= CUSTOM PROPERTY =============?*/

:root {

  /* ?===== COLORS =====?*/

  --maximum-pink-light_a10: #FF55861a;
  --maximum-pink-light_a40: #FF558666;
  --maximum-pink-light: #FF5586;
  /* *UP --maximum-yellow-red: #fec548; */
  --pink-dark_a20: #F2005633;
  /* *UP --orange-red_a20: #ff621a33; */
  --eerie-black: #22262a;
  --pink-light: #F20056;
  /* *UP --orange-red: #ff621a; */
  --davys-gray: #545454;
  --light-gray: #cccccc;
  --white_a80: #ffffffcc;
  --white_a75: #ffffffbf;
  --white_a10: #ffffff1a;
  --jet_a10: #3838381a;
  --black: #000000;
  --white: #ffffff;
  --jet: #383838;

  /* ?===== TYPOGRAPHY =====?*/

  --ff-quicksand: 'Quicksand', sans-serif;

  --fs-45: 4.5rem;
  --fs-38: 3.8rem;
  --fs-32: 3.2rem;
  --fs-27: 2.7rem;
  --fs-26: 2.6rem;
  --fs-22: 2.2rem;
  --fs-20: 2rem;
  --fs-18: 1.8rem;
  --fs-17: 1.7rem;
  --fs-14: 1.4rem;
  --fs-12: 1.2rem;

  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;

  /* ?===== SPACING =====?*/

  --section-padding: 60px;

  /* ?===== SHADOW =====?*/

  --shadow: 0 2px 2px #38383814;

  /* ?===== BORDER RADIUS =====?*/

  --radius-50: 50px;
  --radius-pill: 100px;
  --radius-circle: 50%;

  /* ?===== TRANSITION =====?*/

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-out: cubic-bezier(0.05, 0.83, 0.52, 0.97);
  
}





/* ?============= RESET =============?*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a,
img,
span,
label,
button,
ion-icon {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
}

input,
button,
textarea {
  background: none;
  border: none;
  font: inherit;
}

button {
  cursor: pointer;
}

input,
textarea {
  width: 100%;
}

ion-icon {
  pointer-events: none;
}

address {
  font-style: normal;
}

html {
  font-family: var(--ff-quicksand);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--davys-gray);
  font-size: 1.6rem;
  line-height: 1.5;
  overflow: hidden;
}

body.loaded {
  overflow: visible;
}

:focus-visible {
  outline-offset: 4px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: hsl(0, 0%, 98%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(0, 0%, 80%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(0, 0%, 70%);
}




/* ?============= TYPOGRAPHY =============?*/

.headline-lg {
  font-size: var(--fs-45);
}

.headline-md {
  font-size: var(--fs-38);
}

.headline-sm {
  font-size: var(--fs-32);
}

.title-lg {
  font-size: var(--fs-27);
}

.title-md {
  font-size: var(--fs-26);
}

.title-sm {
  font-size: var(--fs-22);
}

.body-lg {
  font-size: var(--fs-20);
}

.body-md {
  font-size: var(--fs-18);
}

.body-sm {
  font-size: var(--fs-17);
}

.label-lg {
  font-size: var(--fs-14);
}

.label-md {
  font-size: var(--fs-12);
}

/* ?===== FONT WEIGHT =====?*/

.headline-lg,
.headline-md,
.headline-sm,
.title-lg,
.title-md,
.title-sm,
.label-lg {
  color: var(--jet);
  font-weight: var(--fw-600);
  line-height: 1.2;
}

.body-lg {
  font-weight: var(--fw-500);
}



/* ?============= REUSED STYLE =============?*/

.container {
  padding-inline: 16px;
}

.section {
  padding-block: var(--section-padding);
}

.w-100 {
  width: 100%;
}

.section-title {
  margin-block-end: 30px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.text-center {
  text-align: center;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.has-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray);
  overflow: hidden;
}



/* ?============= PRELOADER =============?*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--pink-light);
  display: grid;
  place-items: center;
  z-index: 6;
}

.preloader.loaded {
  display: none;
}

.preloader-circle {
  width: 60px;
  height: 60px;
  border: 8px solid transparent;
  border-block-color: var(--white);
  border-radius: var(--radius-circle);
  animation: loading 1s linear infinite;
}

@keyframes loading {
  0% {transform: rotate(0);}
  100% {transform: rotate(1turn);}
}




/* ?============= HEADER =============?*/


.header .btn {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding-block: 16px;
  z-index: 4;
  transition: var(--transition-1);
}

.header.active {
  box-shadow: var(--shadow);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-toggle-btn {
  color: var(--jet);
  font-size: 3.8rem;
}

.navbar {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  border-block: 2px solid var(--jet);
  transition: 0.25s var(--cubic-out);
  transition-delay: 0.15s;
  transform: scaleY(0);
  transform-origin: top;
  visibility: none;
}

.navbar.active {
  transform: scaleY(1);
  visibility: visible;
  transition-duration: 0.5s;
  transition-delay: 0s;
}

.navbar > * {
  opacity: 0;
  transition: var(--transition-1);
}

.navbar.active > * {
  opacity: 1;
  transition-delay: 0.4s;
}

.navbar-item:not(:last-child) {
  border-block-end: 1px solid var(--jet_a10);
}

.navbar-link {
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 16px 15px;
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus-visible, .active) {
  color: var(--pink-light);
}



/* ?============= FOOTER =============?*/

.footer {
  background-color: var(--jet);
  color: var(--white_a75);
  border-block-start: 1px solid var(--white_a10);
  padding-block: 18px;
}

.social-list {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-block-end: 15px;
}

.social-link {
  font-size: 1.8rem;
}

.social-link:is(:hover, :focus-visible) {
  color: var(--pink-light);
}



/* ?============= MEDIA QUEREIS =============?*/

/* *=========== RESPONSIVE FOR LARGE THAN 575PX SCREEN ===========* */

@media (min-width: 575px) {

  .title-lg {
    --fs-27: 3.5rem;
  }

}


/* *=========== RESPONSIVE FOR LARGE THAN 768PX SCREEN ===========* */

@media (min-width: 768px) {

  /* ?========= TYPOGRAPHY =========?*/

  .headline-lg {
    --fs-45: 6rem;
  }

  .headline-md {
    --fs-38: 4.5rem;
  }

  .title-md {
    --fs-26: 3.2rem;
  }

  /* ?========= REUSED STYLE =========?*/

  .section {
    --section-padding: 100px;
  }

  .section-title {
    margin-block-end: 40px;
  }

  /* ?========= FOOTER =========?*/

  .footer {
    padding-block: 25px;
  }

  .footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .social-list {
    margin-block-end: 0;
  }

}



/* *=========== RESPONSIVE FOR LARGE THAN 992PX SCREEN ===========* */

@media (min-width: 992px) {

  /* ?========= TYPOGRAPHY =========?*/

  .headline-md {
    --fs-38: 5rem;
  }

  .title-lg {
    --fs-27: 4rem;
  }

  .title-sm {
    --fs-22: 2.4rem;
  }

  /* ?========= REUSED STYLE =========?*/

  .section-title {
    margin-block-end: 60px;
  }

  /* ?========= HEADER =========?*/

  .nav-toggle-btn {
    display: none;
  }

  .navbar,
  .navbar.active,
  .navbar > * {
    all: unset;
    display: block;
  }

  .navbar-list {
    display: flex;
  }

  .navbar-item:not(:last-child) {
    border-block-end: none;
  }

  .navbar-link {
    position: relative;
  }

  .navbar-link::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: right;
    width: 80%;
    height: 2px;
    background-color: var(--pink-light);
    transition: transform var(--transition-1);
  }

  .navbar-link:is(:hover, :focus-visible, .active)::after {
    transform: translateX(-50%) scaleX(1);
    transform-origin: left;
  }

  .header .btn {
    display: block;
  }

}


/* *=========== RESPONSIVE FOR LARGE THAN 1200PX SCREEN ===========* */

@media (min-width: 1200px) {

  /* ?========= TYPOGRAPHY =========?*/

  .headline-lg {
    --fs-45: 7rem;
  }


  /* ?========= REUSED STYLE =========?*/

  .container {
    max-width: 1240px;
    width: 100%;
    margin-inline: auto;
  }

}
/* ===== Hero (Leyla) ===== */
.hero-leyla {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding-top: 80px;
  isolation: isolate;
  background: linear-gradient(
    135deg,
    #f9d8e7 0%,
    #d9f0ff 50%,
    #efe6ff 100%
  );
}

.hero-leyla__img {
  width: min(1500px, 110vw);
  max-height: 90vh;
  height: auto;
  object-fit: contain;
  z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.15));
}

.hero-leyla__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(255,255,255,.35), transparent 60%);
  z-index: 0;
}

.hero-leyla__content {
  position: absolute;
  inset: auto 0 5vh 0;
  margin-inline: auto;
  text-align: center;
  z-index: 2;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,.35);
  padding: 12px 18px;
  border-radius: 14px;
}

.hero-leyla__title {
  font-size: clamp(20px, 2.6vw, 34px);
  margin: 0 0 6px;
}

.hero-leyla__subtitle {
  font-size: clamp(14px, 1.8vw, 18px);
  margin: 0;
  opacity: .8;
}

.header[data-header] {
  background: transparent;
  backdrop-filter: blur(6px);
}

@media (max-width: 768px) {
  .hero-leyla { min-height: 86vh; padding-top: 70px; }
  .hero-leyla__content { inset: auto 10px 18px 10px; }
}
/* ===== 3D CARD (Leyla) ===== */
.card3d-wrap{
  position: relative;
  height: min(70vh, 560px);
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(50% 50% at 50% 50%, #c6f3fb 0%, #f5b3cc 40%, #c0f8dd 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
.card3d-overlay{
  position: absolute; inset: 0;
  pointer-events: none;
  display: grid; place-items: end start;
  padding: 24px;
  color: #222;
  text-shadow: 0 1px 0 rgba(255,255,255,0.6);
  font-family: "Quicksand", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.card3d-overlay h2{ margin:0 0 4px 0; font-size:clamp(20px,3vw,28px); font-weight:700; }
.card3d-overlay p{ margin:0; font-size:clamp(14px,2vw,16px); opacity:.85; }
.card3d-wrap canvas{ position:absolute; inset:0; width:100%; height:100%; display:block; }
@media (max-width:640px){ .card3d-overlay{ padding:16px; } }
