/*
Theme Name: Sweet Steeps
Author: Erhan
Description: Theme for Sweet Steeps website
Version: 1.0
*/



@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
/* CSS Reset - Remove default browser styling */

/* Universal reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Remove default styling from common elements */
  html, body, div, span, applet, object, iframe,
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  a, abbr, acronym, address, big, cite, code,
  del, dfn, em, img, ins, kbd, q, s, samp,
  small, strike, strong, sub, sup, tt, var,
  b, u, i, center, dl, dt, dd, ol, ul, li,
  fieldset, form, label, legend, table, caption,
  tbody, tfoot, thead, tr, th, td, article, aside,
  canvas, details, embed, figure, figcaption, footer,
  header, hgroup, menu, nav, output, ruby, section,
  summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
  }
  
  /* HTML5 display-role reset for older browsers */
  article, aside, details, figcaption, figure,
  footer, header, hgroup, menu, nav, section {
    display: block;
  }
  
  /* Remove list styling */
  ol, ul {
    list-style: none;
  }
  
  /* Remove quote marks */
  blockquote, q {
    quotes: none;
  }
  
  blockquote:before, blockquote:after,
  q:before, q:after {
    content: '';
    content: none;
  }
  
  /* Reset table styling */
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  /* Remove button styling */
  button {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
  }
  
  /* Remove input styling */
  input, textarea, select {
    font: inherit;
    border: none;
    outline: none;
    background: none;
  }
  
  /* Remove link styling */
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Reset image styling */
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }


:root {

    /* Colors */
    --pink-10:#F7DBE8 ;
    --pink-20: #F0B8D0;
    --pink-30: #E894B9;
    --pink-40: #E171A1;
    --pink-50: #D94D8A;
    --pink-60: #AE3E6E;
    --pink-70: #822E53;
    --pink-80: #571F37;
    --pink-90: #2B0F1C;
    --pink-brand:#F399C1;

    --purple-40: #992263;
    --purple-50: #942160;


    --neutral-10:#E7E7E7;
    --neutral-20: #CFCFCF;
    --neutral-30: #B8B8B8;
    --neutral-40: #A0A0A0;
    --neutral-50: #888888;
    --neutral-60: #6D6D6D;
    --neutral-70: #525252;
    --neutral-80: #363636;
    --neutral-90: #1B1B1B;

   /* Font details */

   --bodyFont: 'Mulish',sans-serif;
   --headerFont: 'Fraunces', serif; 
   --header2Font: "Bricolage Grotesque", sans-serif; 

   --baseFontSize: 1.15rem;
   --baseNavSize: 1.2rem;

   --body-copy-colour: var(--neutral-50);
   --header-copy-colour: var(--neutral-60);
   --quote-copy-colour: var(--pink-50);

   --xx-large: 2.986rem;
   --x-large: 2.488rem;
   --large: 1.25rem;
   --normal: 1rem; 
   --small: .833rem;
   --x-small: .694rem;

   --font-weight-thin: 100;
   --font-weight-light: 300;
   --font-weight-normal: 400;
   --font-weight-heavy: 600;

   --text-line-height-normal: 1.75rem;
   --text-line-height-large: 2.25rem;
   --text-line-height-x-large: 2.75rem;
   --text-line-height-xx-large: 3rem;

   --border-radius--small: 10px;
   --border-radius--normal: 20px;
   --border-radius--large: 40px;
}

/* Subtle teapot background pattern on body */
body {
    background-color: #ffffff;
}


p {
    font-family: var(--bodyFont);
    color: var(--neutral-80);
    line-height: var(--text-line-height-normal);
    text-align: left;
    font-size: var(--baseFontSize);
}

h2 {
    font-family: var(--headerFont);
    font-size: var(--large);
    text-transform:uppercase;
    color: Var(--purple-50);
    letter-spacing: .2rem;
}

.container{
    margin: 0 auto;
}

