* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #f8f5f2;
  cursor: none;
  color: #2b2b2b;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;

  /* glass */
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 155, 123, 0.15);

  /* soft shadow */
  box-shadow: 0 4px 30px rgba(0,0,0,0.02);

  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
  padding: 12px 6%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(200, 155, 123, 0.25);
}
.hero-content button {
  position: relative;
  overflow: hidden;
  background: #c89b7b;
  border: none;
  padding: 14px 28px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

/* shimmer layer */
.hero-content button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );
  transition: 0.6s;
}
.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.3s;
}
.hero {
  overflow: hidden;
}

.hero:hover {
  transform: scale(1.01);
  transition: 0.6s ease;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content button:hover::before {
  left: 100%;
}

.hero-content button:hover {
  background: #b58565;
}
/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
}

.logo img {
  height: 64px; /* Increased premium elegant size */
  width: auto;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo span {
  font-size: 22px; /* Increased logo font size */
  font-weight: 500;
  letter-spacing: 2.5px;
  font-family: 'Playfair Display', serif;
  color: #2b2b2b;
  transition: all 0.3s ease;
}

.logo:hover img {
  filter: drop-shadow(0 0 8px rgba(200,155,123,0.5));
  transform: scale(1.02);
}

.logo:hover span {
  color: #c89b7b;
}

/* scroll transition for logo */
.navbar.scrolled .logo img {
  height: 60px; /* Increased scrolled logo size */
}

/* NAV LINKS */
nav {
  display: flex;
  align-items: center;
  gap: 36px; /* Elegant spacing */
}

nav a {
  position: relative;
  text-decoration: none;
  color: #2b2b2b;
  font-size: 13px; /* Clean, modern, luxury scaling */
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  transition: all 0.3s ease;
}

nav a i {
  width: 14px;
  height: 14px;
  color: #c89b7b;
  stroke-width: 1.8px;
  transition: all 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: #c89b7b;
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 4px rgba(200,155,123,0.4);
}

nav a:hover {
  color: #c89b7b;
}

nav a:hover i {
  transform: translateY(-1px);
  color: #b58565;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a.active {
  color: #c89b7b;
  font-weight: 600;
}

nav a.active i {
  color: #b58565;
}

/* NAV CTA BUTTON */
nav a.nav-cta::after {
  display: none;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border: 1.5px solid #c89b7b;
  background: transparent;
  color: #c89b7b !important;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.nav-cta:hover {
  background: #c89b7b !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(200, 155, 123, 0.25);
  transform: translateY(-1px);
}

.nav-cta:active {
  transform: scale(0.97);
}

/* HERO */

.hero {
  height: 600px;
  margin-top: 80px;
  width: 100%;
  background: url("newbanner.png") no-repeat center/cover;
  
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 6%;
}

.overlay {
  position: absolute;
  inset: 0;
 
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  letter-spacing: 3px;
}

.hero-content p {
  color: #c89b7b;
  margin: 10px 0 20px;
  letter-spacing: 2px;
}

.hero-content button {
  background: #c89b7b;
  border: none;
  padding: 14px 28px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.hero-content button:hover {
  background: #b58565;
}

/* CONTACT */
.contact {
  padding: 80px 6%;
  text-align: center;
}

.contact h2 {
  font-family: 'Playfair Display';
  font-size: 36px;
}

.contact p {
  margin-top: 10px;
  color: #777;
}

.row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

input, textarea {
  width: 100%;
  padding: 1px;
  border: 1px solid #e6d8cf;
}

textarea {
  height: 120px;
  padding: 10px;
}

.contact button {
  margin-top: 20px;
  background: #c89b7b;
  border: none;
  padding: 12px 30px;
  color: white;
}

/* FOOTER */
footer {
  background: #ffffff;
  padding: 60px 6% 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

footer h3, footer h4 {
  font-family: 'Playfair Display';
}

footer p {
  margin: 8px 0;
  color: #555;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  color: #999;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1000;
  padding: 0;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: #2b2b2b;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left center;
}

/* Hamburger active animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(2px, 0px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(2px, 0px);
}

/* ================= MOBILE STYLES ================= */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 6%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(200, 155, 123, 0.15);
  }

  .navbar.scrolled {
    padding: 12px 6%;
  }

  .logo img {
    height: 50px; /* Increased mobile logo size */
  }

  .logo span {
    font-size: 19px; /* Increased mobile logo font size */
    letter-spacing: 1.5px;
  }

  .hamburger {
    display: flex;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(200, 155, 123, 0.1);
    border-bottom: 1px solid rgba(200, 155, 123, 0.15);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), padding 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  }

  nav.active {
    max-height: 380px;
    padding: 20px 0;
  }

  nav a {
    width: 100%;
    padding: 14px 0;
    justify-content: center;
    font-size: 14px;
    letter-spacing: 1.5px;
    border-bottom: 1px solid rgba(200, 155, 123, 0.05);
  }

  nav a:last-of-type {
    border-bottom: none;
  }

  nav a::after {
    display: none; /* remove hover line on mobile */
  }

  .nav-cta {
    width: 80%;
    margin: 15px auto 5px;
    padding: 12px 0;
  }

  /* HERO FIX */
  .hero {
    height: 480px;
    margin-top: 70px;
    background: url("mobilebanner.png") no-repeat center/cover;
    justify-content: center;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .row {
    flex-direction: column;
    gap: 15px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}
/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #c89b7b;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;

  transform: translate(-50%, -50%);
}

/* FILLED GOLD HALO */
.cursor::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;

  width: 60px;
  height: 60px;

  background: rgba(200, 155, 123, 0.25); /* 🔥 semi-transparent gold */
  border-radius: 50%;

  transform: translate(-50%, -50%);
  transition: all 0.25s ease;

  /* soft luxury glow */
  box-shadow: 0 0 20px rgba(200,155,123,0.25);
}

