/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat:wght@300;400;600;800&display=swap');

:root{
    --header-height: 5rem;
    
    --main-color: #f7e6df;
    --first-color: #75492b;
    --second-color: #dfd6a7;
    --white-color: #fff;
    --black-color: #151515;

    --font-cursive: 'Great Vibes', cursive;
    --font-body: 'Montserrat', sans-serif;

    --big-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.813rem;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    outline: none;
    border: none;
}

html{
    scroll-behavior: smooth;
}

body{
    background-color: var(--white-color);
    font-size: var(--normal-font-size);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* Buttons */

.btn{
    width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--first-color);
    color: var(--white-color);
    border: 1px solid var(--first-color);
    border-radius: 50px;
    font-size: var(--normal-font-size);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1rem;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn:hover{
    background-color: transparent;
    color: var(--first-color);
}

.btn-outline{
    width: 280px;
    background-color: transparent;
    color: var(--first-color);
    padding: 5px 10px 5px 0;
    transition: all 0.4s ease;
    position: relative;
}

.btn-outline::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 18%;
    height: 100%;
    background-color: var(--first-color);
    border: 1px solid var(--first-color);
    border-radius: 50px;
    transition: all 0.4s ease-in-out;
}

.btn-outline i{
    margin-right: 1.5rem;
    font-size: var(--h3-font-size);
    color: var(--white-color);
    z-index: 10;
}

.btn-outline:hover::before{
    width: 100%;
    z-index: -1;
}

.btn-outline:hover{
    color: var(--white-color);
    z-index: 10;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 10000;
    transition: all 0.4s ease;
}

.scroll-header{
    background-color: var(--white-color);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}


.logo img {
    width: 50%;
    max-height: var(--header-height);
    object-fit: contain;
}


.nav-menu .nav-list{
    display: flex;
}

.nav-menu li{
    margin-right: 2rem;
}

.nav-link{
    font-size: var(--normal-font-size);
    color: var(--black-color);
    font-weight: bold;
    text-transform: capitalize;
    position: relative;
    transition: all 0.4s ease;
}

.nav-link::before{
    content: '';
    position: absolute;
    width: 0;
    left: 0;
    bottom: 0;
    height: 2px;
    background-color: var(--first-color);
    transition: all 0.4s ease-in-out;
}

.nav-link:hover::before{
    width: 100%;
}

.nav-link:hover,
.nav-link.active{
    color: var(--first-color);
}

.nav-toggle{
    font-size: var(--h1-font-size);
    padding: 5px 5px 0;
    border: 2px solid transparent;
    cursor: pointer;
    z-index: 100;
    display: none;
}

.nav-toggle:hover{
    color: var(--first-color);
    border: 2px solid var(--first-color);
}

/* Start Home Section */

.home{
    width: 100%;
    height: 100vh;
    background-color: var(--main-color);
    border-radius: 0 0 300px 0;
}

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

.home .home-img img{
    max-width: 100%;
    height: 87%;
    padding-right: 100px;
}