/**
Lenis
*/
html.lenis {
    height: auto;
  }
  .lenis.lenis-smooth {
    scroll-behavior: auto;
  }
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  .lenis.lenis-scrolling iframe {
    pointer-events: none;
  }


.custom-logo {
    max-height: 125px;
    width: auto;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 60px 0;
    display: flex;
    justify-content: center;
    gap:  4rem;
}

.nav-menu li {
    color: var(--pink-60);
}

.nav-menu li a:link, .nav-menu li a:visited {
    color: var(--purple-50);
    text-decoration: none;
    font-size: var(--baseNavSize);
    font-family: var(--header2Font);
    width: auto;
}

.nav-menu li a:hover {
    color: var(--pink-40);
}

.nav-menu .nav-cta a {
    background-color: var(--pink-brand);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

.nav-menu .nav-cta a:hover {
    background-color: var(--pink-40);
    color: white;
}

.nav-menu .nav-cta a:visited {
    color: white;
}

/* Home page */

.custom-logo{
    display: inherit;
}

.site-header {
    width: 100%;
    top: 0;
    left: 0;
    background: white;
    z-index: 1000;
    text-align: center;
    padding-top: 30px;
}


.hero-section{
    margin: 100px auto;
}

.hero-header-sticky {
    text-align: center;
    padding: 30px 20px 60px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--headerFont);
    font-size: var(--xx-large);
    font-weight: var(--font-weight-normal);
    color: var(--pink-60);
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

.hero-image{
    width:100%;
    height: auto;
}

/* Home about section */

.home-about-section {
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 48px auto;
}

.home-about-description {
   color: var(--pink-60);
   font-family: var(--headerFont);
   font-size: var(--x-large);
   line-height: var(--text-line-height-xxx-large);
}

.home-about-image {
    width: 100%;
    height: auto;
}


.home-works-section-title h1, .recent-events-section-title h1, .home-follow-us-section-title h1 {
    font-family: var(--headerFont);
    font-size: var(--x-large);
    color: var(--pink-60);
    line-height: 4rem;
    font-weight: var(--font-weight-light);
}


/* Home works section */

.home-works-section{
    width: 100%;
    margin-top: 128px;
}

.home-works-section-title{
    width: 450px;
    text-align: center;
    margin: 0 auto;

    p {
        font-family: var(--bodyFont);
        color: var(--neutral-80);
        line-height: var(--text-line-height-normal);
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
        font-size: var(--baseFontSize);
    }
}

.home-works-section-step {
    display: flex;
    align-items: center;
    gap: 200px;
    height: 400px;
    justify-content: center;
}

.home-works-section-step-image-container{
    width: 500px;
    display: flex;
    justify-content: center;
}

.home-works-section-step-image{
   margin: 0 auto;
}
    

.home-works-section-step-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;

    h3 {
        font-family: var(--headerFont);
        font-size: var(--normal);
        font-weight: var(--font-weight-normal);
        text-transform:uppercase;
        color: Var(--purple-50);
        letter-spacing: .2rem;
    }

    h4 { 
        font-family: var(--bodyFont);
        font-size: var(--large);
        font-weight: var(--font-weight-heavy);

    }

  }


/* Recent events section */

.recent-events-section {
    position: relative;
    overflow: hidden;
}

.recent-events-section-title {
    padding-left: 200px;
}

.recent-events-section-images {
    position: relative;
    width: 100%;
    height: 440px;
}

.image-track {
    display: flex;
    gap: 56px;
    padding: 20px 0;
    padding-right: 56px;
    position: relative;
    width: max-content;
    will-change: transform;
}

.track-image {
    flex-shrink: 0;
    width: 325px;
    height: 400px;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius--normal);
}

/* Home follow section */
.home-follow-us-section{
    width: 500px;
    margin: 0px auto 64px auto;

}

.home-follow-us-section-image {
   
}




