body, html{
    margin:0;
    padding:0;
    width:100%;
    overflow-x:hidden;
}

body{
    font-family: "segoe-ui", Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
    font-size:12px;
    background:#e8e8e5;
}

a{
    color:#2d3d4b;
    font-weight:600;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    opacity:0.9;
}

a:hover{
    text-decoration: underline;
    opacity:1;
}

/*-- Click to Navigation --*/

/*-- Navigation --*/

#navigation-wrapper{
    position:fixed;
    top:0;
    left:0;
    right:0;
    display:flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    z-index:999;
    transform: translateZ(0);
    will-change: transform;
    touch-action: manipulation;

}

#navigation{
    width:100%;
    height:80px;
    display:flex;
    justify-content: space-between;
    align-items: center;
    box-sizing:border-box;
    padding:0px 40px 0px 40px;
    background:#f2f2f0;
    border-bottom:2px solid #e2e2dc;
    position:relative;
}

#navigation.transparent{
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 120%);
    border-bottom:none;
}

#navigation .logo{
    display:flex;
    align-items: center;
    justify-content: center;
}

#navigation .section{
    display:flex;
    align-items:center;
}

#navigation .section.aligns-left{
    justify-content: left;

}

#navigation .section.aligns-center{
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

#navigation .section.aligns-right{
    justify-content: right;
}

#navigation .menu{
    display:flex;
}

#navigation .menu .menu--item{
    color:#2d3d4b;
    display:flex;
    align-items:center;
    justify-content: center;
    text-transform:uppercase;
    font-style:normal;
    font-weight:600;
    font-size:14px;
    border-bottom:2px solid transparent;
    transition: 0.2s all ease-in-out;
    height:45px;
}

#navigation .menu .menu--item[data-mobile="true"]{
    display:none;
}

#navigation.transparent .menu .menu--item{
    color:#fff;
}

#navigation .menu .menu--item:hover{
    cursor:pointer;
    border-bottom:2px solid #2d3d4b;
}

#navigation.transparent .menu .menu--item:hover{
    border-bottom:2px solid #fff;
}

#navigation .menu .menu--item.icon{
    display:flex;
    align-items:center;
    justify-content: center;
}

#navigation .logo svg{
    width:auto;
    height:45px;
    fill:#2d3d4b;
}


#navigation.transparent .logo svg{
    fill:#fff;
}

#navigation .menu .menu--item svg{
    width:25px;
    height:25px;
    fill:#2d3d4b;
}

#navigation.transparent .menu .menu--item svg{
    fill:#fff;
}

#navigation .menu .menu--item.icon .material-symbols-outlined{
    display:flex;
    align-items:center;
    justify-content: center;
    font-size:22px;
}

#navigation .section.aligns-left .menu .menu--item{
    margin-right:10px;
}

#navigation .section.aligns-right .menu .menu--item{
    margin-left:10px;
}

#navigation .menu .menu--item.outlined{
    padding:3px 7px;
    border:3px solid #2d3d4b;
    box-sizing: border-box;
}

#navigation.transparent .menu .menu--item.outlined{
    padding:3px 7px;
    border:3px solid #fff;
    box-sizing: border-box;
}

#navigation .menu .menu--item.outlined:hover{
    background:#2d3d4b;
    color:#fff;
}

#navigation.transparent .menu .menu--item.outlined:hover{
    background:#fff;
    color:#000;
}

.navigation-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    /* Apply the backdrop filter */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navigation-mobile-wrapper{
    position:fixed;
    top:0px;
    left:-100%;
    width:100vw;
    height:100vh;
    background:#2d3d4b;
    z-index:9999;
    color:#fff;
    transition:all ease-in-out 0.5s;
    box-sizing: border-box;
    padding:30px;
    overflow:scroll
}

.navigation-mobile-close{
    display: flex;
    align-items: center;
    justify-content: right;
}

.navigation-mobile-close-button{
    cursor:pointer;
}

.navigation-mobile-menu .navigation-mobile-menu--item{
    color:#fff;
    display:flex;
    align-items:center;
    justify-content: center;
    text-transform:uppercase;
    font-style:normal;
    font-weight:600;
    font-size:14px;
    transition: 0.2s all ease-in-out;
    cursor: pointer;
    opacity:0.8;
    padding:10px;
}

.navigation-mobile-menu .navigation-mobile-menu--item:hover{
    opacity:1;
}

.navigation-mobile-menu .navigation-mobile-menu--item.outlined{
    padding:3px 7px;
    border:3px solid #fff;
    box-sizing: border-box;
    margin-top:8px;
}

.navigation-mobile-menu .navigation-mobile-menu--item.outlined:hover{
    background:#fff;
    color:#2d3d4b;
}

/*---*/

.pannel{
    width:100vw;
    box-sizing: border-box;
}

.separator--50{
    height:50px;
}

.separator--100{
    height:100px;
}

.separator--150{
    height:150px;
}

.separator--200{
    height:200px;
}

.separator--50.light{
    background:#f7f6f4;
}

.separator--100.light{
    background:#f7f6f4;
}

.separator--150.light{
    background:#f7f6f4;
}

.separator--200.light{
    background:#f7f6f4;
}

.pannel.dark{
    background:#08090a;
}

