 /* ================= ROOT COLORS ================= */
:root {
    --green: #4F5D4A;
    --gold: #D8C9A3;
    --soft: #F7F6F2;
    --dark: #2E2E2E;
    --white: #ffffff;
  }
   h2 {
    color: #4F5D4A;
  }
  
  /* ================= RESET ================= */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body.page-with-navbar {
    font-family: 'Poppins', sans-serif;
    background: var(--soft);
    color: var(--dark);
    padding-top: 80px;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  /* ================= NAVBAR ================= */
  .navbar {
    background: rgba(247, 246, 242, 0.95);
    border-bottom: 1px solid rgba(216, 201, 163, 0.4);
  }
  
  .navbar-brand span {
    font-family: 'Playfair Display', serif;
    letter-spacing: 3px;
    color: var(--green);
  }
  
  .nav-link {
    font-size: 0.9rem;
    margin-left: 15px;
  }
  
  .nav-link:hover {
    color: var(--gold) !important;
  }
  
  /* ================= HERO ================= */
  .hero-section {
    height: 70vh;
    position: relative;
  }
  
  .hero-slide {
    height: 70vh;
    background-size: cover;
    background-position: center;
    animation: slowZoom 14s ease-in-out infinite;
  }
  
  @keyframes slowZoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
  }
  
  /* replace images here */
  .hero-1 { background-image: url("aurahero1.jpeg"); }
  .hero-2 { background-image: url("aurahero2re.jpeg"); }
  .hero-3 { background-image: url("aurahero3.jpeg"); }
  
  /* ================= ICON SERVICES ================= */
  .icon-services {
    padding: 90px 0;
    background: var(--soft);
  }
  
  .icon-box {
    text-align: center;
    padding: 40px 25px;
  }
  
  .icon-box i {
    font-size: 2.2rem;
    color: var(--green);
    margin-bottom: 20px;
  }
  
  .icon-box h5 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
  }
  
  .icon-box a {
    text-decoration: none;
    color: var(--gold);
    font-weight: 500;
  }
  
  /* ================= ABOUT ================= */
  .about-editorial {
    background: var(--white);
    padding: 100px 0;
  }
  
  .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .about-content {
    padding: 40px 60px;
  }
  
  .about-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--green);
    margin-bottom: 25px;
  }
  
  .about-mark span {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 30px auto 0;
  }
  

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

.services-section {
    padding: 120px 0;
    background: #f7f6f2;
  }
  .services-section .container {
    max-width: 1400px;  
  }
  
  .services-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    margin-bottom: 25px;
    color: #4F5D4A;
  }
  
  .services-section .row {
    margin-top: 80px;
  }
  
  /* COLUMN CONTROL */
  .services-section .col-lg-4
  .services-section .col-md-4 {
    padding-left: 35px;
    padding-right: 35px;
  }
  
  /* SERVICE CARD */
  .service-card {
    background: transparent;
    border: none;
    text-align: center;
  }
  
  /* IMAGE CONTAINER — KEY PART */
  .service-img {
    width: 100%;
    aspect-ratio: 3 / 4;       
    overflow: hidden;
    margin-bottom: 30px;
  }
  
  /* IMAGE ITSELF */
  .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* TITLE */
  .service-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: #4F5D4A;
    letter-spacing: 0.3px;
  }
  
  /* DESCRIPTION */
  .service-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    max-width: none;
    margin: 0 auto;
  }
  
  /* SUBTLE LUXURY HOVER (REFERENCE-LIKE) */
  .service-card:hover img {
    transform: scale(1.04);
    transition: transform 0.6s ease;
  }
  
  


   
  /* =================  PACKAGES ================= */
  .academy-section {
    padding: 100px 0;
  }
  
  .academy-content h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
  }
  
  .academy-list {
    list-style: none;
    padding-left: 0;
  }
  
  .academy-list li {
    margin-bottom: 10px;
  }
  
  .academy-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 35px;
    border: 1px solid var(--green);
    text-decoration: none;
    color: var(--green);
  }
  
  .academy-btn:hover {
    background: var(--green);
    color: var(--white);
  }
  
  /* ================= BLOG ================= */
  .blog-section {
    padding: 100px 0;
  }
  
  .blog-card {
    background: var(--white);
    border: 1px solid var(--gold);
  }
  
  .blog-card img {
    width: 100%;
  }
  
  .blog-content {
    padding: 25px;
  }
  
  .blog-date {
    font-size: 0.8rem;
    color: var(--gold);
  }
  
   /* ================= TESTIMONIALS ================= */
.testimonials-section {
    padding: 100px 0;
    background: #f7f6f2;
  }
  
  .testimonials-section h2 {
    font-family: 'Playfair Display', serif;
    color: #4F5D4A;
  }
  
  .testimonials-intro {
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: #555;
  }
  
  .testimonial-card {
    background: #ffffff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 4px;
  }
  
  .testimonial-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
  }
  
  .testimonial-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
  }
  
  .testimonial-card h6 {
    font-size: 0.85rem;
    color: #4F5D4A;
    font-weight: 500;
  }

   
  /* ================= LOCATION ================= */
  .location-section {
    padding: 90px 0;
    background: var(--soft);
  }
  
  /* ================= DIVIDER ================= */
  .section-divider {
    width: 100%;
    height: 1px;
    background: rgba(216, 201, 163, 0.4);
    margin: 80px 0;
  }
  
  /* ================= CONTACT ================= */
  .contact-section {
    padding: 90px 0;
  }
  
  .contact-details p {
    margin-bottom: 10px;
  }
  
  .contact-socials a {
    color: var(--green);
    font-size: 1.3rem;
    margin: 0 10px;
  }
  
  /* ================= FOOTER ================= */
  .footer {
    background: var(--green);
    color: var(--gold);
    padding: 30px 0;
    text-align: center;
  }
  
  /* ================= BACK TO TOP ================= */
  #backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 12px 14px;
    border-radius: 50%;
    display: none;
    z-index: 999;
  }
