@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Pacifico&display=swap');

/* ===== BITBUDZ BRAND COLORS FROM LOGO ===== */
:root {
    --orange: #E8621A;
    /* Primary orange from logo */
    --orange-light: #F7892B;
    --orange-dark: #C4511A;
    --magenta: #C62A7A;
    /* Pink/magenta from logo */
    --magenta-light: #E0459A;
    --magenta-dark: #A01F63;
    --green: #4BAF50;
    /* Leaf green from logo */
    --green-light: #6BCF72;
    --green-dark: #389940;
    --cream: #FFF8F0;
    /* Warm cream background */
    --cream-alt: #FEF0E0;
    --cream-card: #FFFAF5;
    --dark-text: #2A1A0E;
    --mid-text: #6B4226;
    --muted-text: #A07850;
    --white: #FFFFFF;
    --shadow-warm: rgba(232, 98, 26, 0.18);
    --shadow-pink: rgba(198, 42, 122, 0.15);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 18px;
    --radius-sm: 10px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cream);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 13px 34px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.2px;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    box-shadow: 0 6px 20px var(--shadow-warm);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--magenta), var(--magenta-dark));
    transform: translateY(-3px);
    box-shadow: 0 12px 28px var(--shadow-pink);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--magenta), var(--magenta-dark));
    color: var(--white);
    box-shadow: 0 6px 20px var(--shadow-pink);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    transform: translateY(-3px);
    box-shadow: 0 12px 28px var(--shadow-warm);
}

.btn-outline {
    background: transparent;
    border: 2.5px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    background: transparent;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 248, 240, 0.96);
    backdrop-filter: blur(14px);
    padding: 10px 0;
    box-shadow: 0 4px 24px rgba(232, 98, 26, 0.12);
    border-bottom: 1.5px solid rgba(232, 98, 26, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 64px;
    transition: var(--transition);
}

header.scrolled .logo img {
    height: 48px;
}

nav ul {
    display: flex;
    gap: 32px;
}

nav ul li a {
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    position: relative;
    padding-bottom: 4px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--orange);
    border-radius: 2px;
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

header.scrolled nav ul li a {
    color: var(--dark-text);
}

header.scrolled nav ul li a:hover,
header.scrolled nav ul li a.active {
    color: var(--orange);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(42, 26, 14, 0.72) 0%,
            rgba(232, 98, 26, 0.25) 60%,
            rgba(198, 42, 122, 0.15) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 680px;
    padding: 0 20px;
}

.slide-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 4.2rem;
    line-height: 1.1;
    margin-bottom: 22px;
    font-weight: 900;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 520px;
    margin-bottom: 38px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-btns {
    display: flex;
    gap: 18px;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--orange), var(--magenta));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    transition: var(--transition);
    opacity: 0.85;
    box-shadow: 0 8px 24px var(--shadow-warm);
}

.slider-btn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--orange);
    width: 28px;
    border-radius: 8px;
}

/* Slide entry animations */
.hero-content h1,
.hero-content p,
.hero-content .hero-btns,
.slide-subtitle {
    opacity: 0;
    transform: translateY(30px);
}

.slide.active .slide-subtitle {
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.slide.active h1 {
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.slide.active p {
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.slide.active .hero-btns {
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SECTION COMMON ===== */
section {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--muted-text);
    font-size: 1.05rem;
}

/* Decorative divider pill */
.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--magenta));
    border-radius: 4px;
    margin: 18px auto 0;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--cream-alt);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(232, 98, 26, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(198, 42, 122, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h3 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 22px;
    background: linear-gradient(135deg, var(--orange), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 22px;
    color: var(--mid-text);
    line-height: 1.85;
}

.about-image {
    position: relative;
    padding-right: 20px;
}

.about-image img {
    border-radius: var(--radius);
    width: 100%;
    box-shadow: 0 24px 48px rgba(232, 98, 26, 0.18);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 16px;
    right: 0;
    bottom: 16px;
    width: 20px;
    background: linear-gradient(180deg, var(--orange), var(--magenta));
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    z-index: -1;
}

/* ===== MENU PREVIEW ===== */
.menu-preview {
    background: var(--cream);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.menu-tab {
    padding: 10px 22px;
    border: 2px solid rgba(232, 98, 26, 0.25);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--mid-text);
    background: var(--cream-card);
}

.menu-tab:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.menu-tab.active {
    background: linear-gradient(135deg, var(--orange), var(--magenta));
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 6px 18px var(--shadow-warm);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.menu-item {
    background: var(--cream-card);
    border: 1.5px solid rgba(232, 98, 26, 0.12);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(232, 98, 26, 0.05);
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--orange), var(--magenta));
    border-radius: 4px 0 0 4px;
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-8px);
    border-color: rgba(232, 98, 26, 0.3);
    box-shadow: 0 16px 36px rgba(232, 98, 26, 0.14);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.menu-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-text);
}