.pannel.static-entrance{
    background-image:url('../images/static-entrance-001.jpg');
    background-repeat:no-repeat;
    background-position: center top;
    background-color:#0a0a0c;
    background-size:cover;
    display:flex;
    padding-top:200px;
    justify-content: center;
    min-height:100vh;
}

.static-entrance-container{
    color:#fff;
    display:flex;
    flex-direction: column;
    align-items:center;
}

.static-entrance--h1{
    color:#fff;
    font-size:68px;
    font-family: "cormorant-garamond", serif;
    font-weight: 700;
    font-style: normal;
    text-align: center;
}

.static-entrance--p{
    width:500px;
    text-align:center;
    line-height: 20px;
    padding-top:20px;
    font-size:14px;
}

.static-entrance--top{
    display:flex;
    align-items: center;
    justify-content: center;
    width:80%;
}

.static-entrance--top--bar{
    height:0px;
    flex:1;
    border-bottom:2px solid #919ea1;
}

.static-entrance--top--slogan{
    margin-left:30px;
    margin-right:30px;
    text-transform: uppercase;
    font-weight:600;
    font-size:18px;
}

.static-entrance--established{
    font-family: "cormorant-garamond", serif;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    font-size:24px;
    color:#ce864e;
}

.static-entrance span.yellow{
    color:#ce864e;
}

.pannel.small{
    min-height:initial;
    padding-top:50px;
    padding-bottom:100px;
}

.pannel--title{
    margin:0 auto;
    display:flex;
    align-items: center;
    width:50%;
}

.pannel--title--bar{
    border-bottom:2px solid #919ea1;
    height:0px;
    flex:1;
} 

.pannel--title--title{
    text-align: center;
    text-transform: uppercase;
    color:#919ea1;
    font-weight:600;
    padding-left:20px;
    padding-right:20px;
}

.pannel--emphasis{
    font-size:30px;
    font-family: "cormorant-garamond", serif;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    color:#2d3d4b;
}

.pannel--text--emphasis{
    color:#575e60;
    font-size:16px;
    margin:0 auto;
    width:95%;
    max-width:650px;
    text-align: center;
    line-height: 150%;
    font-weight:500;
    padding-top:20px;
}

.pannel--text--standard{
    color:#575e60;
    font-size:14px;
    margin:0 auto;
    width:800px;
    text-align: center;
    line-height: 150%;
    padding-top:20px;
}

.pannel.light{
    background:#f7f6f4;
}

.pannel{
    box-sizing: border-box;
}

span.weddinguru{
    font-family: "pacifico", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size:24px;
}

#footer span.weddinguru{
    color:#fff;
}

#footer span.made-with-love{
    color:#d93b61;
    font-size:16px;
}

.layout-flex{
    display:flex;
}

.space-between{
    justify-content: space-between;
}

.align-center{
    align-items: center;
}

.footer-navigation{
    background:#26343b;
    padding:40px 0px 40px 0px;
    color:#fff;
}

.footer-navigation--container{
    max-width:1200px;
    margin:0 auto;
}

.footer-navigation-top-level{
    margin:0 auto;
    display:flex;
    align-items: center;
    justify-content: center;
    font-size:20px;
    font-weight: 600;
    color:#afb4b5;
}

.footer-navigation-bottom-level{
    margin:0 auto;
    display:flex;
    align-items: center;
    justify-content: center;
    color:#748186;
}

.footer-navigation-item{
    margin-right:15px;
}

.footer-navigation-item:hover{
    cursor:pointer;
}  

.footer-navigation-item:last-child{
    margin-right:0px;
}

.footer{
    background:#1b252a;
    color:#6c797e;
    padding:20px;
}

.footer--container{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    align-items: center;
    justify-content: space-between;
}

.left-picture-panel{
    display:flex;
    width:100vw;
    max-width:1600px;
    margin:0 auto;
    margin-top:50px;
}

.right-picture-panel{
    display:flex;
    width:100vw;
    max-width:1600px;
    margin:0 auto;
    margin-top:50px;
}

.picture-panel{
    position:relative;
}

.text-panel{
    flex:1;
    background:#f2f2f0;
    padding:50px;
    box-sizing: border-box;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.left-picture-panel .picture-panel::before{
    content: "";
    position: absolute;
    bottom: -10px;                     /* Vertical offset */
    left: -15px;                    /* Horizontal offset */
    width: 100%;
    height: 100%;
    background: #e2e2dc; /* Background color (with opacity, if desired) */
    z-index: -1;                   /* Place behind the image */
}

.right-picture-panel .picture-panel{
    margin-top:20px;
}

.right-picture-panel .picture-panel::before{
    content: "";
    position: absolute;
    bottom: 15px;                     /* Vertical offset */
    right: -15px;                    /* Horizontal offset */
    width: 100%;
    height: 100%;
    background: #d6d6cd; /* Background color (with opacity, if desired) */
    z-index: -1;                   /* Place behind the image */
}

.text-panel--large-title{
    font-size:36px;
    font-family: "cormorant-garamond", serif;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    color:#2d3d4b;
}

.text-panel--small-title{
    color:#575e60;
    font-size:14px;
    margin:0 auto;
    text-align: center;
    line-height: 150%;
    font-weight:600;
    text-transform: uppercase;
    padding-bottom:10px;
}

.text-panel--emphasis-text{
    color:#575e60;
    font-size:16px;
    margin:0 auto;
    text-align: center;
    line-height: 150%;
    font-weight:500;
    padding-top:20px;
}

.text-panel--standard-text{
    color:#575e60;
    font-size:14px;
    margin:0 auto;
    text-align: center;
    line-height: 150%;
    padding-top:20px;
}

.text-panel--buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:30px;
}

