/* =========================================
   NOEVELLA GROUP — LUXURY EDITORIAL SYSTEM
========================================= */

/* =========================================
   ROOT VARIABLES — BRAND PALETTE
========================================= */

:root {

  --noevella-obsidian: #0D0D0D;
  --noevella-magenta: #959D8D;
  --noevella-pink: #E6E1D2;
  --noevella-cream: #E6CFB8;
  --noevella-cyan: #6C7463;

  --font-serif: 'Alice', serif;
  --font-sans: 'Poppins', sans-serif;

}

/* =========================================
   RESET
========================================= */

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

/* =========================================
   BASE
========================================= */

html {
  scroll-behavior: smooth;
}

body {

  background: var(--noevella-obsidian);

  color: var(--noevella-pink);

  font-family: var(--font-sans);

  overflow-x: hidden;

  line-height: 1.8;
}

/* =========================================
   GLOBAL IMAGE SYSTEM
========================================= */

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================
   TYPOGRAPHY
========================================= */

h1,
h2,
h3 {

  font-family: var(--font-serif);

  font-weight: 400;

  letter-spacing: 0.5px;

}

p {

  color: var(--noevella-cream);

  font-size: 16px;

  font-weight: 300;

}

/* =========================================
   LINKS
========================================= */

a {

  text-decoration: none;

  color: inherit;

  transition: 0.4s ease;

}

a:hover {
  opacity: 0.9;
}

/* =========================================
   SCROLLBAR
========================================= */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background: var(--noevella-magenta);
}

/* =========================================
   PROGRESS BAR
========================================= */

#progressBar {

  position: fixed;

  top: 0;
  left: 0;

  width: 0%;
  height: 3px;

  background: linear-gradient(
    to right,
    var(--noevella-magenta),
    var(--noevella-cyan)
  );

  z-index: 999999;

}

/* =========================================
   NAVBAR
========================================= */

.navbar {

  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  padding: 22px 7%;

  display: flex;

  justify-content: space-between;

  align-items: center;

  z-index: 9999;

  background: rgba(13,13,13,0.65);

  backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(255,255,255,0.05);

}

/* LOGO */

.logo img {
  height: 75px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
}

.nav-links a {

  position: relative;

  color: var(--noevella-pink);

  font-size: 13px;

  text-transform: uppercase;

  letter-spacing: 2px;

  transition: 0.4s ease;

}

/* UNDERLINE */

.nav-links a::after {

  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0%;
  height: 1px;

  background: var(--noevella-magenta);

  transition: 0.4s ease;

}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--noevella-magenta);
}

/* HAMBURGER */

.hamburger {

  display: none;

  font-size: 28px;

  cursor: pointer;

  color: var(--noevella-pink);

}

/* =========================================
   HERO
========================================= */

.hero {

  min-height: 100vh;

  position: relative;

  overflow: hidden;

  display: flex;

  align-items: center;

  justify-content: center;

  isolation: isolate;

}

/* HERO IMAGE */

.hero-image {

  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  z-index: 1;

  animation: slowZoom 18s ease-in-out infinite alternate;

}

/* OVERLAY */

.hero-overlay {

  position: absolute;

  inset: 0;

  background:
  linear-gradient(
    to right,
    rgba(13,13,13,0.92),
    rgba(13,13,13,0.55)
  );

  z-index: 2;

}

/* CINEMATIC GRADIENT */

.hero-gradient {

  position: absolute;

  inset: 0;

  background:
  radial-gradient(
    circle at center,
    rgba(149,157,141,0.08),
    rgba(13,13,13,0.75)
  );

  z-index: 3;

}

/* HERO CONTENT */

.hero-content {

  position: relative;

  z-index: 5;

  width: 90%;

  max-width: 1400px;

}

/* SMALL TEXT */

.small-text {

  color: var(--noevella-magenta);

  text-transform: uppercase;

  letter-spacing: 3px;

  font-size: 12px;

  margin-bottom: 20px;

}

/* HERO TITLE */

.hero h1 {

  font-size: clamp(4rem, 8vw, 7rem);

  line-height: 0.95;

  max-width: 850px;

  margin-bottom: 30px;

}