/* Page template */

.page-header {
    color: var(--white);
    text-align: center;
    font-size: var(--text-lg);
    background: rgb(240,184,208);
    background: linear-gradient(34deg, rgba(240,184,208,1) 0%, rgba(247,219,232,1) 100%);
    padding: 24px 0px; 
    /* margin-top: 300px;
    height: 200px; */
    display: flex;
    justify-content: center;
}

.page-header-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.page-header h1 {
    font-family: var(--headerFont);
    font-size: var(--x-large);
    font-weight: var(--font-weight-normal);
    color: var(--purple-50);
    text-transform: uppercase;
}


.page-content {
    padding: var(--spacing-lg) 0;
}



.subtitle {
    font-family: var(--bodyFont);
    color: var(--purple-40);
    line-height: var(--text-line-height-normal);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* About page */

.about-section{
    min-height:500px;
    max-width: 1000px;
    margin: 64px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.home-about-title {
    font-family: var(--headerFont);
    font-size: var(--xx-large);
    font-weight: var(--font-weight-normal);
    color: var(--pink-60);
    text-align: left;
}

.about-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image{
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
}




/* Page Content */

.page-content p{
    font-size: var(--baseFontSize);
    line-height: var(--text-line-height-large);
}

.entry-content {
    font-family: var(--bodyFont);
    margin-left: auto;
    margin-right: auto;
    padding: 32px 0 0 0 ;
}

.entry-content h2 {
    font-family: var(--header2Font);
    color: var(--header-copy-colour);
    font-weight: var(--font-weight-normal);
    font-size: var(--large);
}





/* Packages */

.package-accordions h3 {
    font-family: var(--headerFont);
    text-transform:uppercase;
    color: Var(--purple-50);
    letter-spacing: .2rem;
}

.package-accordions h2 {
    font-family: var(--headerFont);
    font-size: var(--xx-large);
    font-weight: var(--font-weight-thin);
    text-transform:uppercase;
    color: Var(--pink-50);
    letter-spacing: .2rem;
}

.staggered-images {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.staggered-image {
    max-width: 450px;
    height: auto;
    opacity: 0;
    transform: translateY(50px);
}

.image-left {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.2s;
    margin-top: -50px;
    
}

.image-right {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.4s;
    margin-top: 150px;
    animation-range: contain;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        scale: 0.9;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        scale: 1;
    }
}

.full-width-image {
    width: 100vw;
    height: 450px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: 180px;
    position: relative;
    overflow: hidden;
}

.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}



/* Package-accordian  */

.package-accordions {
    max-width: 1200px;
    margin: 24px auto;
    padding: 0px 24px;
}

.package-item {
    border-bottom: 1px solid var(--pink-20);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    background: white;
}

.package-header {
    display: flex;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    position: relative;
    z-index: 2;
    background: white;
    margin: 0;
}

.package-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(-8px);
    position: relative;
    z-index: 1;
    visibility: hidden;
}

.package-item.active .package-content {
    max-height: 2000px;
    opacity: 1;
    padding-bottom: 20px;
    transform: translateY(0);
    visibility: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-trigger {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    position: relative;
    z-index: 3;
    background: white;
    padding: 0;
    margin: 0;
}

.package-trigger h2 {
    margin: 0;
    padding: 0;
}

.package-trigger .chevron {
    width: 32px;
    height: 32px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    stroke-width: 2px;
    color: var(--pink-70);
    transform-origin: center;
    flex-shrink: 0;
}

.package-description {
    margin-bottom: 30px;
}

.package-content p {
    font-family: var(--bodyFont);
    font-size: var(--baseFontSize);
    margin: 0px;
}

.image-header-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 10px 0 0 0;
}

.package-item.active .chevron {
    transform: rotate(180deg);
}


.book-button {
    background-color: var(--pink-brand);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--bodyFont);
    transition: background-color 0.3s ease;
}

