@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.1/css/all.min.css');

@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Edu+AU+VIC+WA+NT+Arrows:wght@400..700&family=Sansita+Swashed:wght@300..900&family=Send+Flowers&display=swap');


:root {
    /* Color Palette */
    --primary-color: #936A29; /* Main gold */
    --background: #fff2f2f5; /* Very light beige */
    --soft-pink: #FADDD4;
    --muted-brown: #99746F; /* Muted brown */
    --highlight-color: #D4978A; /* Rosy accent */
  
    /* Font Sizes */
    --font-size-large-title: 2.5rem; /* 36px */
    --font-size-medium-title: 1.7rem; /* 28px */
    --font-size-small-title: 1.18rem; /* 22px */
        --font-size-small: 0.875rem; /* 14px */
    }

/* ---------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
font-family: 'Times New Roman', Times, serif;
background-color: var(--background);
margin: 0;
padding: 0;
box-sizing: border-box;
width: 100%;
overflow-x: hidden;
}


/* ---------------------------------------------- */
.nav__bar {
    width: 100%;
    background-color: var(--muted-brown);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-left: 2%;
    padding-right: 2%;
}

.hamburger {
    display: none;
}

.header__logo {
    max-height: 80px;
}

.nav__list {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.1rem;
    font-weight: bold;
}

.nav__link {
    text-decoration: none;
    color: var(--soft-pink);
}

.nav__link:hover {
    color: white;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    background: white;
    transition: width 0.2s;
    left: 0;
    bottom: -2px;
}

.nav__link:hover::after {
    width: 100%;
}

.header__contact-btn{
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.25rem;
    font-weight: bold;
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    border: none;
    background-color: var(--soft-pink);
    color: var(--muted-brown);
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    text-decoration: none;
}

.header__contact-btn:hover {
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.8);
}

/* ------- */
.container{
    position: absolute;
    top: 42%;
    left: 65%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: #f5f5f5;
    box-shadow: 0 30px 50px #FADDD4;
}

.container .slide .item{
    width: 200px;
    height: 300px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 20px;
    box-shadow: 2px 8px 15px #FADDD4;
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: 0.5s;
}

.slide .item:nth-child(1),
.slide .item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 20px;
    width: 100%;
    height: 100%;
}


.slide .item:nth-child(3){
    top: 115%;
    left: 68%;
    width: 300px;
}
.slide .item:nth-child(4){
    left: calc(80% + 100px);
}
.slide .item:nth-child(5){
    top: 110%;
    left: calc(-20% + 220px);
}

/* here n = 0, 1, 2, 3,... */
.slide .item:nth-child(n + 6){
    left: calc(25%);
    top: 120%;
    opacity: 100%;
    width: 400px;
    height: 150px;
}



.item{
    position: absolute;
    top: 50%;
    left: 100px;
    width: 300px;
    text-align: left;
    color: #eee;
    transform: translate(0, -50%);
    font-family: system-ui;
    display: none;
}


.slide .item:nth-child(2) .content{
    display: block;
}




@keyframes animate {
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}



.button{
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 20px;
}

.button button{
    width: 40px;
    height: 35px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    border: 1px solid var(--highlight-color);
    color: var(--muted-brown);
    background-color: #fff;
    transition: 0.3s;
}

.button button:hover{
    background: var(--muted-brown);
    color: #fff;
}

/* ----------- */

.header__hero {
    margin-top: 5%;
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem; /* Adjust padding as needed */
}

.header__hero-title {
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size: 3.2rem;
    color: var(--muted-brown);
    margin-bottom: 1rem; /* Adjust margin as needed */
    /* text-shadow: var(--highlight-color) 0 0 10px; */
}

.header__hero-text {
    font-size: var(--font-size-small-title);
    color: #918887;
    margin-bottom: 1rem; /* Adjust margin as needed */
    /* text-shadow: var(--highlight-color) 0 0 10px; */
}