.text-panel--button{
    padding:3px 10px;
    text-transform: uppercase;
    color:#2d3d4b;
    font-weight:550;
    border:2px solid #2d3d4b;
    margin-right:5px;
    text-align:center;
}

.text-panel--button:hover{
    cursor:pointer;
    background:#2d3d4b;
    color:#fff;
}

.testimonials-outer{
    width:100%;
    position:relative;
    overflow: hidden;
    margin-top:40px;
}

.testimonials-inner{
    position:relative;
    display:flex;
    align-items: center;
    transition:transform 0.5s ease-in-out;
}

.testimonial{
    width:1000px;
    height:400px;
    background:#f2f2f0;
    margin-right:20px;
    box-sizing: border-box;
    display:inline-block;
    border-radius:10px;
    flex-shrink:0;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
}

.testimonial-with-image{
    display:flex;
    align-items:center;
    padding-left:50px;
    padding-right:50px;
}

.testimonial--text{
    width:80%;
    font-family: "cormorant-garamond", serif;
    font-style: normal;
    text-align: center;
    color:#2d3d4b;
    font-size:32px;
}

.testimonial-with-image .testimonial--text{
    font-size:28px;
}

.testimonial--text--right-aligned{
    text-align:right;
}

.testimonial--text--left-aligned{
    text-align:left;
}

.testimonial--image{
    width:200px;
    border-radius:50%;
    overflow:hidden;
}

.testimonial--image--left-aligned{
    margin-right:50px;
}

.testimonial--image--right-aligned{
    margin-left:50px;
}

.testimonial--image img{
    width:100%;
    height: 100%;
    object-fit: cover;
}

.testimonial--author--container{
    margin-top:20px;
    display:flex;
    align-items:center;
    width:200px;
}

.testimonial--author--content--container{
    margin-left:15px;
    margin-right:15px;
    text-align: center;
}

.testimonial--author--bar{
    flex:1;
    height:0px;
    border-bottom:1px solid #e8e8e5;
}

.testimonial--author--content--authors{
    color:#919ea1;
    text-transform: uppercase;
    font-weight:600;
    line-height:100%;
}

.testimonial--author--content--date{
    color:#919ea1;
    line-height:100%;
    margin-top:5px;
}

.testimonial-controls{
    display:flex;
    align-items: center;
    justify-content: center;
    margin-top:30px;
}

.testimonial-control-buttons{
    display:flex;
    align-items:center;
    justify-content: space-between;
}

.testimonial-control-button{
    color:#d7d7d4;
    display:flex;
    align-items:center;
    justify-content: center;
    margin-right:5px;
    transition: all 0.2s ease-in-out;
}

.testimonial-control-button .material-symbols-outlined{
    display:flex;
    align-items: center;
    justify-content:center;
}

.testimonial-control-button:hover{
    cursor: pointer;
    color:#c7c7c0;
}

.testimonial-slide-selector{
    height:12px;
    width:12px;
    border-radius:100%;
    background:#d7d7d4;
    transition: all 0.2s ease-in-out;
}

.testimonial-control-button:hover .testimonial-slide-selector{
    background:#c7c7c0;
}

.testimonial-slide-selector.active{
    background:#c7c7c0;
}

.meet-the-team{
    width:100%;
    margin:0 auto;
    margin-top:40px;
    display:flex;
    justify-content: center;
}

.meet-the-team .team-member{
    display:flex;
    flex-direction: column;
    align-items: center;
    margin-left:30px;
    margin-right:30px;
} 

.meet-the-team .team-member-name{
    font-family: "filmotype-keynote", sans-serif;
    font-weight: 400;
    font-style: normal;
    color:#30506c;
    font-size:32px;
}

.meet-the-team .team-member-position{
    color:#8c9597;
    font-size:12px;
    margin:0 auto;
    text-align: center;
    line-height: 150%;
    font-weight:600;
    text-transform: uppercase;
    padding-bottom:10px;
}

.team-member-links{
    display:flex;
    align-items: center;
    justify-content: center;
}

.team-member-link{
    margin-right:5px;
    display:flex;
    align-items: center;
    justify-content: center;
    color:#2d3d4b;
    opacity:0.8;
    transition: all ease-in-out 0.2s;
}

.team-member-link svg{
    fill:#2d3d4b;
}

.team-member-link .material-symbols-outlined{
    display: flex;
    align-items:center;
    justify-content: center;
}

.team-member-link:hover{
    cursor: pointer;
    opacity:1;
}

.team-member-link:last-child{
    margin-right:0px;
}

.social-links{
    display:flex;
    align-items:center;
    justify-content: center;
    margin-top:20px;
}

.social-link{
    margin-right:15px;
}

.social-link:last-child{
    margin-right:0px;
}

.social-link:hover{
    cursor: pointer;
}

