/* --- Variables & Reset --- */
:root {
    --primary: #FDE047; /* Sunny Yellow */
    --primary-hover: #EAB308;
    --bg-main: #FAFAFA; /* Very light gray for modern depth */
    --bg-card: #FFFFFF;
    --text-main: #18181B; /* Almost black */
    --text-muted: #71717A;
    --radius-lg: 32px;
    --radius-md: 24px;
    --radius-sm: 16px;
    --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Floating Header (Glassmorphism) --- */
.header-wrapper {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 0 24px;
}

.floating-header {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    width: 100%;
    max-width: 1152px;
    border-radius: 100px;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.25rem;
}

.logo img { height: 36px; }

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.nav-links a:hover { color: var(--text-main); }

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-main);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: scale(0.97); /* Tactile click effect */
}

.btn-blur {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.05);
}

.btn-blur:hover { background: rgba(255, 255, 255, 0.9); transform: scale(0.97); }

.btn-large { padding: 16px 36px; font-size: 1.1rem; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 4px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--text-main); border-radius: 2px; transition: 0.3s; }

/* --- Hero Section --- */
.hero-modern {
    padding-top: 180px;
    padding-bottom: 100px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: #FFF;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 24px;
    box-shadow: var(--shadow-soft);
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight {
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--primary);
    z-index: -1;
    border-radius: 4px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-buttons { display: flex; gap: 16px; justify-content: center; }

/* --- Bento Initiatives --- */
section { padding: 100px 0; }
.section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 40px; letter-spacing: -0.02em; }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 24px;
}

.bento-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover { transform: translateY(-8px); }

.card-large {
    grid-column: span 2;
    grid-row: span 2;
    color: white;
}

.card-large .card-content { position: relative; z-index: 2; }
.card-large h3 { font-size: 2.5rem; margin-bottom: 12px; }
.card-large p { font-size: 1.1rem; opacity: 0.9; max-width: 80%; }

.card-img-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.card-img-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
}

.card-small { grid-column: span 1; justify-content: flex-start; }
.card-small h3 { font-size: 1.5rem; margin-bottom: 8px; margin-top: auto; }
.card-small p { color: var(--text-muted); font-size: 0.95rem; }
.icon-wrapper { font-size: 2.5rem; margin-bottom: 20px; }

/* --- Instagram Bento Gallery --- */
.gallery-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.ig-link { font-weight: 700; color: var(--text-main); font-size: 1.1rem; padding-bottom: 10px; }
.ig-link:hover { color: var(--primary-hover); }

.ig-bento-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 16px;
}

.ig-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: block;
}

.ig-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ig-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.heart-icon { font-size: 2rem; color: white; transform: scale(0.5); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }

.ig-item:hover img { transform: scale(1.05); }
.ig-item:hover .ig-overlay { opacity: 1; }
.ig-item:hover .heart-icon { transform: scale(1); }

.ig-large { grid-column: span 2; grid-row: span 2; }
.ig-tall { grid-row: span 2; }

/* --- Footer --- */
.footer-modern { background: #18181B; color: #FFF; padding: 60px 0 40px; border-radius: 40px 40px 0 0; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; align-items: center; }
.footer-brand .footer-logo { height: 40px; margin-bottom: 16px; background: white; border-radius: 50%; padding: 4px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; color: #A1A1AA; }
.footer-links a:hover { color: var(--primary); }
.btn-social { background: #27272A; padding: 12px 24px; border-radius: 100px; font-weight: 600; transition: 0.3s; display: inline-block; }
.btn-social:hover { background: var(--primary); color: #000; }

/* --- Reveal Animation --- */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- Responsive --- */
@media (max-width: 992px) {
    .bento-grid, .ig-bento-gallery { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .card-large, .ig-large, .ig-tall { grid-column: span 2; grid-row: auto; aspect-ratio: 16/9; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .btn { display: none; }
    .hamburger { display: flex; }
    .bento-grid, .ig-bento-gallery { grid-template-columns: 1fr; }
    .card-large, .ig-large, .ig-tall { grid-column: span 1; }
    .gallery-header { flex-direction: column; align-items: flex-start; gap: 10px; }
}