.header__hero-btn {
    margin-top: 1rem;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    border: solid 1px var(--muted-brown);
    background-color: var(--soft-pink);
    color: var(--muted-brown);
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    text-decoration: none;
}

.header__hero-btn:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.791);
}

/* ---------------main------------- */
/* Main Section */
.main {
    margin-top: 14rem;
    text-align: center;
}

.services {
    padding: 0 2rem 3rem 2rem;
    background-color: var(--muted-brown);
}

/* Section Divider */
.section-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: 4rem; /* Adjust margin as needed */
    rotate: 180deg;
}

.section-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.section-divider path {
    fill: var(--muted-brown); /* Use gradient fill */
}

#low {
    rotate: 0deg;
    margin-top: 0;
}

.services__title {
    font-size: var(--font-size-large-title);
    color: var(--muted-brown);
    padding-bottom: .5rem;
    margin-bottom: .5rem;
    margin-top: 0;
    padding-top: .5rem;
    border: 2px solid var(--soft-pink);
    border-radius: 10px;
    background-color: var(--soft-pink);
}

.services__subtitle {
    font-size: var(--font-size-small-title);
    color: #918887;
    margin-bottom: 2rem;
}

.services__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center; /* Center elements horizontally */
    justify-content: space-evenly;
    gap: 2rem;
}

.services__item {
    box-sizing: border-box;
    flex: 1 1 calc(33.333% - 2rem);
    max-width: calc(33.333% - 2rem);
    min-height: 550px; /* Set a fixed height */
}

.services__item {
    background-color: var(--soft-pink);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    min-width: 350px;
    text-align: center; /* Center text */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center elements horizontally */
    justify-content: space-between; /* Center elements vertically */
    
}

.services__item-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: var(--font-size-medium-title);
    color: var(--muted-brown);
    margin-bottom: 1rem;;
}

.services__item img , .services__item-video {
    width: 100%;
    height: 270px;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgb(152, 129, 129);
}

.services__item-text {
    font-size: var(--font-size-small);
    color: #918887;
    line-height: 1.5;
}

/* --------- */
/* Contact Section */
.contact {
    background-color: var(--background);
    padding: 4rem 2rem;
    text-align: center;
}

.contact i{
    font-size: 2rem;
    color: var(--muted-brown);
}

.contact__title {
    font-family: 'Times New Roman', Times, serif;
    font-size: var(--font-size-large-title);
    color: var(--muted-brown);
    margin-bottom: 1rem;
}

.contact__subtitle {
    font-size: var(--font-size-small-title);
    color: #918887;
    margin-bottom: 2rem;
}

.contact__form {
    max-width: 600px;
    margin: 0 auto;
}

.contact__form-group {
    margin-bottom: 1.5rem;
}

.contact__form-group input,
.contact__form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--muted-brown);
    border-radius: 5px;
    font-size: 1rem;
    font-family: "Comic Neue", cursive;
}

.contact__form-group textarea {
    height: 150px;
    resize: vertical;
}