.social-link svg{
    width:30px;
    height:30px;
    fill:#596672;
    opacity:0.8;
    transition:all 0.2s ease-in-out;
}

.social-link:hover svg{
    opacity:1;
}


.scroll-down-icon-container{
    margin-top:200px;
}

.scroll-down-icon{
    margin:0 auto;
    width:43px;
    border:2px solid white;
    height:73px;
    border-radius:200px;
    display:flex;
    align-items: center;
    justify-content: center;
}

.scroll-down-text{
    text-transform: uppercase;
    font-size:10px;
    margin-top:5px;
    font-weight:700;
}

.scroll-down-icon-indicator{
    width:5px;
    height:10px;
    border-left:2px solid white;
    border-right:2px solid white;
}

.partners{
    display:flex;
    align-items:center;
    justify-content: center;
    margin-top:20px;
}

.partner{
    margin-right:40px;
}

.partner:last-child{
    margin-right:0px;
}

.partner svg{
    height:40px;
    fill:#757f88;
}

.partner.hitched svg{
    height:40px;
}

.partner.bridebook svg{
    height:30px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width:90vw;
    max-width: 1200px;
    margin:0 auto;
    margin-top:50px;
}

.item {
    flex: 1 1 calc(25% - 10px); /* Equal-sized items */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.item img {
    width: 100%;
    height:100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.item img:hover {
    cursor: pointer;
}


.tall {
    flex: 1 1 calc(33.33% - 10px);
    height: 250px; /* Taller items */
}

.wide {
    flex: 1 1 calc(66.66% - 10px); /* Wider items */
}

.disabled:hover{
    cursor: not-allowed;
}

.lightbox{
    display: flex;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index:5000;
    backdrop-filter: blur(10px);
}

.lightbox img {
    max-height: 80%;
    border-radius: 10px;

}

.close{
    font-size: 30px;
    color: white;
    position: absolute;
    top: 10px;
    right: 40px;
    cursor: pointer;
}

.stepper {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin:0 auto;
    margin-top:20px;
    padding-left:10px;
    padding-right:10px;
    box-sizing: border-box;
}

.step {
    display: flex;
    align-items: center;
    position: relative;
}

.circle {
    width: 40px;
    height: 40px;
    background: #e8e8e5;
    color: #5e5e58;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    flex-shrink: 0;
}

.content {
    margin-left: 15px;
    padding: 10px;
    box-sizing: border-box;
}

.step:not(:last-child)::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    background: #e8e8e5;
    left: 20px;
    top: 50px;
}

#quote-modal-v2 .step:not(:last-child)::before {
    background:none !important;
}

.content-header{
    font-size:24px;
    font-family: "cormorant-garamond", serif;
    font-weight: 700;
    font-style: normal;
    color: #2d3d4b;
}

.content-text{
    color:#575e60;
}

.further-information{
    width:100%;
    max-width:700px;
    padding-left:15px;
    padding-right:15px;
    box-sizing: border-box;
    margin:0 auto;
}

.further-information-block{
    margin-top:20px;
    border-radius:20px;
    border:1px solid #e8e8e5;
    padding:20px;
}

.further-information-question{
    font-size:16px;
    font-weight:600;
    color:#808991;
}

.further-information-answer{
    color:#575e60;
}

.further-information-question:hover{
    cursor: pointer;
}

.text-align-left{
    text-align:left;
}
.contact{

}

.contact-header{
    margin-top:100px;
}

.contact-header--title{
    font-size:36px;
    font-family: "cormorant-garamond", serif;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    color:#2d3d4b;
}

.contact-header--text{

}

/* Calendar Section */
/* General Modal Overlay */
.overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
     display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    /* Apply the backdrop filter */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

}

.booking-modal {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
}


.booking-modal .booking-interaction-details{
    padding:20px;
    box-sizing: border-box;
    border-bottom:1px solid #dadada;
}

.booking-modal .booking-interaction-panels{
    padding-top:10px;
    padding-bottom:10px;
    padding-left:20px;
    padding-right:20px;
    flex:1;
    box-sizing: border-box;
    border-left:1px solid #dadada;
}

.booking-modal .booking-interaction-panel{
    display:flex;
}

.booking-modal .booking-container{
    display:flex;
}


.booking-interaction-details--title{
    font-size:22px;
    font-weight:600;
}

.booking-form{
    display: none;
}

.booking-form-row{
    display:flex;
}

.booking-form-column{
    flex:1;
}

.booking-form-column{
    flex:1;
}

.booking-form-column{
    margin-right:10px;
}

.booking-form-column:last-child{
    margin-right:0px;
}

.booking-form-input label{
    display:block;
    font-weight:600;
    text-transform:uppercase;
    font-size:10px;
}

.booking-form-input input{
    width:100%;
    box-sizing: border-box;
    border:1px solid #dadada;
    border-radius:5px;
    padding:10px 8px;
}

.booking-form-input textarea{
    width:100%;
    box-sizing: border-box;
    border:1px solid #dadada;
    border-radius:5px;
    padding:5px;
}

.booking-form-input span.required{
    color:red;
}

.booking-form-header{
    font-size:18px;
    font-weight:600;
    margin-bottom:10px;
}