/* HOVER EXPAND EFFECT */
.cursor.active::after {
  width: 70px;
  height: 70px;
  background: rgba(200, 155, 123, 0.18);
  box-shadow: 0 0 30px rgba(200,155,123,0.35);
}
/*contact form focus effect */
/* FORM CONTAINER */
.form-box {
  margin-top: 50px;
  padding: 50px;
  border-radius: 18px;
  text-align: center;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);

  box-shadow: 
    0 20px 60px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.4);
}
.form-box:hover {
  transform: translateY(-3px);
  transition: 0.4s ease;
}
.contact h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #c89b7b;
  margin: 10px auto 0;
}
/* ROW */
.row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

/* INPUT GROUP */
.input-group {
  position: relative;
  width: 100%;
}

/* INPUT + TEXTAREA */
.input-group input,
.input-group textarea {
  border: none;
  border-bottom: 1px solid #e6d8cf;
  background: transparent;
  padding: 16px 8px;
  font-size: 14px;
}

/* TEXTAREA HEIGHT */
.input-group textarea {
  border: 1px solid #e6d8cf;
  border-radius: 6px;
}

/* FLOATING LABEL */
.input-group label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #999;
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s;
}

/* MOVE LABEL UP */
.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
  top: 0;
  font-size: 12px;
  color: #c89b7b;
  background: #f8f5f2;
  padding: 0 5px;
}
/* INPUT GROUP */
.input-group {
  position: relative;
}

/* LABEL WITH ICON */
.input-group label {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  display: flex;
  align-items: center;
  gap: 6px;

  font-size: 14px;
  color: #999;
  transition: 0.3s ease;
}

/* ICON */
.input-group label i {
  width: 14px;
  height: 14px;
  color: #c89b7b;
  opacity: 0.8;
}

/* FLOAT EFFECT */
.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
  top: -10px;
  font-size: 12px;
  color: #c89b7b;
}

