* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Birthstone&display=swap'); */

/* ==========================================================
   Custom Font: Authentic Signature
   ========================================================== */
@font-face {
  font-family: 'Authentic Signature';
  src: url('assets/fonts/AuthenticSignature.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}



:root {
    --primary-pink: #FF8BA7;
    --secondary-pink: #FFB3C1;
    --light-pink: #FFE5EC;
    --coral: #FF9671;
    --yellow: #FFC75F;
    --dark-blue: #1A2332;
    --white: #FFFFFF;
    --gray: #666666;
    --light-gray: #F5F5F5;
}
/* ===== Fluid typography & spacing ===== */
html { font-size: 100%; } /* base 16px */

h1, .hero-title { font-size: clamp(1.8rem, 2vw + 1.2rem, 3rem); }
h2 { font-size: clamp(1.4rem, 1.2vw + 1rem, 2rem); }
h3 { font-size: clamp(1.2rem, 1vw + 0.9rem, 1.6rem); }
p, li, a, button, input, textarea { font-size: clamp(0.95rem, 0.5vw + 0.85rem, 1.05rem); }

/* Containers breathe on small screens, stay neat on large */
.container { padding: 0 clamp(12px, 3vw, 24px); }

/* Rating Star Styles */
.rating { display: inline-flex; gap: 4px; line-height: 1; font-size: 18px; }
.star { position: relative; display: inline-block; width: 1em; height: 1em; }
.star::before { content: '☆'; color: #cfcfcf; position: absolute; inset: 0; }
.star.full::before { content: '★'; color: #ffc107; }
.star.half::after {
  content: '★';
  color: #ffc107;
  position: absolute; inset: 0;
  width: 50%; overflow: hidden;
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}


.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  min-height: 60px; /* Reduced height */
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 18px;
}
.nav-brand {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.nav-brand:hover { opacity: 0.9; }
.nav-brand:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

.logo-icon {
    font-size: 30px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-pink);
}
/* ========== Mobile Navigation Toggle (Hamburger) ========== */
.nav-toggle {
  display: none;
  background: var(--primary-pink);
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s;
}
.nav-toggle:hover {
  background: #ff6b8f;
}

/* ==========================================================
   NAVBAR LOGO — Large, Centered, No Cropping, Fixed Height
   ========================================================== */
.nav-brand {
  display: flex;
  align-items: center;
  justify-content: center;   /* center the logo horizontally */
  height: 60px;              /* keeps navbar height constant */
  overflow: visible;         /* ensure scaled logo isn't cropped */
  position: relative;
}

.logo-img {
  height: 70px;              /* logical height to control navbar */
  width: auto;
  transform: scale(2.2);     /* visually make logo almost 2× bigger */
  transform-origin: center;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
  margin: 0 auto;
}

/* Optional: hover subtle zoom (desktop only) */
@media (hover: hover) {
  .logo-img:hover {
    transform: scale(2.05);
  }
}

/* === Mobile Adjustments === */
@media (max-width: 900px) {
  .nav-brand {
    justify-content: flex-start;    /* move logo slightly left but not touching */
    padding-left: 12px;             /* space from left screen edge */
  }

  .logo-img {
    transform: scale(1.9);          /* slightly smaller scale for mobile */
    transform-origin: center left;  /* ensures scaling doesn’t push it off-screen */
  }
}




/* HERO SLIDER */
.hero {
  position: relative;
  min-height: clamp(380px, 60vh, 680px);
  margin-top: 50px;
  padding-top: 60px; /* Adjusted for navbar height */
  overflow: hidden;
  color: white;
}
.hero-content { padding: clamp(12px, 2vw, 20px); }
.hero-subtitle { margin-bottom: clamp(16px, 3vw, 30px); }


.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .8s ease-in-out;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.35));
}

.hero-slide.active {
    opacity: 1;
}

.hero .hero-slide:first-child {
  opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 1.5rem; /* Adds space between title and button */
}

/* Hero typography refresh */
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.5rem);
  margin-top: 0.5em;
  line-height: 1.4;
}

.hero-title, .hero-subtitle {
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}


.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary-pink);
    color: white;
}

.btn-primary:hover {
    background: #ff6b8f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 139, 167, 0.4);
}

.btn-secondary {
    background: var(--yellow);
    color: white;
}

.btn-secondary:hover {
    background: #ffb84d;
    transform: translateY(-2px);
}

.btn-light {
    background: white;
    color: var(--primary-pink);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-pink);
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--light-pink), #fff);
    padding: 120px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #333;
}

.page-header p {
    font-size: 18px;
    color: var(--gray);
}

.page-header-contact {
    background: linear-gradient(135deg, var(--primary-pink), var(--coral));
    padding: 120px 20px 60px;
    text-align: center;
    color: white;
}

.page-header-contact h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header-contact p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Best Sellers Home */
.best-sellers-home {
    padding: 80px 20px;
    background: var(--light-pink);
    text-align: center;
}