.book-button:hover {
    background-color: var(--pink-40);
}

.package-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 24px;
}

.package-column ul{
   margin-block-start: .5rem;
   padding-left: 1.5rem;
}

.package-list li{
    font-family:var(--bodyFont) ;
    font-size: var(--baseFontSize);
    padding-bottom: 8px;
    color: var(--body-copy-colour);
    list-style-type: circle;
    gap: 40px;
}

.package-list li::marker {
    color: var(--pink-60)
}

.package-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.package-gallery-item {
    position: relative;
    width: 100%;
}

.package-gallery-item.animate {
    animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.thumb-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 32px;
}

.feature-image img {
    width: 100%;
    height: auto;
}

.feature-content {
    display: flex;
    align-items: center;
}

.feature-content h2 {
    font-family: var(--bodyFont);
    color: var(--pink-50);
    line-height: var(--text-line-height-xx-large);
    font-weight: var(--font-weight-light);
}

/* CTA section */
.cta-section {
    background: rgb(240,184,208);
    background: linear-gradient(34deg, rgba(240,184,208,1) 0%, rgba(247,219,232,1) 100%);
    padding: 80px 0;
    text-align: center;
    margin: 100px 0;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-section h2 {
    font-family: var(--headerFont);
    color: var(--purple-50);
    font-size: var(--x-large);
    margin-bottom: 20px;
    font-weight: var(--font-weight-light);
}

.cta-section p {
    font-family: var(--bodyFont);
    color: var(--purple-40);
    font-size: var(--normal);
    margin-bottom: 30px;
    line-height: var(--text-line-height-normal);
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: var(--pink-brand);
    color: white !important;
    padding: 12px 40px;
    border-radius: 16px;
    font-family: var(--bodyFont);
    font-size: var(--baseFontSize);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-container a{
    color:var(--white);
}

.cta-button:hover {
    background-color: var(--pink-40);
}

/* WooCommerce Product Page */
.product-content {
    padding: 60px 20px;
}

.product-content .container{
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Product Images */
.woocommerce-product-gallery {
    width: 100% !important; /* Override WooCommerce default */
}

/* Product Title */
.product_title {
    font-family: var(--headerFont);
    color: var(--pink-60);
    font-size: var(--xx-large);
    margin-bottom: 20px;
}

/* Price */
.price {
    font-family: var(--bodyFont);
    color: var(--pink-50);
    font-size: var(--large);
    margin: 20px 0;
}

/* Add to Cart Button */
.single_add_to_cart_button {
    background-color: var(--pink-brand) !important;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-family: var(--bodyFont);
    transition: background-color 0.3s ease;
}

.single_add_to_cart_button:hover {
    background-color: var(--pink-40) !important;
}

/* Product Description */
/* Product Layout */
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 0 auto;
    max-width: 1200px;
}

/* Product Images */
.product-images {
    width: 100%;
}

.woocommerce-product-gallery__wrapper {
    margin: 0;
}

/* Product Info */
.product-info {
    padding: 20px 0;
}

.product_title {
    font-family: var(--headerFont);
    font-size: var(--xx-large);
    color: var(--pink-60);
    margin-bottom: 20px;
}

.price {
    font-family: var(--bodyFont);
    font-size: var(--large);
    color: var(--pink-50);
    margin: 20px 0;
}

.woocommerce-product-details__short-description {
    font-family: var(--bodyFont);
    color: var(--body-copy-colour);
    line-height: var(--text-line-height-normal);
    margin: 20px 0;
}

/* Add to Cart Button */
.single_add_to_cart_button {
    background-color: var(--pink-brand) !important;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-family: var(--bodyFont);
    transition: background-color 0.3s ease;
}

.single_add_to_cart_button:hover {
    background-color: var(--pink-40) !important;
}

/* Product Tabs */
.woocommerce-tabs {
    padding: 40px 0;
}

.wc-tabs {
    list-style: none;
    margin: 0 0 40px 0;
    padding: 0;
    border-bottom: 1px solid var(--pink-20);
    display: flex;
    gap: 30px;
}

.wc-tabs li a {
    display: block;
    padding: 10px 0;
    color: var(--pink-50);
    text-decoration: none;
    font-family: var(--bodyFont);
}

.wc-tabs li.active a {
    color: var(--pink-60);
    border-bottom: 2px solid var(--pink-40);
}

/* Product Description */
.woocommerce-Tabs-panel {
    font-family: var(--bodyFont);
    color: var(--body-copy-colour);
    line-height: var(--text-line-height-normal);
}









/* FAQ */

/* FAQ Accordion Styles */

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

.faq-section {
    font-family: var(--header2Font);
    color: var(--header-copy-colour);
    margin-top: 48px;
}

.faq-item {
    border-bottom: 1px solid var(--pink-20);
    margin: 20px 0 10px 0;
    overflow: hidden;
}

.faq-item br {
    display: none;
}


.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 32px;
}

.faq-trigger {
    width: 100%;
    text-align: left;
    padding: 1d0px 0;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--pink-60);
    font-family: var(--bodyFont);
    font-size: var(--baseFontSize);
    transition: color 0.3s ease;
    line-height: var(--text-line-height-normal);
}

