@import url('https://fonts.cdnfonts.com/css/euclid-circular-a');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Euclid Circular A', sans-serif;
}

body{
    background: #b5b5b5;
    overflow-x: hidden;
}

header{
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

header .logo{
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

header ul{
    display: flex;
}

header ul li{
    list-style: none;
    margin-left: 20px;
}

header ul li a{
    text-decoration: none;
    padding: 6px 15px;
    color: #ffffff;
    border-radius: 20px;
    transition: 0.3s ease;
}

header ul li a:hover{
    background: #fff;
    color: #2b1055;
}

.section{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Background per section */
#back1{
    background-image: url("../img/back/backbubble1.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* ini kunci parallax */
    background-repeat: no-repeat;
}

#back2{
    background-image: url("../img/back/backbubble2.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* ini kunci parallax */
    background-repeat: no-repeat;
}

#back3{
    background-image: url("../img/back/backbubble3.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* ini kunci parallax */
    background-repeat: no-repeat;
}

#back4{
    background-image: url("../img/back/backbubble4.jpg");
}

/* Overlay agar text terbaca */
.section::before{
    content: "";
    position: absolute;
    inset: 0;
}

section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px;
}

.content {
    position: absolute;
    top: 30%;
    color: rgba(0, 0, 0, 0.733);
}

.content1 {
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}


.content2 {
    top: 40%;
    left: 43%;
    width: 53%;
    text-align: left;
    font-size: 1.4rem;
}


/* CONTENT 3 GRID */
.content3 {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    color: #000;
}

/* Card */
.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Gambar bulat */
.feature img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

/* Judul */
.feature h3 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* Deskripsi */
.feature p {
    font-size: 14px;
    line-height: 1.6;
}

#about,
#news,
#contact{
    min-height: 100vh;
    padding: 100px 10%;
    background: #fff;
}

/* SECTION BACK4 */
.section-shop {
    background: #caa3c9; /* warna ungu seperti gambar */
    padding: 60px 0;
}

/* Content 4 */
.content4 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    color: white;
    top: 80%;
}

/* Item */
.shop-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 500;
}

/* Logo */
.shop-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Garis pemisah */
.divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.6);
}

.imgBuuble{
    width: 66.9%;
}

.arrow{
    position: absolute;
    bottom: 23px;
}


@media (max-width: 768px) {
    .content4 {
        flex-direction: column;
        gap: 20px;
    }

    .divider {
        display: none;
    }

    .content2 {
        top: 20%;
        left: 0%;
        width: 100%;
        text-align: left;
        font-size: 1.4rem;
        padding: 36px;
    }

    .content3 {
        position: relative;
        display: block;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        width: 100%;
        max-width: 597px;
        margin: auto;
        text-align: center;
        color: #000;
        top: 0px;
    }

    .content4
    {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        color: white;
        top: 72%;
    }

    #back3
    {
        background-image: url(../img/back/backbubble3.jpg);
        min-height: 134vh;
    }

    .arrow {
        position: relative;
        bottom: 67px;
    }

    }


@media (max-width: 992px){
    header{
        padding: 20px 4%;
    }

    header .logo{
        font-size: 1.7rem;
    }

    header ul li{
        margin-left: 15px;
    }

    section{
        height: 80vh;
    }
}

@media (max-width: 768px){
    header{
        flex-direction: column;
        padding: 15px 5%;
    }

    header ul{
        margin-top: 10px;
    }

    header ul li{
        margin-left: 10px;
    }

    header .logo{
        font-size: 1.5rem;
    }

    section{
        height: 70vh;
    }
}

@media (max-width: 480px){
    header ul{
        flex-wrap: wrap;
        justify-content: center;
    }

    header ul li{
        margin: 5px;
    }

    section{
        height: 60vh;
    }
}

#back1{
    background-position: fixed;
}

.btn-available{
    display: inline-block;
    margin-top: 30px;
    padding: 15px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(180deg, #f7c1d9, #d97ca6);
    border: 3px solid rgba(255,255,255,0.6);
    box-shadow:
        inset 0 2px 5px rgba(255,255,255,0.6),
        0 8px 20px rgba(217,124,166,0.5);
    transition: 0.3s ease;
}

.btn-available:hover{
    transform: translateY(-3px);
    box-shadow:
        inset 0 2px 8px rgba(255,255,255,0.8),
        0 12px 25px rgba(217,124,166,0.7);
}


@media (max-width: 768px){
    .btn-available{
        padding: 12px 19px;
        font-size: 1rem;
    }
}