.section-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.section-subtitle {
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 18px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Home Section */
.about-home {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.about-text {
    max-width: 900px;
    margin: 0 auto 25px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray);
}

/* Fluid section paddings */
.best-sellers-home,
.about-home,
.contact-preview,
.mission-section,
.story-section,
.products-section,
.featured-product-section,
.you-may-like-section,
.contact-cta,
.contact-section {
  padding: clamp(40px, 7vw, 80px) clamp(12px, 4vw, 20px);
}


/* Contact Preview Home */
.contact-preview {
    padding: 80px 20px;
    background: var(--light-gray);
    text-align: center;
}

/* Mission Section */
.mission-section {
    padding: 80px 20px;
    text-align: center;
    background: var(--light-gray);
}

.mission-text {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
}

/* Story Section */
.story-section {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.story-content {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
    text-align: left;
}

.story-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
}

.story-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}



.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.story-text p {
    margin-bottom: 20px;
    color: var(--gray);
    line-height: 1.8;
}

/* Products Grid */
.products-grid,
.products-grid-main,
.products-grid-like {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(16px, 3vw, 30px);
  margin: 50px 0;
  align-items: stretch;
  grid-auto-rows: 1fr;
}



/* Products Section */
.products-section {
    padding: 80px 20px;
    background: var(--light-pink);
}


/* Products Scrollable (Remaining) */
.products-scrollable-wrapper {
    margin: 60px 0;
}

.scroll-title {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.products-scrollable {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
}

.products-scrollable::-webkit-scrollbar {
    height: 8px;
}

.products-scrollable::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.products-scrollable::-webkit-scrollbar-thumb {
    background: var(--primary-pink);
    border-radius: 10px;
}

.products-scrollable .product-card {
    min-width: 300px;
    flex-shrink: 0;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    position: relative;
    padding-bottom: 80px; /* Reserve space for the button */
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-image {
  width: 100%;
  height: clamp(180px, 25vw, 220px);
  object-fit: cover;
  flex-shrink: 0; /* Prevent image from shrinking */
}

.product-info {
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Make this container fill the available space */
}

.product-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    min-height: 2.6em; /* Reserve space for 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating {
    color: var(--yellow);
    margin-bottom: 10px;
    font-size: 14px;
}

.product-description {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1; /* This makes the description push the price down */
}

.product-price {
    display: flex;
    justify-content: center; /* This centers the price */
    align-items: center;
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-pink);
}

.product-button {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    padding: 12px;
    background: white;
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.product-button:hover {
    background: var(--primary-pink);
    color: white;
}

.featured-product-section {
    padding: 60px 20px;
    background: var(--light-pink);
    text-align: center;
}

.featured-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    margin-top: 40px;
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.featured-product-image {
    border-radius: 15px;
    overflow: hidden;
}

.featured-product-image img {
  width: 100%;
  height: clamp(200px, 25vw, 280px);
  object-fit: cover;
}

.featured-product-details {
    text-align: center;
}

.featured-product-details h3,
.featured-product-details p,
.featured-rating {
    text-align: left;
}


.featured-product-details h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.featured-rating {
    color: var(--yellow);
    font-size: 18px;
    margin-bottom: 15px;
}

.featured-product-details p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 12px;
}

.featured-price {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-pink);
    margin-bottom: 15px;
}

.featured-product-details .btn {
    padding: 15px 40px;
    font-size: 18px;
}

/* You May Also Like Section */
.you-may-like-section {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-card:nth-child(1) { background: var(--light-pink); }
.contact-card:nth-child(2) { background: #FFF9E5; }
.contact-card:nth-child(3) { background: var(--light-pink); }

.contact-icon { font-size: 48px; margin-bottom: 20px; }
.contact-card h3 { margin-bottom: 15px; font-size: 22px; }
.contact-card p { color: var(--gray); line-height: 1.8; }

.contact-card a {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 500;
}
.contact-card a:hover { text-decoration: underline; }

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}
.social-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s;
}
/* SVG inside round social buttons */
.social-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: #fff;
  stroke: #fff;
  stroke-width: 1.5;
}

.social-icon:hover { background: var(--coral); }

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-pink), var(--coral));
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: var(--light-gray);
}

/* Contact Form */
.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.contact-form h3 { margin-bottom: 15px; font-size: 24px; }
.contact-form p { color: var(--gray); margin-bottom: 30px; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
}

/* Custom Select Dropdown */
.custom-select { position: relative; margin-bottom: 20px; }
.custom-select select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background: white;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.custom-select::after {
    content: '▼';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--gray);
    font-size: 12px;
}

.form-message { margin-top: 20px; padding: 15px; border-radius: 8px; display: none; }
.form-message.success { background: #d4edda; color: #155724; display: block; }
.form-message.error { background: #f8d7da; color: #721c24; display: block; }

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-pink), var(--coral));
    color: white;
    padding: 40px;
    border-radius: 15px;
}
.contact-info-card h3 { margin-bottom: 15px; font-size: 24px; }
.contact-info-card ul { list-style: none; margin: 20px 0; }
.contact-info-card li { margin-bottom: 15px; font-size: 16px; }
.promo-image { margin-top: 30px; border-radius: 10px; overflow: hidden; }
.promo-image img { width: 100%; border-radius: 10px; }