.faq-trigger:hover, .faq-trigger:visited {
    color: var(--pink-40);
}

.faq-trigger .chevron {
    width: 24px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    stroke-width: 2px;
    color: var(--pink-70);
    position: relative;
    top: -1px; 
}

.faq-answer {
    opacity: 0;
    height: 0;
    transform: translateY(-10px);
    transition:  opacity 0.3s ease, 
    transform 0.3s ease,
    max-height 0.3s ease,
    padding-bottom 0.3s ease;
    color: var(--neutral-70);
    padding: 0 0 0px 55px; 
    font-family: var(--bodyFont);
    font-size: var(--baseFontSize);
    line-height: var(--text-line-height-normal);
    pointer-events: none;
}


.faq-item.active .chevron {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    padding: 10px 0 20px 45px; 
    pointer-events: auto;
    max-height: 1000px;
    transition: 
        opacity 0.35s ease, 
        transform 0.35s ease,
        max-height 0.35s ease,
        padding-bottom 0.35s ease;
}


/* Contact Form 7 Styles with Floating Labels */
/* Contact Form 7 Styles */

.form-container{
    max-width: 800px;
    margin: 48px auto;
}

.form-group {
    margin-bottom: 8px;
}

.form-group br{
    display: none;
}

.form-group label {
    display: block;
    margin-bottom: 2px;
    color: var(--pink-60);
    font-family: var(--bodyFont);
    font-size: var(--normal);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--neutral-10);
    border: 1px solid var(--neutral-20);
    border-radius: 4px;
    font-family: var(--bodyFont);
    font-size: var(--normal);
    margin: 0;
}

.form-group input[type="submit"] {
    background-color: var(--pink-brand);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--bodyFont);
    font-size: var(--normal);
}


/* Footer */

.site-footer {
    background-color: var(--pink-20);
    padding: 60px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 0 0 20%;
    padding: 0 20px;
}

.footer-content h3{
    font-family: var(--headerFont);
    color: var(--pink-70);
    font-size: var(--normal);
    padding-top: 10px;
}

.footer-content p{
    font-family: var(--bodyFont);
    color: var(--pink-60);
    font-size: var(--normal);
}

.footer-content .footer-menu a:link,
.footer-content .footer-menu a:visited,
.footer-content .contact-info a:link,
.footer-content .contact-info a:visited {
    text-decoration: none;
    color: var(--pink-60);
    font-family: var(--bodyFont);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}


.footer-nav h3,
.footer-contact h3,
.footer-social h3 {
 
    font-size: var(--normal);
    margin-bottom: 20px;
}

