/* ============================================
   KUZA PALACE — COMING SOON
   Single 100vh Landing Page
   Theme: Navy Blue (#2B2D7B) · Amber (#F5A623) · White
   ============================================ */

/* ── Custom Properties ── */
:root {
    --navy: #2B2D7B;
    --navy-dark: #1C1E5A;
    --navy-deeper: #12133D;
    --amber: #F5A623;
    --amber-light: #FFC04D;
    --amber-glow: rgba(245, 166, 35, .3);
    --white: #FFFFFF;
    --white-soft: rgba(255, 255, 255, .8);
    --white-muted: rgba(255, 255, 255, .5);

    --font: 'Poppins', sans-serif;
    --radius: 16px;
    --transition: .35s cubic-bezier(.4, 0, .2, 1);
}

/* ── Reset ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--font);
    background: var(--navy-deeper);
    color: var(--white);
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.accent {
    color: var(--amber);
}

/* ── Particle Canvas ── */
#particleCanvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .35;
}

/* ============================================
   HERO — Full Viewport
   ============================================ */
.hero {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(ellipse at 50% 30%, var(--navy) 0%, var(--navy-deeper) 70%);
    overflow: hidden;
}

/* ── Glow Orbs ── */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 450px;
    height: 450px;
    background: rgba(245, 166, 35, .12);
    top: -10%;
    right: -8%;
    animation: drift 10s ease-in-out infinite alternate;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: rgba(43, 45, 123, .4);
    bottom: -12%;
    left: -6%;
    animation: drift 12s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, -20px);
    }
}

/* ── Floating Food Images ── */
.float-food {
    position: absolute;
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
    border: 2px solid rgba(255, 255, 255, .08);
    z-index: 0;
    opacity: 0.7;
    transition: var(--transition);
}

.float-food:hover {
    opacity: .45;
    border-color: var(--amber);
    transform: scale(1.04) rotate(0deg) !important;
}

.food-1 {
    width: 260px;
    height: 260px;
    top: 8%;
    left: 4%;
    transform: rotate(-8deg);
    animation: float-a 7s ease-in-out infinite;
}

.food-2 {
    width: 220px;
    height: 220px;
    bottom: 8%;
    right: 4%;
    transform: rotate(6deg);
    animation: float-b 8s ease-in-out infinite;
}

@keyframes float-a {

    0%,
    100% {
        transform: rotate(-8deg) translateY(0);
    }

    50% {
        transform: rotate(-8deg) translateY(-18px);
    }
}

@keyframes float-b {

    0%,
    100% {
        transform: rotate(6deg) translateY(0);
    }

    50% {
        transform: rotate(6deg) translateY(-14px);
    }
}

/* ── Center Content ── */
.hero-center {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 0 24px;
    animation: fadeInUp .9s ease both;
}

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

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

/* Logo */
.logo {
    width: clamp(180px, 35vw, 320px);
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, .3));
    animation: logoPulse 4s ease-in-out infinite;
    background-color: #ffffff;
    border-radius: 20px;
}

@keyframes logoPulse {

    0%,
    100% {
        filter: drop-shadow(0 4px 20px rgba(0, 0, 0, .3));
    }

    50% {
        filter: drop-shadow(0 8px 50px rgb(0, 0, 0));
    }
}

/* Divider */
.divider {
    width: 60px;
    height: 3px;
    background: var(--amber);
    border-radius: 10px;
    box-shadow: 0 0 14px var(--amber-glow);
}

/* Heading */
.hero-center h1 {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

/* Tagline */
.tagline {
    font-size: clamp(.9rem, 2vw, 1.1rem);
    color: var(--white-soft);
    max-width: 520px;
    line-height: 1.7;
}

/* ── Contact Pills ── */
.contact-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 6px;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--white-soft);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.contact-pill i {
    color: var(--amber);
    font-size: .9rem;
}

.contact-pill:hover {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--navy-deeper);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--amber-glow);
}

.contact-pill:hover i {
    color: var(--navy-deeper);
}

/* ── Social Icons ── */
.socials {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.socials a {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .04);
    transition: var(--transition);
}

.socials a:hover {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--navy-deeper);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px var(--amber-glow);
}

/* ── Footer Text ── */
.footer-text {
    position: absolute;
    bottom: 20px;
    font-size: .75rem;
    color: var(--white-muted);
    z-index: 2;
    letter-spacing: .3px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .float-food {
       opacity: 0.7;
    }

    .food-1 {
        width: 180px;
        height: 180px;
        top: 4%;
        left: -2%;
    }

    .food-2 {
        width: 150px;
        height: 150px;
        bottom: 5%;
        right: -2%;
    }

    .contact-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .contact-pill {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

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

    .hero-center {
        gap: 14px;
    }

    .socials a {
        width: 40px;
        height: 40px;
        font-size: .9rem;
    }

    .contact-pill {
        font-size: .82rem;
        padding: 9px 18px;
    }
}