.booking-form-appointment-details{
    border:1px solid #dadada;
    border-radius:5px;
    padding:10px;
    margin-bottom:20px;
    display:flex;
    align-items:center;
}

.booking-form-appointment-details--date{
    display:flex;
    align-items:center;
    flex:1;
}
 
.booking-form-appointment-details--time{
    display:flex;
    align-items:center;
    flex:1;
}

.booking-form-appointment-details--staff{
    display:flex;
    align-items:center;
    flex:1;
}

.booking-form-appointment-details--icon{
    display:flex;
    align-items:center;
    justify-content: center;
    margin-right: 10px;
}

.booking-form-appointment-details--text{
    font-size:14px;
    font-weight:600;
}

.booking-interaction-details--location{
    display:flex;
    align-items:center;
}

.booking-interaction-details--icon{
    display:flex;
    align-items:center;
    justify-content: center;
    margin-right:2px;
}

.booking-interaction-details--icon .material-symbols-outlined{
    font-size:20px;
    display:flex;
    align-items: center;
    justify-content: center;
}
/* Calendar Section */
.calendar {
    box-sizing: border-box;
}

.calendar header {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 50px);
    gap: 5px;
}

.day {
    text-align: center;
    border-radius:100%;
    display:flex;
    align-items:center;
    justify-content: center;
    flex-direction:column;
    font-size: 14px;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    font-weight:600;

}

.day.header{
    font-weight:600;
    text-align: center;
    text-transform:uppercase;
}

.day.not-current-month {
    color: #ccc;
}

.day.active {
    background: #e7eef7;
    color: #096ffe;
}

.calendar-navigation {
    display: flex;
    justify-content: space-between;
    padding-bottom:20px;
}  

.calendar-navigation-month-year{
    font-size:18px;
    font-weight:600;
}

.calendar-navigation-buttons{
    display:flex;
    align-items: center;
}

