/* ---------- Global ---------- */
:root{
  --bg: #2d0f18;
  --deep: #120007;
  --accent-1: rgba(233,113,138,0.22); /* soft pink */
  --accent-2: rgba(255,200,180,0.12); /* warm glow */
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle at center, #2d0f18, #120007);
  color: white;
  overflow-x: hidden;
}

/* ---------- Navbar ---------- */
/* #region navbar */
.navbar {
  width: 100%;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  /* background: radial-gradient(circle at top, rgba(10, 0, 4, 0.95), rgba(5, 0, 4, 0.75)); */
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);

}

.logo {
  width: 140px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.logo img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
  cursor: pointer;
}
.logo img:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.6));
}
.nav-links {
  display: flex;
   align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #cfcfcf;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #ffffff;
  opacity: 0;
  transition: width 0.25s ease, opacity 0.25s ease;
}

.nav-links a:hover {
  color: #ffffff;
}
.nav-links a:hover::after {
  width: 100%;
  opacity: 1;
}

.nav-links a.active {
  color: #ffffff;
  font-weight: 500;
}
.nav-links a.active::after {
  width: 100%;
  opacity: 1;
}
.menu-btn {
  display: none;
  font-size: 28px;
  cursor: pointer;
    user-select: none;
}
@media (max-width: 700px) {
  .navbar {
    padding: 18px 24px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    height: 100%;
    background: #1a0a0c;
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 28px 40px;
    gap: 30px;
    transition: right 0.3s ease;
  }

  .menu-btn {
    display: block;
  }
}
/* #endregion navbar */
/* ---------- Hero Section ---------- */
/* #region hero */
.hero {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 60px 40px;
  column-gap: 40px;
}.left {
  max-width: 450px;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.7;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: -1;
}
.product-img {
  width: 550px;
  display: block;
  margin: auto;
}

.right {
  text-align: left;
}

.text-box {
  max-width: 450px;
}

.title {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.1;
}

.subtext {
  margin-top: 20px;
  font-size: 15px;
  color: #ccc;
}

.add-btn {
  margin-top: 30px;
  padding: 14px 32px;
  background: #ff5a79;
  border: none;
  border-radius: 30px;
  color: white;
  cursor: pointer;
  transition: 0.2s;
}

.add-btn:hover {
  background: #ff3b60;
}

/* ---------- Product ---------- */
.product-box {
  text-align: center;
}

.product-img {
  width: 300px;
}

.details {
  margin-top: 20px;
}

.price {
  font-size: 36px;
}

.volume {
  color: #ccc;
}

.arrows button {
  margin: 10px 5px;
  padding: 8px 15px;
  background: transparent;
  border: 1px solid #666;
  color: white;
  border-radius: 50%;
  cursor: pointer;
}

/* ---------- Tabs ---------- */
.tabs {
  margin: 80px 40px;
  border-top: 1px solid #432026;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.tab {
  width: 25%;
  text-align: center;
  border-right: 1px solid #432026;
  padding: 20px 0;
}

.tab:last-child {
  border-right: none;
}

.tab span {
  color: #ff5a79;
}

.tab h3 {
  margin-top: 10px;
  font-size: 18px;
}
/* Smooth fade + slide animation start states */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
}

/* Button hover animations */
.add-btn {
  transition: 0.3s ease;
}

.add-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 90, 121, 0.4);
}

/* Image hover */
.product-img {
  transition: 0.4s ease;
}

.product-img:hover {
  transform: scale(1.05);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .title {
    font-size: 50px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    height: 100%;
    background: #1a0a0c;
    flex-direction: column;
    padding-top: 80px;
    transition: 0.3s;
    gap: 30px;
  }

  .menu-btn {
    display: block;
  }

  .tabs .tab {
    width: 50%;
    border-right: none;
    border-bottom: 1px solid #432026;
  }

  .tabs .tab:nth-child(odd) {
    border-right: 1px solid #432026;
  }
}

@media (max-width: 450px) {
  .title {
    font-size: 40px;
  }

  .product-img {
    width: 230px;
  }
}

/* #endregion hero */

/* #region about */
.about-section {
  padding: 0;
  background: radial-gradient(circle at center, #2d0f18 0%, #120007 70%, #0A0004, 100%);
}

.about-inner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: stretch;
  min-height: 600px;
}

