/* =========================
   HERO SECTION
========================= */

.zaika-hero {

    min-height: 90vh;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 120px 20px;

    background:
        linear-gradient(
            rgba(0,0,0,0.65),
            rgba(0,0,0,0.75)
        ),
        url('../images/zaika-banner.jpg');

    background-size: cover;

    background-position: center;

    position: relative;
}


/* GOLD OVERLAY EFFECT */

.zaika-hero::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(255,215,0,0.08),
            transparent 60%
        );
}


/* LOGO */

.zaika-logo {

    width: 220px;

    margin-bottom: 30px;

    border-radius: 20px;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.5);

    z-index: 2;
}


/* HEADING */

.zaika-hero h1 {

    font-size: 4rem;

    color: white;

    margin-bottom: 20px;

    letter-spacing: 2px;

    z-index: 2;
}

.zaika-hero h1 span {

    color: #facc15;
}


/* TAGLINE */

.zaika-hero p {

    font-size: 1.3rem;

    color: #f3e8ff;

    letter-spacing: 1px;

    z-index: 2;
}


/* =========================
   ABOUT SECTION
========================= */

.zaika-about {

    padding: 100px 20px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f8f3ff
        );
}

.zaika-container {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    align-items: center;
}


/* IMAGE */

.zaika-image {

    overflow: hidden;

    border-radius: 25px;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.15);
}

.zaika-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 0.5s ease;
}

.zaika-image:hover img {

    transform: scale(1.08);
}


/* CONTENT */

.zaika-content {

    background:
        rgba(255,255,255,0.75);

    backdrop-filter: blur(12px);

    padding: 50px;

    border-radius: 25px;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.1);
}

.zaika-content h2 {

    font-size: 2.5rem;

    color: #5b138b;

    margin-bottom: 25px;
}

.zaika-content p {

    line-height: 2;

    color: #444;

    margin-bottom: 20px;

    font-size: 1rem;
}


/* TAGLINE BOX */

.tagline-box {

    margin-top: 30px;

    background:
        linear-gradient(
            135deg,
            #5b138b,
            #7b1fa2
        );

    color: white;

    padding: 30px;

    border-radius: 20px;

    text-align: center;

    box-shadow:
        0 10px 30px rgba(123,31,162,0.3);
}

.tagline-box i {

    font-size: 2.5rem;

    color: #facc15;

    margin-bottom: 15px;
}


/* =========================
   EXPERIENCE SECTION
========================= */

.experience-section {

    padding: 100px 20px;

    background:
        linear-gradient(
            rgba(0,0,0,0.85),
            rgba(0,0,0,0.9)
        ),
        url('../images/restaurant-bg.jpg');

    background-size: cover;

    background-position: center;
}


/* TITLE */

.experience-section .section-title {

    color: white;

    margin-bottom: 60px;
}


/* GRID */

.experience-grid {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 30px;
}


/* CARD */

.experience-card {

    background:
        rgba(255,255,255,0.08);

    backdrop-filter: blur(10px);

    padding: 40px 25px;

    border-radius: 25px;

    text-align: center;

    border:
        1px solid rgba(255,255,255,0.1);

    transition: 0.4s ease;
}

.experience-card:hover {

    transform: translateY(-12px);

    background:
        rgba(255,255,255,0.12);
}


/* ICON */

.experience-card i {

    font-size: 3rem;

    color: #facc15;

    margin-bottom: 20px;
}


/* HEADING */

.experience-card h3 {

    color: white;

    margin-bottom: 15px;
}


/* TEXT */

.experience-card p {

    color: rgba(255,255,255,0.8);

    line-height: 1.8;
}


/* =========================
   GALLERY SECTION
========================= */

.gallery-section {

    padding: 100px 20px;

    background: #fff;
}

.gallery-grid {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 25px;
}


/* IMAGE */

.gallery-item {

    overflow: hidden;

    border-radius: 25px;

    position: relative;

    box-shadow:
        0 20px 40px rgba(0,0,0,0.12);
}

.gallery-item img {

    width: 100%;

    height: 350px;

    object-fit: cover;

    transition: 0.5s ease;
}

.gallery-item:hover img {

    transform: scale(1.1);
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px) {

    .experience-grid {

        grid-template-columns: repeat(2,1fr);
    }

    .gallery-grid {

        grid-template-columns: 1fr;
    }

    .zaika-container {

        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .zaika-hero h1 {

        font-size: 2.4rem;
    }

    .experience-grid {

        grid-template-columns: 1fr;
    }

    .zaika-content {

        padding: 35px 25px;
    }

    .zaika-logo {

        width: 170px;
    }
}