* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #fff8df;
    color: #2a1a05;
}

footer a {
    text-decoration: none;
    color: #ffd56a;
}

footer a:hover {
    color: white;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 22px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(44, 26, 5, 0.92);
    backdrop-filter: blur(12px);
    z-index: 100;
    box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}

.logo {
    color: #ffbf1f;
    font-size: 1.4rem;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    color: #fff3c4;
    font-weight: 600;
}

.nav-links a:hover {
    color: #ffbf1f;
}

.hero {
    min-height: 100vh;
    padding: 140px 8% 80px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 50px;
    background:
        radial-gradient(circle at 80% 30%, rgba(255, 191, 31, 0.35), transparent 32%),
        linear-gradient(135deg, #fff8df, #ffe99a);
}

.tag,
.eyebrow {
    color: #b86500;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.hero h2,
.section h2,
.about-section h2 {
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 22px;
    color: #2a1a05;
}

.hero h2 span {
    color: #d57900;
}

.hero p,
.section p,
.about-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 650px;
    color: #4a3415;
}

.price-card {
    margin: 28px 0;
    padding: 24px;
    max-width: 260px;
    background: #2a1a05;
    border: 2px solid #ffbf1f;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(42, 26, 5, 0.25);
    color: #fff3c4;
}

.price-card h3 {
    font-size: 1.8rem;
}

.price-card strong {
    color: #ffbf1f;
    font-size: 2rem;
}

.btn,
button {
    display: inline-block;
    padding: 14px 24px;
    background: #d57900;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s ease;
    box-shadow: 0 10px 25px rgba(213, 121, 0, 0.3);
}

.btn:hover,
button:hover {
    transform: translateY(-3px);
    background: #2a1a05;
    color: #ffbf1f;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.popcorn-bucket {
    width: 330px;
    height: 330px;
    background: linear-gradient(135deg, #2a1a05, #d57900, #ffbf1f);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 9rem;
    box-shadow: 0 35px 90px rgba(42, 26, 5, 0.35);
    border: 6px solid #fff3c4;
}

.section,
.about-section {
    padding: 100px 8%;
}

.card-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    padding: 30px;
    background: #fffdf5;
    border-radius: 24px;
    border: 1px solid #f0c15b;
    box-shadow: 0 14px 35px rgba(42, 26, 5, 0.08);
    transition: 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(42, 26, 5, 0.14);
}

.card h3 {
    color: #b86500;
    margin-bottom: 12px;
}

.about-section {
    background: #2a1a05;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.about-section h2,
.about-section p {
    color: #fff3c4;
}

.about-section .eyebrow {
    color: #ffbf1f;
}

.about-section p {
    margin-bottom: 18px;
}

.about-box {
    padding: 50px;
    border-radius: 30px;
    background: linear-gradient(135deg, #ffbf1f, #d57900);
    color: #2a1a05;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.about-box h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-section {
    background: #fff8df;
}

.contact-intro {
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 40px;
}

.contact-info {
    padding: 30px;
    background: #2a1a05;
    border-radius: 24px;
    color: #fff3c4;
}

.contact-info p {
    margin-bottom: 16px;
    color: #fff3c4;
}

form {
    display: grid;
    gap: 16px;
}

input,
textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #d6a23a;
    border-radius: 14px;
    background: #fffdf5;
    font: inherit;
    color: #2a1a05;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #d57900;
    box-shadow: 0 0 0 4px rgba(213, 121, 0, 0.15);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

footer {
    padding: 30px 8%;
    text-align: center;
    background: #2a1a05;
    color: #fff3c4;
}

@media (max-width: 800px) {
    .navbar {
        flex-direction: column;
        gap: 16px;
    }

    .hero,
    .about-section,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .card-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .hero {
        padding-top: 180px;
    }

    .popcorn-bucket {
        width: 230px;
        height: 230px;
        font-size: 6rem;
    }

    .nav-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
}
/* ==========================================
   PREMIUM MOTION & INTERACTIONS
========================================== */

/* Hero Image */
.hero-image {
    position: relative;
}

/* Rotating ambient glow */
.hero-image::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 191, 31, 0.45),
        transparent 70%
    );
    filter: blur(45px);
    animation: rotateGlow 18s linear infinite;
    z-index: 0;
}

/* Keep bucket above glow */
.popcorn-bucket {
    position: relative;
    z-index: 1;
    animation: float 5s ease-in-out infinite;
}

/* Floating bucket */
@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-16px);
    }
}

/* Slow moving glow */
@keyframes rotateGlow {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.08);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Price card breathing */
.price-card {
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

/* Card interactions */
.card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(42, 26, 5, 0.18);
    border-color: #ffbf1f;
}

/* Button interactions */
.btn,
button {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.btn:hover,
button:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(213, 121, 0, 0.35);
}

/* Navigation underline animation */
.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #ffbf1f;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Inputs feel alive */
input,
textarea {
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

input:focus,
textarea:focus {
    transform: translateY(-2px);
}

/* About box hover */
.about-box {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.about-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}