/* LEFT SIDE USING FULL BACKGROUND IMAGE */
.image-wrapper {
  flex: 1;
  background-image: url("assets/Perfome\ Redolere.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

/* Smooth blend INTO the gradient section */
.image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;

}

.text-wrapper {
  flex: 1;
  padding: 100px 70px;
  color: #f5dccc;
}

.text-wrapper h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  color: #eac7ab;
}

.text-wrapper p {
  margin-bottom: 18px;
  font-size: 1.15rem;
  line-height: 1.75;
}

/* Mobile */
@media (max-width: 768px) {
  .about-inner {
    flex-direction: column;
  }

  .image-wrapper {
    height: 380px;
  }

  .image-wrapper::after {
    background: linear-gradient(to bottom,
      rgba(0,0,0,0) 0%,
      #1a0905 80%
    );
    width: 100%;
    height: 40%;
    bottom: 0;
    top: auto;
  }

  .text-wrapper {
    padding: 50px 30px;
    text-align: center;
  }
}


/* #endregion about */

/* #region products */

.similar-products{
  width:100%;
  /* background: var(--bg); */
  color:#fff;
  padding:72px 5%;
  position:relative;
  overflow:visible;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
   /* background: radial-gradient(circle at center, #2d0f18 0%, #120007 70%, #0A0004, 100%); */
}

/* header row: left title + arrows on same line */
.similar-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  margin-bottom:56px;
}

/* left block */
.left .tag{
  display:inline-block;
  color:#e9718a;
  letter-spacing:3px;
  font-size:11px;
}
.left .title{
  margin-top:14px;
  font-size:44px;
  line-height:1.06;
  font-weight:600;
}

/* arrows */
.slider-controls{ display:flex; gap:12px; align-items:center; margin-top:8px;}
.arrow{
  width:40px; height:40px;
  border-radius:999px;
  border:none;
  background: rgba(255,255,255,0.06);
  color:#fff;
  cursor:pointer;
  font-size:18px;
}
.slider-track {
  width: 100%;
  overflow: hidden; /* forces sliding area */
  position: relative;
}

/* product row */
.products{
  display:flex;
  gap:6%;
  align-items:flex-start;
  position:relative;
  /* allow glows to overflow and overlap */
 scroll-behavior: smooth;
  transition: transform 0.4s ease;
}
.similar-products .product {
  flex: 0 0 calc(50% - 16px); /* show 2 cards at a time (50% - half gap) */
 scroll-snap-align: start;
}
/* each product is lean (no box) */
.product{
  position:relative;
  width:44%;
  padding:24px 0 40px 0;
  z-index:2; /* content above glow */
  color:#fff;
  overflow:visible;
}

/* large soft radial glow under each product using pseudo-element */
.product::before {
  content:"";
  position:absolute;
  left:50%;
  top:10%;
  transform:translateX(-50%);
  width:640px;
  height:420px;
  border-radius:50%;
  filter: blur(80px);
  z-index:1;
  pointer-events:none;
  mix-blend-mode:screen;
  opacity:0.9;

  /* NEW: dynamic variable */
  /* background: var(--glow-bg); */
}

.product-1::before {
  left:30%; top:0%;
  width:720px; height:520px;
  filter: blur(100px);
}

.product-2::before {
  left:70%; top:10%;
  width:720px; height:520px;
  filter: blur(110px);
}


/* product number / content styling */
.prod-number{
  display:block;
  font-size:32px;
  font-weight:300;
  opacity:0.6;
  margin-bottom:12px;
  z-index:3;
}