/* HERO DESCRIPTION */

.hero-description {

  max-width: 560px;

  color: var(--noevella-cream);

  margin-bottom: 40px;

  font-size: 17px;

}

/* HERO BUTTONS */

.hero-buttons {

  display: flex;

  gap: 20px;

  flex-wrap: wrap;

}

/* =========================================
   BUTTONS
========================================= */

.btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 16px 40px;

  border: 1px solid var(--noevella-pink);

  color: var(--noevella-pink);

  position: relative;

  overflow: hidden;

  transition: 0.4s ease;

}

/* BUTTON FILL */

.btn::before {

  content: "";

  position: absolute;

  inset: 0;

  width: 0%;

  background: var(--noevella-magenta);

  z-index: -1;

  transition: 0.5s ease;

}

.btn:hover::before {
  width: 100%;
}

.btn:hover {

  color: var(--noevella-obsidian);

  border-color: var(--noevella-magenta);

}

/* OUTLINE BUTTON */

.btn-outline {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 16px 40px;

  border: 1px solid var(--noevella-cyan);

  color: var(--noevella-cyan);

  transition: 0.4s ease;

}

.btn-outline:hover {

  background: var(--noevella-cyan);

  color: var(--noevella-pink);

}

/* =========================================
   SECTIONS
========================================= */

.section {
  padding: 140px 7%;
}

.dark-section {
  background: #111111;
}

/* SECTION HEADINGS */

.section h2 {

  font-size: clamp(2.8rem, 5vw, 4.5rem);

  line-height: 1.1;

  margin-bottom: 30px;

}

/* =========================================
   SPLIT SECTION
========================================= */

.split-section {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;

}

/* REVERSE */

.reverse {
  direction: rtl;
}

.reverse .split-text {
  direction: ltr;
}

/* IMAGES */

.split-image {

  height: 700px;

  overflow: hidden;

}

.split-image img {

  transition: 8s ease;

}

.split-image:hover img {

  transform: scale(1.08);

}

/* PORTRAIT */

.portrait {
  height: 850px;
}

/* =========================================
   EDITORIAL GRID
========================================= */

.editorial-grid {

  margin-top: 70px;

  display: grid;

  grid-template-columns: repeat(12,1fr);

  gap: 20px;

}

/* CARD */

.editorial-card {

  position: relative;

  overflow: hidden;

  min-height: 400px;

}

/* LARGE */

.editorial-card.large {

  grid-column: span 7;

  min-height: 700px;

}

/* NORMAL */

.editorial-card {

  grid-column: span 5;

}

/* WIDE */

.editorial-card.wide {

  grid-column: span 12;

  min-height: 500px;

}

/* IMAGE */

.editorial-card img {

  transition: 6s ease;

}

.editorial-card:hover img {

  transform: scale(1.08);

}

/* OVERLAY */

.editorial-overlay {

  position: absolute;

  inset: 0;

  display: flex;

  align-items: end;

  padding: 40px;

  background:
  linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    transparent
  );

}

/* TITLE */

.editorial-overlay h3 {

  font-size: 2rem;

  font-family: var(--font-serif);

}

/* =========================================
   SERVICES
========================================= */

.services-grid {

  margin-top: 60px;

  display: grid;

  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));

  gap: 30px;

}

/* SERVICE CARD */

.service-card {

  padding: 60px 40px;

  background: #141414;

  border: 1px solid rgba(255,255,255,0.05);

  transition: 0.5s ease;

  position: relative;

  overflow: hidden;

}

/* TOP LINE */

.service-card::before {

  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 0%;
  height: 2px;

  background: linear-gradient(
    to right,
    var(--noevella-magenta),
    var(--noevella-cyan)
  );

  transition: 0.5s ease;

}

.service-card:hover::before {
  width: 100%;
}

.service-card:hover {

  transform: translateY(-12px);

  background: #1A1A1A;

}

.service-card h3 {

  font-size: 2rem;

  margin-bottom: 15px;

}

/* =========================================
   FULLSCREEN BANNER
========================================= */