.calendar-navigation-button {
    background: #eeeeee;
    height:28px;
    width:28px;
    margin-right:5px;
    border-radius: 100%;
    display:flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.calendar-navigation-button:last-child{
    margin-right:0px;
}

.calendar-navigation-button .material-symbols-outlined{
    display:flex;
    align-items: center;
    justify-content: center;
}

.time-slots-title{
    display:flex;
    align-items: center;
    font-weight:600;
    font-size:18px;
    padding-bottom:20px;
}

.time-slots-wrapper{
    width:0px;
    overflow: hidden;
}

/* Time Slots Section */
.time-slots {
    background: #fff;
    padding-left:40px;
    padding-right:20px;
    width:300px;
    box-sizing: border-box;
}

.time-slot{
    width:100%;
    font-weight:600;
    padding:5px;
    border-radius:10px;
    border:2px solid #006bff;
    color:#006bff;
    display:flex;
    align-items: center;
    justify-content: center;
    margin-bottom:5px;
    font-size:14px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.time-slot:hover{
    background:#006bff;
    color:#fff;
}

.pannel-wrapper{
    width:100%;
    max-width:100vw;
    overflow:hidden;
    display:flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.contact--google-maps{
    height:600px;
}

.footer--links a{
    color:#6c797e;
    padding-right:5px;
}

.footer--links a:hover{
    color:#fff;
    text-decoration: none;
}

.policy{
    width:90vw;
    margin:0 auto;
    max-width:800px;
    margin-top:30px;
    margin-bottom:30px;
}

.supplier-block{
    margin-top:20px;
}

.supplier-block:last-child{
    margin-bottom:20px;
}

.supplier-block-title{
    font-size:20px;
    text-align:center;
    color:#919ea1;
}

.supplier-links a{
    display:block;
}

.supplier-block-suppliers{
    display:flex;
    justify-content: center;
}

.supplier-block-supplier{
    width:225px;
    margin-right:20px;
}

.supplier-block-supplier:last-child{
    margin-right:0px;
}

.supplier-title{
    font-size:14px;
    color:red;
}

.supplier-name{
    text-align:center;
    font-size:16px;
    font-weight:600;
    color:#2d3d4b;
}

.supplier-description{
    text-align:center;
}

.supplier-links{
    text-align:center;
}

/* Modal overlay */

    .modal-overlay {
      position: fixed;
      top: 0; left: 0;
      right:0;
      bottom:0;
      width: 100%; 
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(6px);            /* blur whatever’s behind */
      -webkit-backdrop-filter: blur(6px); 
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 20000;
    }

    /* Modal container */
    .modal {
      background: #e8e8e5;
      border-radius: 5px;
      max-width: 500px;
      width: 90%;
      padding: 40px 50px;
      box-shadow: 0 10px 12px rgba(0,0,0,0.2);
      max-height:90vh;
    }

    .modal-header{
        display:flex;
        align-items:center;
        justify-content: space-between;
    }

    .modal-title{
        font-size:20px;
        font-weight:600;
        color:#2d3d4b;
        text-transform:uppercase;
    }

    .modal-close{
        color: #2d3d4b;
        opacity:0.8;
    }

    .modal-close:hover { 
        opacity:1; 
        cursor:pointer;
    }

    /* Form styles */
    .modal form {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .modal label {
      font-weight: 600;
      font-size: 12px;
    }
    .modal input,
    .modal select {
      padding: 0.6rem;
      font-size: 14px;
      border: 1px solid #f2f2f0;
      background:#f2f2f0;
      border-radius: 5px;
      width: 100%;
      box-sizing: border-box;
    }

    .modal input:focus,
    .modal select:focus{
        outline: 2px solid #2d3d4b;
    }

    span.mandatory{
        color:red;
    }

    .modal button.submit, .modal button.back-btn {
        margin-top:15px;
      background: transparent;
      color: #2d3d4b;
      border: 3px solid #2d3d4b;
      font-weight:600;
      padding: 0.75rem;
      font-size: 14px;
      border-radius: 5px;
      transition:all 0.2s ease-in-out;
      cursor: pointer;
      text-transform:uppercase;
    }

    .modal button.submit:hover, .modal button.back-btn:hover {
      background: #2d3d4b;
      color:#fff;
    }

    .powered-by-weddinguru {
        display:flex;
        align-items: center;
        justify-content: center;
        padding-top:20px;
    }

.contact-flex {
    display: flex;
    gap:40px;
    justify-content: center;
    align-items: flex-start;
    margin: 40px 0 0 0;
    flex-wrap: wrap;
}
.contact-info {
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 400px;
    background: #f7f6f4;
    border-radius: 8px;
    padding: 30px 24px;
    box-sizing: border-box;
    margin-bottom: 20px;
    font-size: 15px;
    color: #575e60;
    box-shadow: 0 2px 8px rgba(203, 208, 221, 0.08);
}
.contact-form {
    flex: 1 1 340px;
    min-width: 260px;
    max-width: 420px;
    background: #e8e8e5;
    border-radius: 8px;
    padding: 30px 24px 20px 24px;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(203, 208, 221, 0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-form label {
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 2px;
}
.contact-form input,
.contact-form textarea {
    padding: 0.6rem;
    font-size: 14px;
    border: 1px solid #f2f2f0;
    background: #f2f2f0;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 8px;
    resize: vertical;
}

.contact-form textarea {
    resize: none;
    font-family:sans-serif;
    line-height: 1.2;
    font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid #2d3d4b;
}

.contact-form button.submit {
    margin-top: 10px;
    background: transparent;
    color: #2d3d4b;
    border: 3px solid #2d3d4b;
    font-weight: 600;
    padding: 0.75rem;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    text-transform: uppercase;
}

.contact-form button.submit:hover {
    background: #2d3d4b;
    color: #fff;
}


/* --- Step Card Styling (inside modal) --- */
.modal .step {
  display: none;
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  max-width: 100%;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s;
}
.modal .step.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* --- Step 4 Flex Layout --- */

#packageOptions {}
#packageDetailsPanel {
  background: #f6f8fa;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  padding: 18px 20px;
}

#quote-modal-overlay .modal{
    max-width:1200px;
    width:50vw;
    overflow-y: scroll;
    box-sizing: border-box;
}

#quote-modal-overlay .step:not(:last-child)::before {
    display:none;
}

.modal input[type="checkbox"] {
    display:inline-block;
    width:auto;
}

.modal label {
    display:block;
}

@media (max-width: 1600px) {
    
    #navigation-wrapper{
        position:fixed;
        top:0px;
        left:0px;
        right:0px;
        width:100vw;
    }

    #navigation{
        padding:0px 20px 0px 20px;
    }

    #navigation .menu .menu--item{
        height:unset;
    }

    #navigation .menu .menu--item[data-mobile="false"]{
        display:none;
    }

    #navigation .menu .menu--item[data-mobile="true"]{
        display:flex;
    }

    .static-entrance--p{
        width:90%;
    }

    [data-mobile="false"]{
        display:none;
    }

    .footer--container{
        display:flex;
        flex-direction: column;
    }

    .meet-the-team{
        display:flex;
        flex-direction: column;
    }

    .meet-the-team .team-member{
        margin-left:0px;
        margin-right:0px;
        margin-bottom:30px;
    }

    .text-panel{
        width:100vw;
        padding-left:15px;
        padding-right:15px;
        padding-top:35px;
        padding-bottom:35px;
    }

    .testimonial{
        width:95vw;
        height:60vh;
        box-sizing: border-box;
        display:inline-block;
        border-radius:10px;
        flex-shrink:0;
        display:flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        box-sizing: border-box;
        margin-left:20px;
    }

    .testimonial-with-image{
        flex-direction: column;
        padding-left:10px;
        padding-right:10px;
    }

    .testimonial--text--right-aligned{
        text-align:center;
    }

    .testimonial--text--left-aligned{
        text-align:center;
    }

    .testimonial--image--right-aligned{
        margin-left:0px;
        margin-top:20px;
    }

    .testimonial--image--left-aligned{
        margin-right:0px;
        margin-bottom:20px;
    }

    .testimonial--text{
        font-size:1.1rem;
    }

    .testimonial-with-image .testimonial--text{
        font-size:1.1rem;
    }

    .pannel.static-entrance{
        padding-top:100px;
    }

    .static-entrance--top--slogan{
        margin-left:10px;
        margin-right:10px;
    }

    .scroll-down-icon-container{
        margin-top:100px;
    }

    .right-picture-panel, .left-picture-panel{
        display: flex;
        flex-direction: column;
        margin-bottom:25px;
    }

    .left-picture-panel{
        flex-direction: column-reverse;
    }

    .picture-panel img{
        width:100%;
        object-fit: cover;
    }

    .partners{
        flex-direction: column;
        align-items: center;
    }

    .partner.hitched{
        margin-right:0px;
        margin-bottom:20px;
    }

    .modal{
        max-width: 100%;
        height:100%;
    }

    .modal .modal-header{
        margin-top:25px;
    }

    .contact-flex {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .contact-info, .contact-form {
        max-width: 100%;
        margin: 0 0 20px 0;
    }

    .contact-info {
        background:none;
        text-align:center;
    }

    #quote-modal-overlay .modal{
        max-width:100vw;
        width:100vw;
        height:100vh;
        max-height:100vh;
        overflow-y: scroll;
        box-sizing: border-box;
        border-radius: 0px;
        padding:30px;
    }
    
}

