* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
}

/* Better selection color */
::selection {
  background: #381932;
  color: #fff3e6;
}

/* Smooth transitions globally */
* {
  transition: all 0.25s ease;
}
body {
  background: #fff3e6;
  color: #381932;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(56, 25, 50, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #fff3e6;
}

.logo span {
  font-weight: 300;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.navbar a {
  text-decoration: none;
  color: #fff3e6;
  font-size: 14px;
  position: relative;
}

/* Underline animation */
.navbar a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #fff3e6;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.navbar a:hover::after {
  width: 100%;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

/* UNIQUE SHAPE */
.hero-shape {
  position: absolute;
  right: -150px;
  top: -100px;
  width: 500px;
  height: 500px;
  background: #381932;
  border-radius: 60% 40% 70% 30%;
  transform: rotate(25deg);
  z-index: 0;
}

/* Content */
.hero-content {
  max-width: 600px;
  z-index: 2;
}

.hero h1 {
  font-size: 60px;
  line-height: 1.1;
}
.hero h1 {
  font-size: 64px;
  letter-spacing: -1px;
}

.hero p {
  font-size: 17px;
}

/* Subtle floating animation */
.hero-shape {
  animation: floatShape 6s ease-in-out infinite;
}

@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0) rotate(25deg);
  }
  50% {
    transform: translateY(-20px) rotate(25deg);
  }
}
.hero h1 span {
  color: #381932;
  background: linear-gradient(120deg, #381932, #6a2b5c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  margin: 20px 0;
  font-size: 16px;
  color: #5a3b52;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  padding: 12px 25px;
  background: #381932;
  color: #fff3e6;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-outline {
  padding: 12px 25px;
  border: 2px solid #381932;
  color: #381932;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #381932;
  color: #fff3e6;
}

/* SECTION PLACEHOLDER */
.section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

/* MOBILE */
.menu-toggle {
  display: none;
  font-size: 25px;
  color: #fff3e6;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar ul {
    position: absolute;
    top: 80px;
    right: 0;
    background: #381932;
    flex-direction: column;
    width: 200px;
    padding: 20px;
    display: none;
  }

  .navbar ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-shape {
    width: 300px;
    height: 300px;
  }
}

/* ABOUT SIGNATURE */
.about-signature {
  padding: 120px 60px;
  background: #fff3e6;
}

/* HEADLINE */
.about-headline {
  max-width: 900px;
  margin-bottom: 80px;
}

.about-headline h1 {
  font-size: 60px;
  line-height: 1.2;
  color: #381932;
}

.about-headline span {
  background: #381932;
  color: #fff3e6;
  padding: 5px 15px;
  border-radius: 10px;
}

/* DETAILS STRIP */
.about-details {
  display: flex;
  gap: 40px;
}

/* BLOCKS (not cards, more editorial style) */
.about-block {
  flex: 1;
  border-top: 2px solid #381932;
  padding-top: 20px;
}

.about-block h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.about-block p {
  font-size: 14px;
  color: #5a3b52;
  line-height: 1.6;
}

/* HOVER MICRO EFFECT */
.about-block:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-headline h1 {
    font-size: 36px;
  }

  .about-details {
    flex-direction: column;
  }
}
/* SERVICES SECTION */
.services-modern {
  padding: 100px 60px;
  background: #381932;
  color: #fff3e6;
}

/* ROW */
.service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.4s;
  cursor: pointer;
}

/* TITLE */
.service-title {
  font-size: 32px;
  font-weight: 600;
  flex: 1;
}

/* DESCRIPTION */
.service-desc {
  flex: 1;
  font-size: 14px;
  color: #e6d6dc;
  opacity: 0;
  transform: translateX(40px);
  transition: 0.4s;
}

/* HOVER EFFECT */
.service-row:hover .service-desc {
  opacity: 1;
  transform: translateX(0);
}

.service-row:hover {
  padding-left: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .service-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .service-desc {
    opacity: 1;
    transform: none;
  }

  .service-title {
    font-size: 22px;
  }
}
/* CONTACT SECTION */
.contact-identity {
  display: flex;
  min-height: 100vh;
  padding: 100px 60px;
  background: #fff3e6;
  gap: 60px;
}

/* LEFT SIDE */
.contact-left {
  flex: 1;
}

.contact-left h1 {
  font-size: 60px;
  color: #381932;
  margin-bottom: 20px;
}

.contact-left p {
  font-size: 16px;
  color: #5a3b52;
  max-width: 400px;
  line-height: 1.6;
}

/* RIGHT SIDE */
.contact-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* CARDS */
.contact-card {
  padding: 30px;
  border: 2px solid #381932;
  border-radius: 20px;
  transition: 0.4s;
  background: transparent;
}

/* HOVER EFFECT */
.contact-card:hover {
  background: #381932;
  color: #fff3e6;
  transform: translateY(-5px);
}

/* TEXT */
.contact-card h3 {
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* EMAIL STYLE */
.contact-card a {
  text-decoration: none;
  color: #381932;
  font-weight: 600;
  font-size: 16px;
}

/* SPECIAL EMAIL CARD */
.contact-card.highlight {
  background: #381932;
  color: #fff3e6;
}

.contact-card.highlight a {
  color: #fff3e6;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-identity {
    flex-direction: column;
  }

  .contact-left h1 {
    font-size: 40px;
  }
}
/* FOOTER */
.footer-signature {
  background: #381932;
  color: #fff3e6;
  padding: 80px 60px 30px;
  position: relative;
}

/* TOP BRAND */
.footer-top {
  margin-bottom: 60px;
}

.footer-top h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.footer-top p {
  color: #e6d6dc;
  font-size: 14px;
}

/* LINKS GRID */
.footer-links {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* HEADINGS */
.footer-links h4 {
  margin-bottom: 10px;
  font-size: 14px;
  opacity: 0.7;
}

/* LINKS */
.footer-links a {
  text-decoration: none;
  color: #fff3e6;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  transform: translateX(5px);
}

/* TEXT */
.footer-links span {
  font-size: 14px;
  color: #e6d6dc;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #e6d6dc;
}

/* SUBTLE GLOW LINE (premium touch) */
.footer-signature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #fff3e6, transparent);
  opacity: 0.3;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
  }

  .footer-top h1 {
    font-size: 28px;
  }
}