.menu-item .price {
    font-weight: 800;
    background: linear-gradient(135deg, var(--orange), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.05rem;
}

.menu-item p {
    font-size: 0.88rem;
    color: var(--muted-text);
    line-height: 1.65;
}

/* ===== GALLERY ===== */
.gallery {
    background: var(--cream-alt);
}

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

.gallery-item {
    height: 240px;
    overflow: hidden;
    border-radius: var(--radius-sm);
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 98, 26, 0.35), rgba(198, 42, 122, 0.25));
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* ===== REVIEWS ===== */
.reviews {
    background: var(--cream);
}

.reviews .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
    margin-bottom: 44px;
}

.reviews .section-header::after {
    margin: 0;
}

.reviews .section-header h2 {
    margin-bottom: 0;
}

.review-buttons {
    display: flex;
    gap: 14px;
}

.review-buttons button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    background: transparent;
    color: var(--orange);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.review-buttons button:hover {
    background: linear-gradient(135deg, var(--orange), var(--magenta));
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow-warm);
}

.reviews-container {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0 20px;
    scrollbar-width: none;
}

.reviews-container::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 calc((100% - 56px) / 3);
    background: var(--cream-card);
    padding: 32px;
    border-radius: var(--radius);
    border: 1.5px solid rgba(232, 98, 26, 0.12);
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(232, 98, 26, 0.05);
}

.review-card:hover {
    border-color: var(--orange);
    box-shadow: 0 16px 36px rgba(232, 98, 26, 0.12);
    transform: translateY(-4px);
}

.review-card .stars {
    margin-bottom: 14px;
    font-size: 1rem;
    background: linear-gradient(90deg, var(--orange), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.review-card .stars i {
    -webkit-text-fill-color: var(--orange);
}

.review-card p {
    font-style: italic;
    margin-bottom: 18px;
    color: var(--mid-text);
    line-height: 1.75;
    font-size: 0.95rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-author strong {
    color: var(--dark-text);
    font-weight: 700;
}

@media (max-width: 992px) {
    .review-card {
        flex: 0 0 calc((100% - 28px) / 2);
    }
}

@media (max-width: 600px) {
    .review-card {
        flex: 0 0 100%;
    }

    .reviews .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* ===== FIND US SECTION ===== */
.find-us {
    background: linear-gradient(135deg, var(--orange) 0%, var(--magenta) 100%);
    color: var(--white);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.find-us::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.find-us::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 30%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.find-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.find-title {
    font-size: 3.5rem;
    color: var(--white);
    font-weight: 900;
    margin-bottom: 18px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.find-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 38px;
    opacity: 0.92;
}

.contact-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    align-items: center;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.detail-text h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.detail-text p {
    font-size: 0.98rem;
    opacity: 0.88;
}

.detail-text a {
    color: var(--white);
    text-decoration: underline;
}

.find-map {
    position: relative;
}

.map-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 440px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

.map-wrapper iframe {
    filter: grayscale(0.4) contrast(1.1) saturate(1.1);
}

.map-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 10;
}

.map-button-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    font-weight: 800;
}

.btn-dark-small {
    background: var(--dark-text);
    color: var(--white);
    padding: 11px 22px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: var(--transition);
}

.btn-dark-small:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark-text);
    padding-top: 80px;
    border-top: 3px solid var(--orange);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 22px;
    color: var(--orange-light);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-col p,
.footer-col li {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.93rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.65);
}

.footer-col a:hover {
    color: var(--orange-light);
}

.footer-col .logo img {
    height: 56px;
}

.opening-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.opening-hours .day {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 500;
}

.opening-hours .time {
    color: var(--orange-light);
    font-size: 0.9rem;
    text-align: right;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 14px;
    margin-top: 8px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(232, 98, 26, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--orange), var(--magenta));
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

.app-btn {
    margin-top: 16px;
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 0;
}

.footer-bottom p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.footer-bottom img {
    height: 24px;
    display: block;
}

/* ===== SCROLL TOP BUTTON ===== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange), var(--magenta));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 24px var(--shadow-warm);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, var(--green), var(--green-dark));
}

/* ===== MOBILE TOGGLE ===== */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

header.scrolled .mobile-toggle {
    color: var(--dark-text);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    nav ul {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .find-grid {
        grid-template-columns: 1fr;
    }
}

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

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    section {
        padding: 60px 0;
    }
}

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

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content {
        left: 5%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}