.product img{
  width:280px;
  height: 280px !important;
  object-fit: contain;
  display:block;
  margin-bottom:18px;
  position:relative;
  z-index:3;
  filter: drop-shadow(0 25px 60px rgba(0,0,0,0.7));
  transform: translateZ(0);
  transition: all 0.4s ease;
}
.product img:hover {
  transform: scale(1.1); /* slightly enlarge */
  filter: drop-shadow(0 35px 70px rgba(0,0,0,0.8)); /* stronger shadow */
}
/* product text sits to the right of image in the reference; keep stacked but aligned nicely */
.prod-info h3{ font-size:20px; margin:6px 0; z-index:3; }
.prod-info p{ font-size:14px; opacity:0.7; max-width:320px; margin-bottom:12px; z-index:3; }
.learn{ color:#fff; border-bottom:1px solid rgba(255,255,255,0.9); font-size:13px; text-decoration:none; z-index:3; }

/* small screens — stack and reduce glow size so it doesn't overpower */
@media (max-width:900px){
  .similar-header{ flex-direction:column; align-items:flex-start; gap:18px; }
  .products{ flex-direction:column; gap:32px; }
  .product{ width:100%; padding:12px 0 28px 0; }
  .product::before{ left:50%; transform:translateX(-50%); width:520px; height:360px; filter: blur(70px); opacity:0.8; top:-10%; }
  .product-1::before{ left:50%; top:-6%; width:560px; height:380px; }
  .product-2::before{ left:50%; top:-4%; width:560px; height:380px; }
  .product img{ width:220px; }
  .left .title{ font-size:34px; }
}

/* #endregion products */


/* #region contact */
.contact-us {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 80px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  overflow: hidden;

  /* Extracted from perfume image (forest green + gold tones) */
 /* background: radial-gradient(circle at center, #6B6327 0%, #46411B 45%, #222A0F 75%, #0A0004 100%); */

}

/* Floating glows (adjusted to match image colors) */
.contact-us .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
}

.contact-us .glow-1 {
  width: 500px; height: 400px;
  /* background: radial-gradient(circle at center, rgba(58,75,47,0.5) 0%, rgba(30,42,24,0.1) 100%); */
  top: 10%; left: 20%;
}

.contact-us .glow-2 {
  width: 600px; height: 500px;
  /* background: radial-gradient(circle, rgba(40,55,32,0.35) 0%, rgba(10,0,4,0) 100%); */
  bottom: 0; right: 15%;
}

/* Content container */
.contact-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
}
.contact-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: contain;
}
/* Left image – contain, no borders, no shadow */
.contact-image img {
  width: 100%;
  max-width: 500px;
  
  border-radius: 0;
  box-shadow: none;
  border-radius: 12px;
  
}

/* Glass card form */
.glass-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 500px;
  width: 100%;
  padding: 40px;

  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
 opacity: 0;
  transform: translateY(30px);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  color: #fff;
  text-align: center;
}


.glass-card.animate-form {
  animation: fadeInUp 1.2s ease-out forwards;
  animation-delay: 0.3s;
}
.glass-card h2 {
  font-size: 44px;
  margin: 0;
}

.glass-card p {
  font-size: 16px;
  opacity: 0.85;
}

/* Form fields */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.65);
}

.contact-form button {
  padding: 16px;
  border: none;

  /* Matches new theme */
  background:#6B6327;
;

  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.3s;
}

.contact-form button:hover {
  background:#2d3a22;
}

/* Mobile */
@media screen and (max-width: 900px) {
  .contact-content {
    flex-direction: column;
    gap: 40px;
  }

  .glass-card h2 {
    font-size: 34px;
  }

  .glass-card p {
    font-size: 14px;
  }

  .contact-image img {
    max-width: 90%;
  }
}
@keyframes slideInLeftBounce {
  0% {
    transform: translateX(-100%) scaleX(0.8);
    opacity: 0;
  }
  60% {
    transform: translateX(20px) scaleX(1.05);
    opacity: 1;
  }
  80% {
    transform: translateX(-10px) scaleX(0.98);
  }
  100% {
    transform: translateX(0) scaleX(1);
  }
}

/* Fade in and slide up for form */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* #endregion contact */

/* #region Footer */
.site-footer {
  width: 100%;
  padding: 60px 5px 30px;
  /* background: radial-gradient(circle at center, #2d0f18 0%, #2d0f18 70%, #0A0004 100%); */
  color: #fff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* Logo */
.footer-logo img {
  max-width: 250px;
  height: auto;
}

/* Sections */
.footer-sections {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-section {
  min-width: 150px;
  
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 12px;
}
.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
  margin-top: 20px;
}
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer-section ul li a i {

  font-size: 20px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.footer-section ul li a:hover i {
  transform: translateX(3px);
}

/* Social icons */
.footer-section .socials {
  display: flex;
  gap: 12px;
}

.footer-section .socials a i {
  font-size: 20px;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-section .socials a:hover i {
  transform: scale(1.2);
  color: #e9718a; /* optional hover color */
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  opacity: 0.7;
}

/* Mobile */
@media screen and (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-sections {
    flex-direction: column;
    gap: 30px;
  }
  .footer-section {
    min-width: auto;
  }
}

/* #endregion Footer */