/*-- Packages CSS --*/

/* Real Weddings Grid - also used for Packages */
.real-weddings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px auto;
    padding: 0 20px;
    max-width: 1200px;
}

/* Wedding/Package Card Styling */
.wedding-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.wedding-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.wedding-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.wedding-card-link:hover {
    text-decoration: none;
}

.wedding-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.wedding-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.wedding-card:hover .wedding-card-image img {
    transform: scale(1.05);
}

.wedding-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 61, 75, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.wedding-card:hover .wedding-card-overlay {
    opacity: 1;
}

.view-wedding {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.wedding-card-content {
    padding: 25px;
}

.wedding-card-title {
    font-size: 24px;
    font-family: "cormorant-garamond", serif;
    font-weight: 700;
    color: #2d3d4b;
    margin: 0 0 8px 0;
}

.wedding-card-date {
    color: #ce864e;
    font-weight: 600;
    font-size: 14px;
    margin: 0 0 12px 0;
    text-transform: uppercase;
}

.wedding-card-description {
    color: #575e60;
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
}

/* Back Button */
.back-button-container {
    margin-bottom: 30px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    color: #2d3d4b;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    opacity: 0.8;
}

.back-button:hover {
    opacity: 1;
    text-decoration: none;
    transform: translateX(-3px);
}

.back-arrow {
    margin-right: 8px;
    font-size: 18px;
}

/* Wedding Description Section */
.wedding-description {
    margin: 40px auto;
    max-width: 800px;
    padding: 0 20px;
}

.wedding-details-title {
    font-size: 26px;
    font-family: "cormorant-garamond", serif;
    font-weight: 700;
    color: #2d3d4b;
    text-align: center;
    margin-bottom: 20px;
}

.wedding-details-text {
    color: #575e60;
    line-height: 1.6;
    font-size: 15px;
}

.wedding-details-text p {
    margin-bottom: 16px;
}

/* Package Pricing */
.package-pricing-info {
    background: #f9f9f7;
    border: 2px solid #e2e2dc;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
}

.pricing-title {
    font-size: 22px;
    font-family: "cormorant-garamond", serif;
    font-weight: 700;
    color: #2d3d4b;
    margin-bottom: 15px;
}

.pricing-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-label {
    font-size: 14px;
    color: #575e60;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    color: #ce864e;
    font-family: "cormorant-garamond", serif;
}

.price-note {
    margin-top: 15px;
    font-size: 12px;
    color: #919ea1;
    font-style: italic;
}

/* Package Includes Section */
.package-includes-section {
    margin: 50px auto;
    max-width: 1000px;
    padding: 0 20px;
}

.includes-title {
    font-size: 28px;
    font-family: "cormorant-garamond", serif;
    font-weight: 700;
    color: #2d3d4b;
    text-align: center;
    margin-bottom: 15px;
}

.includes-subtitle {
    color: #575e60;
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.5;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.includes-category {
    background: #fff;
    border: 1px solid #e2e2dc;
    border-radius: 10px;
    padding: 25px;
}

.category-title {
    font-size: 20px;
    font-family: "cormorant-garamond", serif;
    font-weight: 700;
    color: #2d3d4b;
    margin: 0 0 15px 0;
    border-bottom: 2px solid #ce864e;
    padding-bottom: 8px;
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-list li {
    color: #575e60;
    line-height: 1.5;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.includes-list li:before {
    content: "✓";
    color: #ce864e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.includes-special {
    background: #f9f9f7;
    border: 2px solid #ce864e;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
}

.special-title {
    font-size: 22px;
    font-family: "cormorant-garamond", serif;
    font-weight: 700;
    color: #2d3d4b;
    margin: 0 0 15px 0;
}

.includes-special p {
    color: #575e60;
    line-height: 1.6;
    margin: 0;
}

/* Add-ons Section */
.package-addons-section {
    margin: 50px auto;
    max-width: 1000px;
    padding: 0 20px;
}

.addons-title {
    font-size: 28px;
    font-family: "cormorant-garamond", serif;
    font-weight: 700;
    color: #2d3d4b;
    text-align: center;
    margin-bottom: 10px;
}

.addons-subtitle {
    color: #575e60;
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.addon-category {
    background: #fff;
    border: 1px solid #e2e2dc;
    border-radius: 10px;
    padding: 25px;
}

.addon-category-title {
    font-size: 18px;
    font-family: "cormorant-garamond", serif;
    font-weight: 700;
    color: #2d3d4b;
    margin: 0 0 20px 0;
    text-align: center;
    border-bottom: 2px solid #ce864e;
    padding-bottom: 8px;
}

.addon-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.addon-item:last-child {
    border-bottom: none;
}

.addon-name {
    color: #575e60;
    flex: 1;
    line-height: 1.4;
    margin-right: 15px;
}

.addon-price {
    color: #ce864e;
    font-weight: 700;
    white-space: nowrap;
}

/* Photo Gallery Section */
.photo-gallery-section {
    margin: 50px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.gallery-title {
    font-size: 28px;
    font-family: "cormorant-garamond", serif;
    font-weight: 700;
    color: #2d3d4b;
    text-align: center;
    margin-bottom: 30px;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
}

.gallery-item-tall {
    grid-row: span 2;
    aspect-ratio: 4/5;
}

.gallery-item-wide {
    grid-column: span 2;
    aspect-ratio: 8/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* CTA Section */
.package-cta-section {
    background: #f9f9f7;
    border: 2px solid #e2e2dc;
    border-radius: 15px;
    padding: 40px;
    margin: 50px auto;
    max-width: 800px;
    text-align: center;
}

.package-cta-title {
    font-size: 28px;
    font-family: "cormorant-garamond", serif;
    font-weight: 700;
    color: #2d3d4b;
    margin-bottom: 15px;
}

.package-cta-text {
    color: #575e60;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.package-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
    display: inline-block;
}

.cta-button.primary {
    background: #2d3d4b;
    color: #fff;
    border-color: #2d3d4b;
}

.cta-button.primary:hover {
    background: transparent;
    color: #2d3d4b;
    text-decoration: none;
}

.cta-button.secondary {
    background: transparent;
    color: #ce864e;
    border-color: #ce864e;
}

.cta-button.secondary:hover {
    background: #ce864e;
    color: #fff;
    text-decoration: none;
}

/* Package Info Section */
.package-info-section {
    margin: 50px auto;
    max-width: 1000px;
    padding: 0 20px;
}

.package-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.package-info-item {
    text-align: center;
    padding: 20px;
}

.package-info-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.package-info-title {
    font-size: 18px;
    font-family: "cormorant-garamond", serif;
    font-weight: 700;
    color: #2d3d4b;
    margin-bottom: 10px;
}

.package-info-text {
    color: #575e60;
    line-height: 1.5;
    font-size: 14px;
}

/* Photographer Credit */
.photographer-credit {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: #f9f9f7;
    border-radius: 10px;
}

.photographer-label {
    font-size: 14px;
    color: #919ea1;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.photographer-name {
    font-size: 18px;
    font-weight: 600;
    color: #2d3d4b;
}

/* Bespoke Package Specific Styles */
.bespoke-food-description {
    margin: 30px 0;
}

.bespoke-food-description p {
    color: #575e60;
    line-height: 1.6;
    margin-bottom: 16px;
}

.food-inspiration {
    background: #f9f9f7;
    border-left: 4px solid #ce864e;
    padding: 20px;
    margin: 20px 0;
}

.food-inspiration h4 {
    font-size: 20px;
    font-family: "cormorant-garamond", serif;
    font-weight: 700;
    color: #2d3d4b;
    margin: 0 0 15px 0;
}

.menu-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.menu-category {
    background: #fff;
    border: 1px solid #e2e2dc;
    border-radius: 10px;
    padding: 20px;
}

.menu-category-title {
    font-size: 18px;
    font-family: "cormorant-garamond", serif;
    font-weight: 700;
    color: #2d3d4b;
    margin: 0 0 15px 0;
    text-align: center;
    border-bottom: 2px solid #ce864e;
    padding-bottom: 8px;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-items li {
    color: #575e60;
    line-height: 1.4;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
    font-size: 14px;
}

.menu-items li:before {
    content: "•";
    color: #ce864e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.evening-food-section, .design-section {
    margin: 40px auto;
    max-width: 800px;
    padding: 0 20px;
}

.evening-food-section p, .design-section p {
    color: #575e60;
    line-height: 1.6;
    text-align: center;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  text-decoration: none;
}

.whatsapp-wrapper {
  background-color: #25D366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.whatsapp-wrapper:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
}

/* Popup Message */
.whatsapp-popup {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background-color: #ffffff;
  color: #333;
  padding: 10px 15px;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  font-size: 14px;
  z-index: 999;
  animation: fadeIn 0.5s ease;
  transition: opacity 1s ease, transform 1s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 1600px) {
    .real-weddings-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .wedding-card-image {
        height: 200px;
    }
    
    .pricing-details {
        flex-direction: column;
        gap: 20px;
    }
    
    .includes-grid, .addons-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-item-wide, .gallery-item-tall {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 4/3;
    }
    
    .package-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 250px;
    }
    
    .package-info-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-options-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .wedding-card-content {
        padding: 20px;
    }
    
    .wedding-card-title {
        font-size: 20px;
    }
    
    .package-cta-section {
        padding: 30px 20px;
    }
    
    .includes-category, .addon-category {
        padding: 20px;
    }

    .supplier-block-suppliers{
        display:flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }
}

/*-- End of CSS --*/