/* FAQ */
.faq-section { background: white; padding: 40px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.faq-section h3 { font-size: 28px; margin-bottom: 15px; text-align: center; }
.faq-section > p { text-align: center; color: var(--gray); margin-bottom: 30px; }
.faq-item { border-bottom: 1px solid #eee; margin-bottom: 15px; }
.faq-question {
    width: 100%;
    text-align: left;
    padding: 15px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-icon { transition: transform 0.3s; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
    padding: 0 15px; color: var(--gray);
}
.faq-item.active .faq-answer { max-height: 500px; padding: 0 15px 15px; }

/* Footer */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 60px 20px 20px;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer .social-icons {
  justify-content: flex-start;
  margin-left: 0;
}

.footer .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand p { margin: 20px 0; color: #aaa; }
.footer h4 { margin-bottom: 20px; font-size: 18px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #aaa; text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: white; }
.footer-contact p { margin-bottom: 10px; color: #aaa; font-size: 14px; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #333; color: #aaa; }


/* ==== Products & About Page Overrides ==== */
.hero.hero--products,
.hero.hero--about {
  margin-top: 0;
  padding-top: 60px;
  min-height: clamp(320px, 55vh, 600px);
}

/* This positions the title at the top */
.page-products .hero-content,
.page-about .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%; /* Prevents text from hitting edges */
  height: auto; /* Resets height */
  padding: 0;
  gap: 1.0rem; /* Space between title and subtitle */
}

/* This removes the subtitle from the title's influence */
.page-products .hero-title,
.page-about .hero-title,
.page-products .hero-subtitle,
.page-about .hero-subtitle {
  position: static;
  transform: none;
  width: auto;
  margin: 0;
}


/* Home Page Section Color Swaps */
.page-home .best-sellers-home {
    background-color: #ffffff !important;
}
.page-home .about-home {
    background-color: var(--light-pink) !important;
}
.page-home .contact-preview {
    background-color: #ffffff !important;
}


/* Section colors */
.page-products .products-section,
.page-about .mission-section {
  background: #ffffff !important;
  color: #111;
}

.page-products .featured-product-section {
  background: var(--light-pink) !important;
  color: #111;
}

.page-products .you-may-like-section,
.page-about .story-section {
  background: #f5f5f7 !important;
  color: #111;
}

/* Responsive */
@media (max-width: 900px) {
    .nav-menu {
        position: absolute;
        right: 20px;
        top: 60px; /* Adjusted for shorter navbar */
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        padding: 12px 16px;
        flex-direction: column;
        gap: 12px;
        display: none;
        z-index: 999;
    }

    .featured-product { grid-template-columns: 1fr; }
    .story-content { flex-direction: column; }
    .contact-form-wrapper, .footer-content { grid-template-columns: 1fr; }
    .hero-buttons, .cta-buttons { flex-direction: column; }
    .page-header h1, .page-header-contact h1 { font-size: 32px; }

    .nav-toggle { display: inline-block; }
    .nav-menu.open { display: flex; }

    /* Convert product grids to horizontal scroll on mobile */
    .best-sellers-home .products-grid,
    .page-products .products-section .products-grid-main,
    .page-products .you-may-like-section .products-grid-like {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 4px 4px 12px 4px;
        margin-left: -12px;
        margin-right: -12px;
        scrollbar-width: none;
    }
    .best-sellers-home .products-grid::-webkit-scrollbar,
    .page-products .products-section .products-grid-main::-webkit-scrollbar,
    .page-products .you-may-like-section .products-grid-like::-webkit-scrollbar {
        display: none;
    }

    /* Set fixed width for scrolling cards */
    .best-sellers-home .product-card,
    .page-products .products-section .product-card,
    .page-products .you-may-like-section .product-card {
        flex: 0 0 190px;
        scroll-snap-align: start;
        padding-bottom: 70px;
    }
    
    .product-card .product-button {
      bottom: 15px;
      left: 15px;
      right: 15px;
      width: calc(100% - 30px);
    }
    
    .page-products .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .page-about .hero-title {
        font-size: clamp(1.5rem, 5vw, 2.0rem);
    }

    .page-products .hero-subtitle,
    .page-about .hero-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }
}

/* Nudge home page hero content down */
.page-home .hero-content {
  padding-top: 8rem;
}

/* ==========================================================
   HOME PAGE HERO TITLE — Authentic Signature Font
   ========================================================== */
.page-home .hero-title {
  font-family: 'Authentic Signature', cursive;
  font-weight: normal;
  font-size: clamp(2.8rem, 5vw + 1rem, 4.5rem);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 1px;
  text-transform: none; /* keep the handwritten style */
}

/* Mobile: shrink slightly so it stays on one line */
@media (max-width: 900px) {
  .page-home .hero-title {
    font-size: clamp(1.8rem, 4vw + 0.6rem, 2.5rem);
    line-height: 1.05;
  }
}