.fullscreen-banner {

  position: relative;

  height: 100vh;

  overflow: hidden;

}

.fullscreen-banner img {

  filter: brightness(0.6);

}

/* OVERLAY */

.banner-overlay {

  position: absolute;

  inset: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

}

.banner-content h2 {

  font-size: clamp(4rem, 8vw, 7rem);

  line-height: 1;

}

/* =========================================
   CTA
========================================= */

.cta-section {

  padding: 180px 7%;

  text-align: center;

  background:
  linear-gradient(
    135deg,
    rgba(149,157,141,0.12),
    rgba(108,116,99,0.08)
  );

}

.cta-content h2 {

  font-size: clamp(3rem, 6vw, 5rem);

  margin: 30px 0;

}

/* =========================================
   FOOTER
========================================= */

.footer {

  padding: 100px 7%;

  background: #111;

}

.footer-grid {

  display: grid;

  grid-template-columns: 2fr 1fr 1fr;

  gap: 50px;

}

.footer h3,
.footer h4 {

  margin-bottom: 20px;

}

.footer a {

  display: block;

  color: var(--noevella-cream);

  margin-bottom: 12px;

  transition: 0.3s ease;

}

.footer a:hover {

  color: var(--noevella-magenta);

}

.footer p {

  color: var(--noevella-cream);

}

/* COPYRIGHT */

.copyright {

  margin-top: 60px;

  text-align: center;

  font-size: 12px;

  opacity: 0.5;

}

/* =========================================
   REVEAL ANIMATION
========================================= */

.reveal {

  opacity: 0;

  transform: translateY(80px);

  transition: 1.2s ease;

}

.reveal.active {

  opacity: 1;

  transform: translateY(0);

}

/* =========================================
   HERO ANIMATION
========================================= */

@keyframes slowZoom {

  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }

}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1100px){

  .split-section {
    grid-template-columns: 1fr;
  }

  .reverse {
    direction: ltr;
  }

  .split-image,
  .portrait {
    height: 500px;
  }

  .editorial-card.large,
  .editorial-card,
  .editorial-card.wide {

    grid-column: span 12;

    min-height: 450px;

  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

}

@media(max-width:768px){

  .navbar {
    padding: 20px 5%;
  }

  .hamburger {
    display: block;
  }

  .nav-links {

    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;

    background: rgba(13,13,13,0.98);

    flex-direction: column;

    padding: 30px 0;

    display: none;

    text-align: center;

  }

  .nav-links.active {
    display: flex;
  }

  .hero {
    padding: 0 5%;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .section h2 {
    font-size: 2.8rem;
  }

  .cta-content h2 {
    font-size: 3rem;
  }

  .section {
    padding: 100px 5%;
  }

  .split-image,
  .portrait {
    height: 400px;
  }

  .service-card {
    padding: 40px 30px;
  }

}
/* =========================================
   CONTACT PAGE LUXURY POLISH
========================================= */

.contact-details {
  margin-top: 40px;
  display: grid;
  gap: 25px;
}

.contact-item h3 {
  font-family: 'Alice', serif;
  font-size: 20px;
  margin-bottom: 5px;
  color: var(--noevella-pink);
}

.contact-item p {
  color: var(--noevella-cream);
  font-size: 15px;
  opacity: 0.85;
}

/* DOWNLOAD BOX */
.download-box {
  margin-top: 50px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
}

.download-box h3 {
  margin: 10px 0;
  font-size: 22px;
  font-family: 'Alice', serif;
}

.download-box p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 20px;
}

/* FORM WRAPPER */
.contact-form-wrapper {
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(12px);
}

/* FORM */
.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--noevella-magenta);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--noevella-pink);
  font-size: 14px;
  outline: none;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--noevella-magenta);
  background: rgba(0,0,0,0.6);
}

/* BUTTON IN FORM */
.contact-form .btn {
  width: 100%;
  margin-top: 10px;
}

/* LAYOUT BALANCE FIX */
@media (min-width: 900px) {
  .contact-form-wrapper {
    position: sticky;
    top: 120px;
  }
}