.home .home-content{
    width: 40%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.home-content h1{
    font-family: var(--font-cursive);
    font-size: 4rem;
    line-height: 3.5rem;
    letter-spacing: 4px;
    color: var(--first-color);
    margin-bottom: 1.5rem;
}

.home-content p{
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: 2px;
    color: var(--black-color);
    margin-bottom: 1.5rem;
}

/* End Home Section */

/* Start About Section */

    .about{
        width: 100%;
        padding: 7rem 0;
        background-image: url(../image/glastonbury-bottom-left.png);
        background-repeat: no-repeat;
        background-position: bottom left;
        z-index: -1;
    }

    .about .container{
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
    }

    .section-title{
        margin: 0 auto;
        text-align: center;
    }

    .section-title h1{
        font-family: var(--font-cursive);
        font-size: var(--big-font-size);
        font-weight: 400;
        line-height: 3rem;
        color: var(--first-color);
    }

    .section-title span{
        font-weight: 300;
        font-size: var(--h2-font-size);
        line-height: var(--black-color);
        color: var(--black-color);
    }

    .about-detail-content{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        align-items: center;
        border: 2px solid var(--first-color);
        border-radius: 30px;
        padding: 1rem;
    }

    .about-img img{
        width: 100%;
        border-radius: 30px;
        filter: drop-shadow(16px 16px 16px rgba(0,0,0,0.25));
    }

    .about-description{
        position: relative;
        padding: 2rem;
    }

    .about-description::before{
        content: '';
        position: absolute;
        width: 100%;
        height: 110%;
        top: -10%;
        left: 0;
        background-color: var(--main-color);
        border-radius: 30px;
        box-shadow: 4px 8px 16px rgba(0, 0, 0, 0.25);
        z-index: -1;
    }

    .about-description p{
        font-weight: 400;
        line-height: 2rem;
        color: var(--black-color);
    }
/* End About Section */

/* Start Services Section */

    .services{
        width: 100%;
        padding: 7rem 0;
        background-image: url(../image/glastonbury-top-left.png);
        background-repeat: no-repeat;
        background-position: top left;
        z-index: -1;
    }

    .services-content{
        display: flex;
        flex-wrap: wrap;
    }

    .services-content-description{
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem;
        text-align: center;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .services-content-description .box{
        padding: 20px;
    }

    .services-content-description .box .inner img{
        width: 90px;
        margin-bottom: 1rem;
    }

    .services-content-description .box .inner{
        font-size: var(--h3-font-size);
        font-weight: 800;
        text-transform: capitalize;
        color: var(--first-color);
        padding: 10px;
        position: relative;
    }

    .services-content-description .box .inner::before,
    .services-content-description .box .inner::after{
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        box-sizing: border-box;
        transition: all 0.8s ease;
    }

    .services-content-description .box .inner::before{
        bottom: 0;
        left: 0;
        border-bottom: 3px solid transparent;
        border-left: 3px solid transparent;
    }

    .services-content-description .box .inner::after{
        top: 0;
        right: 0;
        border-top: 3px solid transparent;
        border-right: 3px solid transparent;
    }

    .services-content-description .box:hover .inner::before,
    .services-content-description .box:hover .inner::after{
        width: 100%;
        height: 100%;
        border-color: var(--first-color);
    }

/* End Services Section */

/* Start Packages Section */

    .package{
        width: 100%;
        padding: 7rem 0;
        background-color: var(--main-color);
        border-radius: 0 300px;
    }

    .package-cards{
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        margin-top: 2.5rem;
    }

    .package a{
        margin-top: 1rem;
    }

    .card{
        background-color: var(--white-color);
        box-shadow: 8px 8px 16px rgba(0,0,0,0.25);
        border-radius: 30px;
        padding: 1.5rem;
        margin: 10px auto;
        transition: all 0.4s ease-in-out;
    }

    .card:hover{
        transform: scale(1.1);
    }

    .card-title{
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .card-title h1{
        font-weight: bold;
        font-size: var(--h1-font-size);
        line-height: 2.25rem;
        color: var(--black-color);
    }

    .item{
        display: flex;
        align-items: center;
    }

    .card-items{
        margin-bottom: 1rem;
    }

    .item p{
        font-weight: bold;
        line-height: 1.5rem;
        color: var(--first-color);
        margin-left: 0.5rem;
    }

    .item .check-icon,
    .item .fa-times{
        font-size: var(--h3-font-size);
    }

    .item .fa-times,
    .item .not{
        color: var(--second-color);
    }

    .item .fa-check{
        color: var(--first-color);
    }

    .card-items button{
        margin: 1rem auto 0;
    }

    .discount {
        text-align: center;
        margin: 10px 0;
        font-size: 14px;
        color: #e67e22;
    }
    .discount strong {
        font-weight: bold;
    }


/* End Packages Section */

/* Start Gallery Section */

    .gallery{
        width: 100%;
        padding: 7rem 0;
        position: relative;
    }

    .gallery::before{
        content: '';
        position: absolute;
        width: 100%;
        height: 60%;
        top: 20%;
        left: 0;
        background-color: var(--main-color);
        z-index: -1;
    }

    .gallery-list-img{
        width: 100%;
        max-width: 1200px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 2.5rem auto;
        position: relative;
    }

    .gallery-img {
        width: 20%;
        margin: 0.5rem;
    }

    .gallery-img img{
        width: 100%;
        display: block;
        margin: 0.5rem;
        transition: transform 0.3s ease;
        filter: drop-shadow(16px 16px 16px rgba(0,0,0,0.2));
    }

    .gallery-img:hover img{
        transform: scale(1.1);
    }

    .gallery-content .btn{
        margin: 0 auto;
    }
/* End Gallery Section */

/* Start Testimonials Section */

    .testimonials{
        padding: 7rem 0;
        background-color: var(--main-color);
        border-radius: 300px 0;
    }

    .testimonials-content{
        padding: 2rem;
    }

    .testimonials-card{
        width: 1100px;
        margin: 3rem auto 0;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .testimonials-item{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin-bottom: 1rem;
        position: relative;
        overflow: hidden;
    }

    .testimonials-item::after{
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        border-radius: 30px;
        background-color: var(--second-color);
    }

    .testimonials-img img{
        width: 70px;
        height: 70px;
        object-fit: cover;
        border-radius: 50%;
        position: absolute;
        top: 10px;
        left: 10px;
        transition: all 0.8s ease;
        z-index: 100;
    }

    .testimonials-box{
        position: relative;
        padding: 30px;
        z-index: 10;
    }

    .testimonials-name{
        margin-bottom: 1rem;
        margin-left: 0.5rem;
        text-align: center;
    }

    .testimonials-name h1{
        font-weight: 400;
        font-size: var(--h2-font-size);
        line-height: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .testimonials-name i{
        color: var(--first-color);
        font-size: var(--h3-font-size);
    }

    .testimonials-description p{
        line-height: 1.5rem;
        margin-top: 2rem;
    }

/* End Testimonials Section */

/* Start Booking Section */

    .booking {
        width: 100%;
        padding: 7rem 0;
        background-color: var(--white-color);
    }

    .booking-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-width: 900px;
        margin: 0 auto;
        padding: 0 1rem;
        text-align: center;
    }

    .booking-header h1 {
        font-family: var(--font-cursive);
        font-size: var(--big-font-size);
        color: var(--first-color);
        margin-bottom: 0.5rem;
        font-weight: 400;
    }

    .booking-header p {
        font-size: var(--h2-font-size);
        color: var(--black-color);
        margin-bottom: 2rem;
    }

    .booking-form {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
        background-color: var(--main-color);
        padding: 2rem;
        border-radius: 30px;
        box-shadow: 4px 8px 16px rgba(0, 0, 0, 0.1);
        text-align: left;
        margin-bottom: 2rem;
    }

    .already-booking span{
        font-weight: 800;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        margin-bottom: 1.5rem;
    }

    .form-group label {
        font-weight: 600;
        color: var(--first-color);
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem 1rem;
        border: 2px solid var(--first-color);
        border-radius: 15px;
        background-color: var(--white-color);
        font-size: var(--normal-font-size);
        font-family: var(--font-body);
        color: var(--black-color);
        transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--second-color);
        outline: none;
    }

    .form-submit {
        text-align: center;
    }

    .form-submit .btn{
        margin: 0 auto;
        display: inline-block;
    }

    .form-check {
        background-color: #f8f9fa;
        padding: 10px 15px;
        margin-bottom: 10px;
        border-radius: 10px;
        border: 1px solid #ddd;
        display: flex;
        align-items: center;
        transition: background-color 0.3s;
    }

    .form-check:hover {
        background-color: #e2e6ea;
    }

    .form-check-input {
        margin-right: 10px;
        transform: scale(1.2);
        cursor: pointer;
    }

    .form-check-label {
        font-weight: 500;
        cursor: pointer;
        display: flex;
        flex-direction: column;
    }

    .form-check-label em {
        font-size: 0.85rem;
        margin-top: 2px;
    }

    .form-check[style*="pointer-events: none"] {
        cursor: not-allowed;
    }

/* End Booking Section */

/* Start DetailBooking Section */

    .booking-detail-section {
        width: 100%;
        padding: 7rem 0;
        background-color: var(--main-color);
    }

    .booking-detail-section hr{
        width: 100px; 
        border: 1px solid var(--first-color); 
        margin: 1rem auto;
    }

    .booking-table-card {
        background-color: var(--white-color);
        padding: 2rem;
        border-radius: 20px;
        box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
        max-width: 1200px;
        margin: 2rem auto;
        overflow-x: auto;
    }

    .booking-table-card h3{
        margin-bottom: 1rem; 
        color: var(--black-color);
    }

    .booking-table {
        width: 100%;
        border-collapse: collapse;
        text-align: left;
    }

    .booking-table th,
    .booking-table td {
        padding: 1rem;
        border-bottom: 1px solid #ddd;
        font-size: var(--normal-font-size);
        color: var(--black-color);
    }

    .booking-table th {
        color: var(--black-color);
        font-weight: bold;
    }

    .table-responsive {
        overflow-x: auto;
    }

/* End DetailBooking Section */

/* Start Layanan Section */

    .booking-layanan {
        padding: 7rem 0;
        background-color: var(--main-color);
    }

    .booking-layanan hr{
        width: 100px; 
        border: 1px solid var(--first-color); 
        margin: 1rem auto;
    }

    .layanan-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .layanan-card {
        background-color: var(--white-color);
        border-radius: 20px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        overflow: hidden;
        transition: transform 0.3s ease;
    }

    .layanan-card:hover {
        transform: translateY(-5px);
    }

    .layanan-image {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .layanan-content {
        padding: 1.5rem;
        text-align: center;
    }

    .layanan-content h3 {
        margin-bottom: 0.5rem;
        color: var(--black-color);
    }

    .layanan-content p {
        margin-bottom: 1rem;
        font-weight: bold;
        color: var(--first-color);
    }

    .layanan-btns {
        display: flex;
        justify-content: center;
        gap: 0.75rem;
    }

/* End layanan Section */

/* Start Detail layanan Section */

    .detail-card {
        max-width: 1200px;
        margin: 2rem auto;
        background-color: var(--white-color);
        display: flex;
        flex-wrap: wrap;
        border-radius: 20px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        padding: 1rem;
        gap: 2rem;
    }

    .detail-image {
        flex: 0%;
    }

    .detail-image img {
        width: 100%;
        border-radius: 15px;
        box-shadow: 4px 8px 16px rgba(0,0,0,0.1);
    }

    .detail-info {
        flex: 1 1 45%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
    }

    .detail-info h2 {
        color: var(--black-color);
        font-size: var(--h2-font-size);
    }

    .detail-info .deskripsi {
        font-size: var(--normal-font-size);
        background-color: #f3f3f3;
        padding: 0.5rem 1rem;
        border-radius: 10px;
        color: var(--black-color);
    }

    .detail-info .harga {
        font-weight: bold;
        font-size: var(--h2-font-size);
        color: var(--black-color);
    }

/* End Detail layanan Section */

/* Start Login Section */

    .login-section {
        width: 100%;
        padding: 7rem;
        background-color: var(--main-color);
        text-align: center;
    }

    .login-section .container{
        max-width: 600px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .login-form {
        max-width: 500px;
        margin: 0 auto;
        margin-top: 1rem;
        background-color: var(--white-color);
        padding: 2rem;
        border-radius: 30px;
        box-shadow: 4px 8px 16px rgba(0, 0, 0, 0.1);
    }

    .login-form .form-group {
        display: flex;
        flex-direction: column;
        margin-bottom: 1.5rem;
    }

    .login-form .form-group label {
        font-weight: 600;
        color: var(--first-color);
        margin-bottom: 0.5rem;
    }

    .login-form .form-group input {
        padding: 0.75rem 1rem;
        border: 2px solid var(--first-color);
        border-radius: 15px;
        font-size: var(--normal-font-size);
        font-family: var(--font-body);
        background-color: var(--white-color);
        color: var(--black-color);
        transition: all 0.3s ease;
    }

    .login-form .form-group input:focus {
        border-color: var(--second-color);
        outline: none;
    }

    .login-form .form-submit {
        text-align: center;
    }

/* End Login Section */

/* Start Footer Section */

    .footer-list{
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        align-items: center;
        padding: 7rem 0;
        border-bottom: 1px solid var(--first-color);
    }

    .footer-data{
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer img{
        width: 50%;
    }

    .footer-data-social{
        margin-top: 1rem;
    }

    .footer-data-social i{
        color: var(--first-color);
        font-size: var(--h2-font-size);
        transition: 0.4s ease;
        margin-right: 1rem;
    }

    .footer-data-social i:hover{
        transform: scale(1.5);
    }

    .footer-data h2{
        font-weight: bold;
        font-size: var(--h2-font-size);
        line-height: 1.5rem;
        color: var(--first-color);
        margin-bottom: 1rem;
        text-transform: capitalize;
    }

    .footer-data p{
        font-weight: 400;
        line-height: 1.5rem;
        text-align: center;
    }

    .footer .copy{
        text-align: center;
        padding: 1rem 0;
    }

    .footer .copy p{
        font-weight: bold;
        line-height: 1.5rem;
    }

    .footer .copy span{
        font-size: var(--small-font-size);
        line-height: 1rem;
    }

/* End Footer Section */


@media (max-width: 920px) {
    .nav-menu{
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        height: 100vh;
        background-color: var(--main-color);
        font-size: var(--h2-font-size);
        text-align: center;
        text-transform: capitalize;
        padding-top: var(--header-height);
        box-shadow: 0 0 5px rgba(0,0,0,0.4);
        transition: all 0.4s ease-in-out;
    }

    .layanan-grid {
        grid-template-columns: unset; /* Satu kolom saja */
        gap: 2rem;
        padding: 0 1rem;
    }

    .show-nav{
        width: 60%;
    }

    .nav-menu .nav-list{
        display: block;
    }

    .nav-menu li{
        padding: 15px 0;
    }

    .nav-link{
        font-size: var(--h3-font-size);
    }
    
    .nav-toggle{
        display: block;
    }

    .home .home-img img{
        display: none;
    }

    .home .home-content{
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .home-content h1{
        font-size: var(--big-font-size);
    }

    .home-content p{
        padding: 0 2rem;
    }

    .about-detail-content{
        grid-template-columns: unset;
    }

    .services-content-description{
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-img {
        width: 40%;
    }

    .testimonials-card{
        width: 90%;
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-box{
        position: relative;
        padding: 50px 30px 30px;
        z-index: 10;
    }

    .footer-list{
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-data-social i:hover{
        transform: none;
    }
}

@media (max-width:560px) {
    .services-content-description{
        grid-template-columns: unset;
    }

    .gallery-img {
        width: 60%; /* atau 50% dikurangi margin */
    }
    
    .gallery::before{
        width: 100%;
        height: 80%;
        top: 10%;
        z-index: -1;
    }

    .testimonials-card {
        grid-template-columns: unset;
        width: 90%;
    }

    .testimonials-box{
        padding: 30px;
    }

    .footer-list{
        grid-template-columns: unset;
    }

    .login-section {
        margin-top: 4rem;
        padding: 4rem 1rem;
        text-align: center;
    }

    .login-section .container {
        padding: 0 1rem;
        align-items: center;
    }

    .login-form {
        width: 100%;
        padding: 1.5rem;
        border-radius: 20px;
    }

    .login-form .form-group label {
        font-size: 1rem;
    }

    .login-form .form-group input {
        font-size: 1rem;
        padding: 0.6rem 0.9rem;
    }

    .login-form .form-submit button {
        width: 100%;
        padding: 0.8rem;
        font-size: 1rem;
    }
}