.footer-email{
    font-family: var(--bodyFont);
    color: var(--pink-60);
    font-size: var(--normal);
}


.footer-menu,
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-hours li, .footer-menu li,
.contact-info li, .footer-policies li {
    margin-bottom: 10px;
    font-family: var(--bodyFont);
    color: var(--pink-60);
}



.footer-menu a:hover,
.contact-info a:hover,
.footer-policies a:hover {
    color: var(--pink-40);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-logo{
    fill: var(--pink-60);
}

.social-logo :hover {
    fill: var(--pink-30);
}

.footer-bottom {
    border-top: 1px solid var(--pink-20);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--pink-50);
    font-size: var(--x-small);
    font-family: var(--bodyFont);
}

.footer-hours ul, .footer-policies ul {
    padding-left: 0;
    list-style-type: none;
    color: var(--body-copy-colour);
}

.spacer-sm{
    height: 300px;
}

.spacer-lg{
    height: 900px;
}


/* Mobile Navigation - Base Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    position: relative;
    width: 30px;
    height: 30px;
    z-index: 1001;
    cursor: pointer;
  }
  
  .menu-icon,
  .menu-icon::before,
  .menu-icon::after {
    background-color: var(--pink-brand);
    content: '';
    display: block;
    height: 2px;
    position: absolute;
    transition: all 0.3s ease;
    width: 100%;
  }
  
  .menu-icon {
    top: 50%;
    transform: translateY(-50%);
  }
  
  .menu-icon::before {
    top: -8px;
  }
  
  .menu-icon::after {
    bottom: -8px;
  }
  
  .mobile-menu-toggle.active .menu-icon {
    background-color: transparent;
  }
  
  .mobile-menu-toggle.active .menu-icon::before {
    transform: rotate(45deg);
    top: 0;
  }
  
  .mobile-menu-toggle.active .menu-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
  }
  
  /* Mobile Responsive Styles */


  @media (max-width: 846px) {
    .nav-menu {
        gap: 2rem;
    }

    .nav-menu li a {
        font-size: 1rem;
    }

    .nav-menu .nav-cta a {
        padding: 10px 20px;
        white-space: nowrap;
    }

    /* Home page */
    .home-about-section{
        display: grid;
        grid-template-columns: 1fr;
        padding: 0px 24px;
        width: 100%;
        justify-items: stretch;
        margin: 0px 0px 0px 0px;
    }

    .home-about-description{
        font-size: calc(var(--xx-large) * 0.7);
        max-width: 650px;
        justify-self:start;
    }

    .home-about-image{
        margin-top: 32px;
        max-width: 350px;
        justify-self: end;
    }

    .home-works-section{
        max-width: 800px;
        margin: 128px auto;
        padding: 0px 24px;
    }

    .home-works-section-step{
        gap: 100px;
    }

    .recent-events-section-title{
        padding: 0px 0 48px 100px;
    }


    /* About Page */
    .page-header{
        margin-top: 64px;
    }
    .page-header-content, .entry-content{
        padding: 24px;
    }

    .wp-image-122{
        width: 100% !important;
    }

    /* Packages */

    .staggered-images{
       gap: 16px;
       padding: 50px 20px 100px 20px;
    }

    .staggered-image{
        width: 375px;
        height: auto;
    }

    

}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
      display: block;
      position: absolute;
      right: 20px;
      top: 20px;
      z-index: 1001;
    }
  
    .nav-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: white;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      margin: 0;
      padding: 0;
      z-index: 1000;
      opacity: 0;
      transform: translateY(-20px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
  
    .nav-menu.active {
      display: flex;
      opacity: 1;
      transform: translateY(0);
    }
  
    .nav-menu li {
      margin: 0;
      text-align: center;
      width: 100%;
    }
  
    .nav-menu li a {
      font-size: 1.2rem;
      display: block;
      padding: 10px 0;
      width: 100%;
    }
  
    .nav-menu .nav-cta {
      margin-top: 20px;
      width: auto;
    }
  
    .nav-menu .nav-cta a {
      display: inline-block;
      min-width: 200px;
    }
  
    /* Header */
    .site-header {
      padding-top: 15px;
    }
  
    .custom-logo {
      max-height: 80px;
    }
  
    /* Hero Section */
    .hero-title {
      font-size: calc(var(--xx-large) * 0.7);
      margin: 100px auto;
      padding: 0 20px;
    }

    .hero-image{
        width:100%;
    }
  
    /* Home Sections */
    .home-works-section-title {
      width: 100%;
    }


  
    .home-about-section,
    .home-works-section,
    .recent-events-section,
    .home-follow-us-section {
      padding: 40px 20px;
    }
  
    /* About Page */
    .about-section {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      padding: 20px;
    }
  
    /* Packages */
    .package-columns {
      flex-direction: column;
    }
  
    .package-column {
      width: 500px;
    }
  
    .package-gallery-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
  
    /* Product Layout */
    .product-layout {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  
    /* Footer */
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    /* Feature Grid */
    .feature-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  
    /* Hover Image */
    .hover-image {
      width: 95vw;
      max-width: none;
    }
}


@media (max-width: 480px) {
    /* Navigation */
    .nav-menu {
      padding: 0 20px;
    }
  
    .nav-menu li a {
      font-size: 1.1rem;
    }
  
    .nav-menu .nav-cta a {
      min-width: 180px;
    }
  
    /* Header & Hero */
≈
    .hero-section {
        margin: 0px auto;
    }

    .hero-header-sticky{
        padding: 0px;
    }

    .hero-title {
      font-size: calc(var(--xx-large) * 0.8);
      margin: 80px auto;
      padding: 0 15px;
    }
  
    /* Home About Section */
  
    .home-about-section-title {
      width: 100%;
      margin-top: 200px;
    }
  
    /* Home Works Section */
    .home-works-section,
    .home-works-section-title {
      width: 100%;
      max-width: 340px;
    }
  
    .home-works-section-steps {
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 340px;
    }
  
    .home-works-section-step {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
  
    .home-works-section-step-image-container {
      width: 100%;
      max-width: 400px;
      margin: 0 auto;
    }
  
    .home-works-section-step-image {
      width: 100%;
      height: auto;
    }
  
    /* Recent Events Section */
    .recent-events-section-title {
      padding: 0px;
      text-align: center !important;
    }
  
    .recent-events-section-title p {
      text-align: center !important;
    }
  
    /* Follow Us Section */
    .home-follow-us-section {
      width: 100%;
      max-width: 400px;
    }
  
    .home-follow-us-section-image {
      width: 100%;
      height: 100%;
    }
  
    /* Footer */
    .footer-grid {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .social-links {
      justify-content: center;
    }
  
    .footer-hours p {
      text-align: center !important;
    }

    .footer-content{
        margin: 0px;
    }
  
    /* About Page - Staggered Images */
    .staggered-images {
      max-width: 370px;
      margin: 0 auto;
      padding: 100px 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 16px;
    }
  
    .staggered-image {
      max-width: 200px;
      height: auto;
      opacity: 0;
      transform: translateY(50px);
    }
  
    .image-left {
      animation: fadeInUp 1s ease forwards;
      animation-delay: 0.2s;
      margin-top: -50px;
    }
  
    .image-right {
      animation: fadeInUp 1s ease forwards;
      animation-delay: 0.4s;
      margin-top: 50px;
      animation-range: contain;
    }
  
    /* Packages */
    .package-accordions h2 {
      font-size: var(--large);
    }
  
    .package-column {
      width: 325px;
    }
  
    .package-gallery-item,
    .package-gallery-item img {
      width: 100%;
    }
}