/* ================= SERVICES – CLEAN EDITORIAL ================= */

.services-editorial {
    padding: 110px 0;
    background: #f7f6f2;
  }
  
  .service-item {
    text-align: center;
    padding: 0 20px;
  }
  
  /* ICON */
  .service-icon {
    width: 56px;
    height: auto;
    margin-bottom: 22px;
  }
  
  /* TITLE */
  .service-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 18px;
    color: #4F5D4A;
  }
  
  /* TEXT */
  .service-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 22px;
  }
  
  /* LINK */
  .service-link {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-decoration: none;
    color: #4F5D4A;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
  }
  
  .service-link:hover {
    border-color: #4F5D4A;
  }
  
  /* SPACING FIX */
  .services-editorial .row > div {
    margin-bottom: 50px;
  }

  /* ================= BOOKING HERO ================= */
.booking-hero {
    height: 55vh;
    background: url("aurapic2.jpeg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
  }
  
  .booking-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(79, 93, 74, 0.45);
  }
  
  .booking-hero h1 {
    font-family: 'Playfair Display', serif;
    color: #D8C9A3;
    font-size: 3rem;
    position: relative;
  }
  
  .booking-hero p {
    color: #f7f6f2;
    position: relative;
  }
  
  /* ================= BOOKING SECTION ================= */
  .booking-section {
    padding: 100px 0;
    background: #f7f6f2;
  }
  
  /* FORM WRAPPER */
  .booking-form {
    background: transparent;
    text-align: center;
  }
  
  /* TITLE */
  .booking-form h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 35px;
    color: #4F5D4A;
  }
  
  /* FORM */
  .booking-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .booking-form input,
  .booking-form select {
    padding: 14px;
    border: 1px solid #4F5D4A;
    background: transparent;
    font-family: 'Poppins', sans-serif;
  }
  
  /* BUTTON */
  .booking-form button {
    margin-top: 10px;
    padding: 14px;
    background: #4F5D4A;
    color: #fff;
    border: none;
    cursor: pointer;
  }
  
  /* LINKS */
  .booking-links {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
  }
  
  .booking-links a {
    text-decoration: none;
    color: #4F5D4A;
    font-size: 0.9rem;
  }
   /* ================= PACKAGE HERO ================= */
.package-hero {
    height: 55vh;
    background: url("aurahero2.jpeg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
  }
  
  .package-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(79, 93, 74, 0.45);
  }
  
  .package-hero .hero-content {
    position: relative;
    text-align: center;
  }
  
  .package-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #f7f6f2;
  }
  
  .package-hero p {
    color: #f7f6f2;
  }
  
  /* ================= PACKAGES ================= */
  .package-section {
    padding: 100px 0;
    background: #f7f6f2;
  }
  
  .package-wrapper {
    text-align: center;
  }
  
  .package-wrapper h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
    color: #4F5D4A;
  }
  
  .package-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
  }
  
  .package-list li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 12px;
  }
  
  /* BUTTON */
  .package-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #4F5D4A;
    color: #fff;
    text-decoration: none;
    margin-bottom: 30px;
  }
  
  /* LINKS */
  .package-links {
    display: flex;
    justify-content: space-between;
  }
  
  .package-links a {
    text-decoration: none;
    color: #4F5D4A;
    font-size: 0.9rem;
  }

 /* ================= BLOG HERO ================= */
 .blog-hero {
    height: 50vh;
    background: url("aurarandom.jpeg") center/cover no-repeat;
    position: relative;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .blog-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(79, 93, 74, 0.45);
  }
  
  .blog-hero .hero-content {
    position: relative;
    text-align: center;
  }
  
  .blog-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #f7f6f2;
  }
  
  .blog-hero p {
    color: #f7f6f2;
  }
  
  /* ================= BLOG SECTION ================= */
  .blog-section {
    padding: 100px 0;
    background: #f7f6f2;
  }
  
  .blog-card {
    background: #ffffff;
    padding: 40px;
    margin-bottom: 40px;
  }
  
  .blog-card h3 {
    font-family: 'Playfair Display', serif;
    color: #4F5D4A;
    margin-bottom: 8px;
  }
  
  .blog-date {
    font-size: 0.8rem;
    color: #999;
    display: block;
    margin-bottom: 15px;
  }
  
  .blog-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
  }
  
  .blog-read {
    color: #4F5D4A;
    text-decoration: none;
    font-size: 0.9rem;
  }
 .contact-section {
    background-color: #4F5D4A;
    color: #F7F6F2;
    padding: 100px 0;
 }
 .contact-section h2,
 .contact-section p,
 .contact-section i,
 .contact-section a {
    color :#D8C9A3; 
 }
 .contact-socials a {
    color: #D8C9A3;
    font-size: 1.4rem;
    margin: 0 10px;
 }
  
 @media (max-width: 576px) {

    .services-grid {
      display: flex;
      flex-direction: column;
      gap: 50px;
    }
  
    .service-item {
      display: flex;
      align-items: flex-start;
      gap: 18px;
    }
  
    .service-icon {
      flex-shrink: 0;
      width: 60px;
    }
  
    .service-icon img,
    .service-icon svg {
      width: 100%;
      height: auto;
    }
  
    .service-content {
      text-align: left;
    }
  
    .service-content h3 {
      font-size: 20px;
      margin-bottom: 8px;
    }
  
    .service-content p {
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 12px;
    }
  
    .service-content a {
      font-size: 14px;
      letter-spacing: 1px;
    }
  
  }