/* TEXTAREA FIX */
.input-group textarea + label {
  top: 20px;
  margin-left: 5px;
  transform: none;
}

/* REMOVE OLD PADDING */
.input-group input,
.input-group textarea {
  padding-left: 0;
}

/* FOCUS ICON EFFECT */
.input-group input:focus + label i,
.input-group textarea:focus + label i {
  opacity: 1;
  transform: scale(1.05);
}
/* GOLD FOCUS EFFECT */
.input-group input:focus,
.input-group textarea:focus {
  border-color: #c89b7b;
  box-shadow: 0 2px 10px rgba(200,155,123,0.2);
}

/* FULL WIDTH */
.full {
  width: 100%;
}

/* BUTTON */
.lux-btn {
  margin: 40px auto 0;
  padding: 14px 42px;

  background: transparent;
  border: 1px solid #c89b7b;
  color: #c89b7b;

  letter-spacing: 2px;
  cursor: pointer;

  transition: all 0.3s ease;
}
.lux-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );

  transition: 0.6s;
}
.lux-btn:hover::before {
  left: 100%;
}

.lux-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200,155,123,0.4);
}

/* CLICK */
.lux-btn:active {
  transform: scale(0.96);
}
.contact h2 {
  margin-bottom: 10px;
}

.contact p {
  margin-bottom: 30px;
}
/* BUTTON HOVER */


/* MOBILE */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .form-box {
    padding: 20px;
  }
}
/* FOOTER *//* FOOTER BASE */
.footer {
  background: url("footer.png") center/cover no-repeat;
  padding: 60px 6% 30px;
  border-top: 2px solid #c89b7b;
  position: relative;
}

/* overlay */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.85);
}

/* CONTENT */
.footer-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  z-index: 2;
}

/* COLUMNS */
.footer-col {
  flex: 1;
  min-width: 200px;
  padding: 0 20px;
}

/* vertical divider */
.footer-col:not(:last-child) {
  border-right: 4px solid rgba(200,155,123,0.3);
}

/* BRAND */
.brand-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.brand-header img {
  width: 40px;
}

.tagline {
  font-size: 12px;
  letter-spacing: 2px;
  color: #c89b7b;
}

/* HEADINGS */
.footer h4 {
  font-family: 'Playfair Display';
  margin-bottom: 15px;
}

/* LINKS */
.footer a {
  display: block;
  text-decoration: none;
  color: #555;
  margin: 8px 0;
  transition: 0.3s;
}

/* hover */
.footer a:hover {
  color: #c89b7b;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border: 1px solid #c89b7b;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s;
}

.social-icons a i {
  color: #c89b7b;
}

.social-icons a:hover {
  background: #c89b7b;
}

.social-icons a:hover i {
  color: white;
}

/* CONTACT ICONS */
.footer p i {
  margin-right: 10px;
  color: #c89b7b;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #777;
  position: relative;
  z-index: 2;
}

.footer-bottom span {
  flex: 1;
  height: 1px;
  background: rgba(200,155,123,0.3);
}