.contact__form-btn {
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    border: none;
    background-color: var(--soft-pink);
    color: var(--muted-brown);
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.contact__form-btn:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Contact SVG Decorations */
.contact__decorations {
    margin-top: 2rem;
}

.contact__svg {
    width: 100px;
    height: auto;
}

/* Footer */
.footer {
    background-color: var(--muted-brown);
    color: var(--soft-pink);
    padding: 2rem;
    text-align: center;
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__social-media {
    margin-bottom: 1rem;
}

.footer__social-media a {
    color: var(--soft-pink);
    margin: 0 0.5rem;
    font-size: 1.5rem;
    text-decoration: none;
}

.footer__social-media a:hover {
    text-shadow: 0 0 5px #fff;
}

.footer__text {
    font-size: 0.9rem;
}



/* ------------------------------------------------------------------------- */

/* Packages Section */
.second{
    margin-top: 0rem;
}


.packages {
    background-color: var(--background);
    padding: 4rem 2rem;
    text-align: center;
}

.packages__title {
    font-size: var(--font-size-large-title);
    color: var(--muted-brown);
    margin-bottom: 2rem;
}

.packages__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.package__item {
    background-color: var(--soft-pink);
    border: 2px solid var(--muted-brown);
    border-radius: 10px;
    padding: 2rem;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.273);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.package__name {
    font-size: var(--font-size-medium-title);
    color: var(--muted-brown);
    margin-bottom: 1rem;
}

.package__price {
    font-size: 1.5rem;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.package__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.package__features li {
    font-size: var(--font-size-small-title);
    color: var(--muted-brown);
    margin-bottom: 0.5rem;
}

.package__btn {
    background-color: var(--muted-brown);
    color: var(--soft-pink);
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: var(--font-size-small-title);
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.package__btn:hover {
    background-color: var(--highlight-color);
}




/* --------------------------------------------------------- */
/* ...existing code... */

.portfolio {
    padding: 50px 0;
    text-align: center;
}

.portfolio__title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--muted-brown);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    padding: 0 10px;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.lightbox.active {
    display: flex;
}

@media (max-width: 800px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}

/* ...existing code... */

.video-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.video-item {
    flex: 1 1 calc(25% - 40px);
    max-width: calc(25% - 40px);
}

.video-item iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 800px) {
    .video-item {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }

    .video-item iframe {
        height: 180px;
    }
}

@media (max-width: 500px) {
    .video-item {
        flex: 1 1 100%;
        max-width: 95%;
    }

    .video-item iframe {
        height: 200px;
    }
}

/* -------------------------------------------------------------- */
/* ...existing code... */

/* Contact Page Styles */

.contact-page .contact-section {
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.contact-container {
    display: flex;
    width: 80%;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    overflow: hidden;
}

.contact-title {
    width: 50%;
    background-color: var(--muted-brown);
    color: var(--soft-pink);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-title h1 {
    font-size: 3rem;
}

.contact-form {
    width: 50%;
    padding: 40px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 90%;
    padding: 10px;
    border: 1px solid var(--muted-brown);
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    height: 100px;
}

.contact__form-btn {
    background-color: var(--muted-brown);
    color: var(--soft-pink);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact__form-btn:hover {
    background-color: var(--muted-brown);
}

/* Location Section */
.location-section {
    padding: 60px 0;
}

.location-container {
    display: flex;
    width: 80%;
    margin: 0 auto;
    border: 1px solid var(--muted-brown);
    border-radius: 10px;
}

.contact-details {
    background-color: rgba(255, 255, 255, 0.8);
    width: 50%;
    padding-right: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-details h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--muted-brown);
}

.contact-details p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.contact-details p:nth-child(2) {
    font-weight: bold;
}

.contact-details a {
    color: var(--muted-brown);
    text-decoration: none;
}

.map {
    width: 50%;
    height: 450px;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 20px;
}

@media (max-width: 800px) {
    .contact-container,
    .location-container {
        flex-direction: column;
        align-items: center;
        width: 85%;
        
    }

    .contact-title,
    .contact-form,
    .contact-details {
        width: 95%;
    }

    .map {
        width: 100%;
    }

    .contact-title h1 {
        font-size: 2.5rem;
    }

    .contact-container {
        background-color: transparent;
    }

    
}














/* ---------------------------------------------- */
/* Responsive Design */
@media (max-width: 796px) {
    body {
        font-size: 1rem; /* 14px */
        padding: 0;
    }
    
    button {
        font-size: 0.875rem; /* 14px */
    }
    
    .header__logo {
        max-height: 60px;
    }
    .header__nav {
        display: none;
    }
    
    .hero{
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        flex-direction: column-reverse;
    }
    
    .header__hero {
        width: 95%;
        margin: 3%;
        padding: 0;
    }
    
    .header__hero-title {
        font-size: 2.5rem;
        margin-top: 0;
    }
    
    .header__hero-text {
        font-size: 1.1rem;
        margin: 3px 0 3px 0;
        padding: 0;
    }
    
    
    
        .container {
            position: relative;
            top: auto;
            left: auto;
            transform: none;
            width: 100%;
            height: 400px; /* Fixed height for mobile */
            margin: 20px auto;
            background: transparent;
            box-shadow: none;
        }
    
        /* Update slide items */
        .container .slide .item {
            width: 90%; /* Take 70% of screen width */
            height: 300px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: 0.5s;
            z-index: 1;
        }
    
        /* First and second items (hidden behind) */
        .slide .item:nth-child(1),
        .slide .item:nth-child(2) {
            opacity: .5;
            z-index: 1;
            top: 40%;
            left: -10%;
        }
    
        /* Third item (visible) */
        .slide .item:nth-child(3) {
            opacity: 1;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
        }
    
        /* Rest of the items */
        .slide .item:nth-child(n + 4) {
            opacity: .5;
            z-index: 1;
            top: 50%;
            right: 50%;
        }
    
        /* Remove extra positioning */
        .slide .item:nth-child(4),
        .slide .item:nth-child(5),
        .slide .item:nth-child(n + 6) {
            top: 40%;
            left: 100%;
            transform: translate(-50%, -50%);
            width: 70%;
            height: 300px;
            opacity: .5;
        }
    
        /* Button container */
        .button {
            position: absolute;
            bottom: 1px;
            width: 100%;
            text-align: center;
        }
    
        /* Content visibility */
        .item {
            display: block;
            position: relative;
            top: auto;
            left: auto;
            transform: none;
        }
    
        .slide .item:nth-child(2) .content {
            display: none;
        }
    
    .main {
        margin-top: auto;
    }
    
    
    
    
        .services__container {
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            width: 100%;
        }
    
        .services__item {
            width: 100%;
            max-width: 100%;
            min-width: unset;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-evenly;
        }
    
        .services__item img,
        .services__item-video {
            width: 100%;
            height: 200px;
            max-height: 300px;
            object-fit: cover;
        }
    
        .services__item-title {
            margin: 0 0;
        }
    
        .services__item-text {
            margin-bottom: 0;
            font-size: 1rem;
        }
    
      
    .contact__form {
        width: 90%;
        max-width: 500px;
        margin: 0 auto;
        padding: 0 auto;
       
    }
    /* ...existing code... */
    
    
    
        /* Hide default nav visually by moving it off top; don't use display: none */
        .header__nav {
            position: fixed;
            top: -100%;
            left: 0;
            width: 100%;
            height: 40vh;
            background: var(--muted-brown);
            transition: top 0.5s ease;
            z-index: 1000;
            display: flex;
            justify-content: center;
            /* align-items: center; */
            padding: 2rem 0;
        }
    
        /* Slide down when .active is applied */
        .header__nav.active {
            top: 0;
        }
    
        .nav__list {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }
    
        /* Hamburger icon visible on mobile */
        .hamburger {
            margin-right: 2%;
            display: flex;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            z-index: 1001;
        }
    
        /* Show/Hide icons */
        #hamburger-close {
            position: relative;
        }
    
        .header__contact-btn {
            position: fixed;
            top: -100%;
            left: 50%;
            transform: translateX(-50%);
            transition: top 0.5s ease;
            z-index: 1001;
        }
    
        /* .header__contact-btn.active {
            top: 35%;
    
        } */
        

    
        .packages__title {
            margin: 0;
        }
        .packages__container {
            flex-direction: column;
            align-items: center;
            margin: 0%;
            padding: 0%;
        }
    
        .package__item {
            width: 80%;
            max-width: 400px;
            margin: 0;
            padding: 10px;
        }
    


}
    