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

html,
body {
    min-height: 100%;
}

html {
    background-image: url("../assets/backgrounds/background.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: scroll;
    overflow-x: hidden;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: transparent;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.slon-hero {
    padding: 26px 20px 60px;
    position: relative;
    z-index: 1;
}

.slon-container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.slon-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.slon-nav-pill {
    width: min(1100px, 100%);
    background: #fff5ee;
    border-radius: 999px;
    padding: 16px 26px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 16px 36px rgba(80, 47, 30, 0.16);
}

.slon-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slon-logo img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.slon-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.slon-logo-top {
    font-weight: 700;
    font-size: 14px;
    color: #ff6600;
    letter-spacing: 0.5px;
}

.slon-logo-main {
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 28px;
    color: #3d2415;
}

.slon-nav-links {
    display: flex;
    gap: 26px;
    font-weight: 600;
    color: #5a3d2d;
}

.slon-nav-links a {
    text-decoration: none;
    color: inherit;
}

.slon-nav-cta {
    background: linear-gradient(135deg, #ff8800 0%, #ff6600 100%);
    color: #fff;
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 18px rgba(255, 102, 0, 0.3);
}

.slon-nav-menu {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
}

.slon-nav-toggle {
    display: none;
    border: none;
    background: transparent;
    width: 48px;
    height: 48px;
    padding: 10px;
    margin-left: auto;
    cursor: pointer;
}


.slon-nav-toggle svg {
    width: 100%;
    height: 100%;
    stroke: #5a3d2d;
    stroke-width: 2.5;
    stroke-linecap: round;
    fill: none;
}

.slon-nav-toggle .nav-line {
    transform-origin: 12px 12px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.slon-nav-pill.nav-open .slon-nav-toggle svg {
    transform: none;
}

.slon-nav-pill.nav-open .slon-nav-toggle .nav-line-top {
    transform: translateY(5.5px) rotate(45deg);
}

.slon-nav-pill.nav-open .slon-nav-toggle .nav-line-mid {
    opacity: 0;
}

.slon-nav-pill.nav-open .slon-nav-toggle .nav-line-bot {
    transform: translateY(-5.5px) rotate(-45deg);
}

.slon-hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    align-items: center;
}

.slon-hero-copy h1 {
    font-family: 'Lora', serif;
    font-size: clamp(38px, 5vw, 56px);
    line-height: 1.1;
    color: #3d2415;
    margin-bottom: 18px;
}

.slon-hero-copy p {
    font-size: 18px;
    color: #6f584b;
    margin-bottom: 22px;
}

.slon-hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.slon-primary-btn {
    background: linear-gradient(135deg, #ff8800 0%, #ff6600 100%);
    color: #fff;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 18px rgba(255, 102, 0, 0.25);
}

.slon-secondary-link {
    color: #7b5a44;
    font-weight: 700;
    text-decoration: none;
}

.slon-hero-media {
    display: flex;
    justify-content: center;
}

.slon-hero-plate {
    width: min(680px, 100%);
    filter: drop-shadow(0 25px 35px rgba(73, 45, 32, 0.35));
}

.hero {
    background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
    padding: 80px 20px 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.wave-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
}

.wave-bottom svg {
    width: 100%;
    height: 100%;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.view-menu-btn {
    background: linear-gradient(135deg, #ff8800 0%, #ff6600 100%);
    color: white;
    border: 3px solid white;
    padding: 15px 60px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
    transition: all 0.3s ease;
    font-family: 'Lora', serif;
    text-decoration: none;
    display: inline-block;
}

.view-menu-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.4);
}

.fries-image {
    position: absolute;
    right: 50px;
    top: 20px;
    width: 250px;
    height: auto;
}

.specialties {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.specialties::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 245, 238, 0.92) 0%, rgba(255, 245, 238, 0) 100%);
    z-index: 0;
    pointer-events: none;
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
}

.section-title h2 {
    font-family: 'Lora', serif;
    font-size: 48px;
    color: #2d2d2d;
}

.section-title h2 .orange {
    color: #ff6600;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 8px;
}

.section-tagline {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 50px;
    font-weight: 600;
}

.specialty-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.specialty-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    box-sizing: border-box;
    padding: 16px;
    background-image: linear-gradient(135deg, rgba(95, 47, 26, 0.6) 0%, rgba(162, 76, 33, 0.6) 52%, rgba(208, 98, 36, 0.6) 100%),
        url("../assets/backgrounds/pecenjara-slon-footer.png");
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    position: relative;
}

.card-title-overlay {
    position: relative;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    margin-top: -60px;
    padding: 40px 20px 20px;
    text-align: center;
}

.card-title-overlay h3 {
    font-family: 'Lora', serif;
    font-size: 32px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.card-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff8800 0%, #ff6600 100%);
    margin: 15px auto;
    border-radius: 2px;
}

.card-body {
    padding: 20px;
    text-align: center;
    background: white;
}

.card-price {
    font-size: 24px;
    color: #ff6600;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Lora', serif;
}

.card-description {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.view-full-menu-btn {
    display: block;
    background: linear-gradient(135deg, #ff8800 0%, #ff6600 100%);
    color: white;
    border: none;
    padding: 18px 60px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    margin: 0 auto;
    max-width: 320px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
    transition: all 0.3s ease;
    font-family: 'Lora', serif;
    text-decoration: none;
}

.specialties .view-full-menu-btn {
    font-size: 18px;
}

.view-full-menu-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.4);
}

.why-choose {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.why-title {
    text-align: center;
    margin-bottom: 10px;
}

.why-title h2 {
    font-family: 'Lora', serif;
    font-size: 48px;
    color: #2d2d2d;
}

.why-title .orange {
    color: #ff6600;
}

.why-subtitle {
    text-align: center;
    font-size: 28px;
    color: #2d2d2d;
    margin-bottom: 60px;
    font-weight: 600;
}

.why-subtitle strong {
    font-weight: 700;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    overflow: visible;
}

.feature {
    text-align: center;
    flex: 1 1 240px;
}

.feature-icon {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #ff8800 0%, #ff6600 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
    padding: 24px;
}

.feature-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-icon-img--mascot {
    transform: scale(1.2);
}

.feature h3 {
    font-family: 'Lora', serif;
    font-size: 24px;
    color: #2d2d2d;
    margin-bottom: 10px;
}

.feature p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.gallery {
    padding: 80px 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.location {
    padding: 70px 20px 90px;
    background: none;
    border: none;
}

.location-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.location-content h2 {
    font-family: 'Lora', serif;
    font-size: clamp(34px, 4vw, 46px);
    color: #2d2d2d;
    margin-bottom: 16px;
}

.location-content h2 .orange {
    color: #ff6600;
}

.location-content p {
    font-size: 18px;
    color: #6f584b;
    line-height: 1.7;
    margin-bottom: 24px;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff8800 0%, #ff6600 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(255, 102, 0, 0.3);
}

.gallery-title {
    text-align: center;
    margin-bottom: 10px;
}

.gallery-title h2 {
    font-family: 'Lora', serif;
    font-size: 48px;
    color: #2d2d2d;
}

.gallery-title .orange {
    color: #ff6600;
}

.gallery-subtitle {
    text-align: center;
    font-size: 24px;
    color: #2d2d2d;
    margin-bottom: 50px;
    font-weight: 600;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
    overflow: visible;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    flex: 1 1 300px;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.view-more-btn {
    display: block;
    background: linear-gradient(135deg, #ff8800 0%, #ff6600 100%);
    color: white;
    border: none;
    padding: 18px 60px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
    transition: all 0.3s ease;
    font-family: 'Lora', serif;
}

.view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.4);
}

.pecenjara-slon-footer {
    background-color: #3d2415;
    background-image: linear-gradient(
            rgba(61, 36, 21, 0.92),
            rgba(61, 36, 21, 0.92)
        ),
        url("../assets/backgrounds/pecenjara-slon-footer.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 20px 80px;
    position: relative;
    margin-top: auto;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-bottom: 0;
    flex-shrink: 0;
}

.pecenjara-slon-footer::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 60"><defs><linearGradient id="footerWave" x1="0" y1="0" x2="0" y2="1"><stop offset="0%" stop-color="%233d2415" stop-opacity="0"/><stop offset="100%" stop-color="%233d2415" stop-opacity="0.85"/></linearGradient></defs><path d="M0,30 Q300,0 600,30 T1200,30 L1200,60 L0,60 Z" fill="url(%23footerWave)"/></svg>') no-repeat;
    background-size: cover;
}

.footer-content {
    width: min(1200px, 92vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(280px, 1fr);
    gap: 40px;
    align-items: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    width: min(260px, 60vw);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(61, 36, 21, 0.35));
}

.footer-tagline {
    color: #f5e6da;
    font-size: 18px;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    color: #f5e6da;
    font-size: 16px;
}

.footer-block h3 {
    font-family: 'Lora', serif;
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff5ee;
}

.footer-block p {
    margin-bottom: 6px;
}

.footer-block a {
    color: #fff5ee;
    text-decoration: none;
    font-weight: 600;
}

.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.footer-socials a {
    color: #ffddc1;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-info {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

.leaves {
    position: absolute;
    width: 100px;
    opacity: 0.3;
}

.leaves.top-left {
    top: 120px;
    left: 50px;
}

.leaves.bottom-right {
    bottom: 200px;
    right: 50px;
}

.food-decoration {
    position: absolute;
    opacity: 0.15;
    pointer-events: none;
}

.broccoli {
    top: 20px;
    left: 80px;
    width: 80px;
}

.tomato {
    top: 60%;
    right: 100px;
    width: 60px;
}

.slon-decoration {
    position: absolute;
    opacity: 0.52;
    pointer-events: none;
    z-index: 0;
    filter: drop-shadow(0 18px 30px rgba(61, 36, 21, 0.12));
}

.slon-decoration-hero {
    width: min(340px, 45vw);
    bottom: -40px;
    left: -40px;
    transform: rotate(-6deg);
}

.slon-decoration-burger {
    width: min(360px, 55vw);
    top: -20px;
    left: -90px;
    transform: rotate(2deg);
    opacity: 0.75;
    z-index: 0;
    filter: drop-shadow(0 16px 26px rgba(61, 36, 21, 0.2));
}

.slon-decoration-cta {
    width: min(280px, 40vw);
    top: 20px;
    right: 6%;
    transform: rotate(8deg);
}

.slon-decoration-specialties {
    width: min(260px, 38vw);
    top: -20px;
    left: -2%;
    transform: rotate(-6deg);
    z-index: -1;
    opacity: 0.35;
}

.slon-decoration-gallery {
    width: min(300px, 40vw);
    bottom: -30px;
    right: 8%;
    transform: rotate(-5deg);
}

.slon-decoration-why {
    width: min(260px, 38vw);
    top: 60px;
    right: 20px;
    transform: rotate(-6deg);
    opacity: 0.6;
}

.slon-decoration-why-secondary {
    width: min(220px, 34vw);
    bottom: 20px;
    right: 30px;
    transform: rotate(8deg);
    opacity: 0.5;
}

.slon-container,
.hero-content,
.specialties > :not(.mascot-float):not(.slon-decoration),
.why-choose > :not(.mascot-float):not(.slon-decoration),
.gallery > :not(.mascot-float):not(.slon-decoration) {
    position: relative;
    z-index: 1;
}

.mascot-float {
    position: absolute;
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
    filter: drop-shadow(0 18px 30px rgba(61, 36, 21, 0.18));
    z-index: -1;
    will-change: transform, opacity;
}

.mascot-visible {
    opacity: 0.28;
    transform: translateY(0) scale(1);
}

.mascot-drift.mascot-visible {
    animation: mascot-drift 8s ease-in-out infinite;
}

.mascot-hero {
    width: 180px;
    top: 24px;
    right: 6%;
}


.mascot-gallery {
    width: 175px;
    top: 20px;
    left: 5%;
}

.mascot-gallery.mascot-visible {
    opacity: 0.65;
}

@keyframes mascot-drift {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-12px) scale(1);
    }
}

@media (max-width: 768px) {
    .mascot-float {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mascot-float,
    .mascot-drift.mascot-visible {
        transition: none;
        animation: none;
    }
}

@media (max-width: 960px) {
    .slon-nav-pill {
        flex-wrap: wrap;
        justify-content: center;
        padding: 14px 18px;
        gap: 18px;
    }

    .slon-nav-menu {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }

    .slon-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .slon-hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 900px) {
    .hero {
        padding: 70px 20px 90px;
    }

    .slon-hero-plate {
        width: min(520px, 92%);
    }

    .pecenjara-slon-footer {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }

    .slon-hero {
        padding: 20px 16px 50px;
    }

    .slon-hero-copy p {
        font-size: 16px;
    }

    .hero {
        padding: 60px 16px 80px;
    }

    .view-menu-btn,
    .view-full-menu-btn,
    .view-more-btn {
        width: 100%;
        max-width: 360px;
    }

    .specialties {
        padding: 50px 16px;
    }

    .specialties::before {
        height: 70%;
    }

    .features {
        gap: 20px;
    }

    .feature {
        flex: 1 1 200px;
    }

    .feature-icon {
        width: 120px;
        height: 120px;
        padding: 18px;
    }

    .gallery {
        padding: 70px 16px 20px;
    }

    .gallery-grid {
        gap: 18px;
    }

    .gallery-item {
        flex: 1 1 220px;
    }

    .location {
        padding: 60px 16px 80px;
    }

    .footer-logo {
        width: min(220px, 70vw);
    }
}

@media (max-width: 560px) {
    .features {
        gap: 18px;
    }

    .feature {
        flex: 1 1 100%;
    }

    .gallery-grid {
        gap: 16px;
    }

    .gallery-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 600px) {
    .slon-nav-pill {
        padding: 12px 16px;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: space-between;
        border-radius: 26px;
    }

    .slon-logo img {
        width: 44px;
        height: 44px;
    }

    .slon-logo-main {
        font-size: 22px;
    }

    .slon-nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: 0;
    }

    .slon-nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        padding-top: 12px;
        border-top: 1px solid rgba(123, 90, 68, 0.15);
        margin-left: 0;
    }

    .slon-nav-pill.nav-open {
        border-radius: 22px;
    }

    .slon-nav-pill.nav-open .slon-nav-menu {
        display: flex;
    }

    .slon-nav-links {
        flex-direction: column;
        gap: 12px;
    }

    .slon-nav-cta {
        width: 100%;
        text-align: center;
        max-width: 240px;
    }

    .slon-decoration,
    .mascot-float {
        display: none;
    }

    .section-title h2,
    .why-title h2,
    .gallery-title h2 {
        font-size: 36px;
    }

    .why-subtitle,
    .gallery-subtitle {
        font-size: 20px;
    }

    .footer-content {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .slon-nav-pill {
        padding: 12px 14px;
    }

    .slon-hero-copy h1 {
        font-size: clamp(30px, 9vw, 40px);
    }

    .location-content p {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .specialty-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .features {
        flex-wrap: nowrap;
        gap: 70px;
    }

    .feature {
        flex: 1 1 0;
    }
}