/* MOBILE */
@media (max-width: 768px) {

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-col {
    border-right: none;
    padding: 0;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom span {
    display: none;
  }
}
.footer-col:nth-child(2) a::before,
.footer-col:nth-child(3) a::before {
  content: ">";
  margin-right: 10px;
  color: #c89b7b;
  font-size: 18px;
  transition: 0.3s;
}

/* hover animation */
.footer-col:nth-child(2) a:hover::before,
.footer-col:nth-child(3) a:hover::before {
  transform: translateX(4px);
}
@media (max-width: 768px) {

  /* STACK LAYOUT */
  .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 35px;
  }

  /* REMOVE VERTICAL DIVIDERS */
  .footer-col {
    border-right: none !important;
    padding: 0;
  }

  /* BRAND CENTER */
  .brand-header {
    justify-content: center;
  }

  /* CONTACT TEXT CENTER */
  .footer p {
    justify-content: center;
  }

  /* LINKS CENTER */
  .footer a {
    justify-content: center;
  }

  /* ARROWS ALIGN PROPERLY */
  .footer-col:nth-child(2) a::before,
  .footer-col:nth-child(3) a::before {
    margin-right: 6px;
  }

  /* SOCIAL ICONS CENTER + CLEAN */
  .social-icons {
    justify-content: center;
    margin-top: 15px;
  }

  /* FIX ICON SIZE FOR MOBILE */
  .social-icons a {
    width: 36px;
    height: 36px;
  }

  /* REMOVE SIDE LINE YOU SEE */
  .footer-col:not(:last-child) {
    border-right: none !important;
  }

  /* SPACING */
  .footer h4 {
    margin-bottom: 12px;
  }

  .footer p,
  .footer a {
    margin: 6px 0;
  }

  /* BOTTOM CENTER */
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-bottom span {
    display: none;
  }
}
/* about us */
/* ABOUT SECTION */
.about {
  padding: 80px 8%;
  background: #f8f5f2;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.about-img {
  flex: 1;
}

.about-img img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

/* CONTENT */
.about-content {
  flex: 1;
}

.about-tag {
  color: #c89b7b;
  font-size: 12px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.about-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-content h3 {
  margin-top: 20px;
  font-family: 'Playfair Display';
}

/* LIST */
.about-content ul {
  margin-top: 10px;
  padding-left: 0;
}

.about-content ul li {
  list-style: none;
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}

.about-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c89b7b;
}
@media (max-width: 768px) {

  .about-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .about-content ul li {
    padding-left: 0;
  }

  .about-content ul li::before {
    display: none;
  }
}

/* ================= BLOG PAGE ================= */
.blog-hero {
  padding: 140px 6% 60px;
  text-align: center;
  background: #fdfcfb;
  border-bottom: 1px solid rgba(200, 155, 123, 0.15);
}

.blog-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #2b2b2b;
  margin-bottom: 15px;
}

.blog-hero p {
  font-size: 16px;
  color: #777;
  letter-spacing: 1px;
  max-width: 600px;
  margin: 0 auto;
}

.blog-container {
  padding: 80px 8%;
  background: #f8f5f2;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.blog-card {
  background: #ffffff;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(200, 155, 123, 0.1);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(200, 155, 123, 0.12);
  border-color: rgba(200, 155, 123, 0.3);
}

.blog-img-box {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-img-box img {
  transform: scale(1.08);
}

.blog-content-box {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 11px;
  color: #c89b7b;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.blog-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #2b2b2b;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 500;
  transition: color 0.3s ease;
}

.blog-card:hover h3 {
  color: #c89b7b;
}

.blog-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #c89b7b;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.blog-read-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-read-more {
  color: #b58565;
}

.blog-card:hover .blog-read-more i {
  transform: translateX(4px);
}

/* Newsletter section for Blog page */
.blog-newsletter {
  background: #ffffff;
  padding: 60px 40px;
  text-align: center;
  border: 1px solid rgba(200, 155, 123, 0.15);
  box-shadow: 0 10px 40px rgba(0,0,0,0.02);
  max-width: 800px;
  margin: 40px auto 0;
}

.blog-newsletter h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 500;
}

.blog-newsletter p {
  color: #666;
  font-size: 14px;
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 12px 20px;
  border: 1px solid #e6d8cf;
  font-size: 14px;
  background: transparent;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #c89b7b;
}

.newsletter-form button {
  padding: 12px 24px;
  background: #c89b7b;
  color: #ffffff;
  border: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #b58565;
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 120px 6% 40px;
  }
  .blog-hero h1 {
    font-size: 32px;
  }
  .blog-container {
    padding: 40px 6%;
  }
  .blog-newsletter {
    padding: 40px 20px;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form button {
    width: 100%;
  }
}