/* ==========================================================
   Crista's Customs - Master Stylesheet
   Brand Colors: Soft Pink (#E6A8D6), Sky Blue (#8BCAE6), Mint Green (#B8E6D6), Lilac (#D4B8E6)
   Typography: Fredoka One (Headings), Nunito (Body)
   Mobile-First & Ultra-Responsive
   ========================================================== */

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

:root {
    /* Brand Palette */
    --primary-color: #E6A8D6;       /* Soft Pink */
    --primary-dark: #D47CBF;
    --primary-light: #FDF2FA;
    --primary-glow: rgba(230, 168, 214, 0.45);
    
    --secondary-color: #8BCAE6;     /* Sky Blue */
    --secondary-dark: #5DA9CE;
    --secondary-light: #EFF8FC;
    --secondary-glow: rgba(139, 202, 230, 0.45);
    
    --accent-color: #B8E6D6;        /* Mint Green */
    --accent-dark: #7ECEB7;
    --accent-light: #F0FAF6;
    --accent-glow: rgba(184, 230, 214, 0.45);

    --lilac-color: #D4B8E6;         /* Lavender Lilac */
    --lilac-dark: #B890D4;
    --lilac-light: #F8F2FC;

    --peach-color: #FFD6C0;
    
    /* Platform Accent Colors */
    --tiktok-color: #000000;
    --tiktok-accent: #FE2C55;
    --tiktok-cyan: #00F2FE;
    --whatnot-color: #FFE600;
    --whatnot-dark: #1F1D00;
    --whatnot-text: #1A1A1A;
    
    /* Neutrals & Surfaces */
    --text-dark: #2A2429;
    --text-body: #4A4349;
    --text-light: #706870;
    --text-muted: #9E949E;
    
    --bg-base: #FAF6FA;
    --bg-white: #FFFFFF;
    --bg-surface: #FFFFFF;
    --bg-surface-elevated: #FDFBFE;
    --border-color: rgba(230, 168, 214, 0.35);
    --border-subtle: rgba(0, 0, 0, 0.06);

    /* Gradients */
    --bg-gradient: linear-gradient(135deg, #E6A8D6 0%, #D4B8E6 50%, #8BCAE6 100%);
    --bg-gradient-warm: linear-gradient(135deg, #E6A8D6 0%, #FFD6C0 100%);
    --bg-soft-gradient: linear-gradient(135deg, rgba(230, 168, 214, 0.18) 0%, rgba(139, 202, 230, 0.18) 100%);
    --bg-mesh: radial-gradient(at 0% 0%, rgba(230, 168, 214, 0.22) 0px, transparent 50%),
               radial-gradient(at 100% 0%, rgba(139, 202, 230, 0.22) 0px, transparent 50%),
               radial-gradient(at 50% 100%, rgba(184, 230, 214, 0.22) 0px, transparent 50%);

    /* Shadows & Elevation */
    --shadow-sm: 0 4px 12px rgba(230, 168, 214, 0.15);
    --shadow-md: 0 8px 24px rgba(230, 168, 214, 0.22);
    --shadow-lg: 0 16px 36px rgba(230, 168, 214, 0.28);
    --shadow-glow: 0 0 24px rgba(230, 168, 214, 0.5);

    /* Typography */
    --font-primary: 'Fredoka One', cursive, system-ui;
    --font-secondary: 'Nunito', system-ui, -apple-system, sans-serif;

    /* Spacing & Radii */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.75rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4.5rem;
    --max-width: 1200px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 50px;
    
    --transition-fast: 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.65;
    color: var(--text-body);
    background-color: var(--bg-base);
    background-image: var(--bg-mesh);
    background-attachment: fixed;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 500;
    line-height: 1.25;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 0.85rem;
    color: var(--text-body);
    font-size: 1.025rem;
}

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

/* Inline SVG Icon Wrapper */
.craft-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    flex-shrink: 0;
}

.craft-icon svg {
    display: block;
    width: 1em;
    height: 1em;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--bg-white);
    color: var(--primary-dark);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: var(--shadow-sm);
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-color);
    color: #FFFFFF !important;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px var(--primary-glow);
    transition: var(--transition);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px var(--primary-glow);
}

.cta-button.secondary {
    background: var(--bg-white);
    color: var(--text-dark) !important;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 15px var(--secondary-glow);
    text-shadow: none;
}

.cta-button.secondary:hover {
    background: var(--secondary-color);
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px var(--secondary-glow);
}

.cta-button.whatnot-cta {
    background: var(--whatnot-color);
    color: var(--whatnot-text) !important;
    box-shadow: 0 6px 20px rgba(255, 230, 0, 0.4);
    text-shadow: none;
}

.cta-button.whatnot-cta:hover {
    background: #FFD900;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(255, 230, 0, 0.5);
}

/* ==========================================================
   Live Now Broadcast Banner
   ========================================================== */
.live-now-banner {
    display: none;
    position: sticky;
    top: 0;
    z-index: 1001;
    background: linear-gradient(90deg, #FE2C55 0%, #D47CBF 50%, #8BCAE6 100%);
    color: #FFFFFF;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 0.925rem;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(254, 44, 85, 0.35);
    animation: pulseBanner 3s infinite ease-in-out;
}

@keyframes pulseBanner {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

.live-pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #FFFFFF;
    animation: blinkDot 1.2s infinite ease-in-out;
}

@keyframes blinkDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.4; }
}

/* ==========================================================
   Navigation Bar
   ========================================================== */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1.5px solid rgba(230, 168, 214, 0.3);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.98);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.85rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo h2 {
    font-size: 1.55rem;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.6rem;
}

.nav-link {
    font-weight: 700;
    color: var(--text-body);
    font-size: 0.95rem;
    position: relative;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active-link {
    color: var(--primary-dark);
    background: var(--primary-light);
}

.nav-admin-btn {
    background: var(--bg-soft-gradient);
    color: var(--primary-dark) !important;
    border: 1.5px solid var(--border-color);
    padding: 6px 16px !important;
    border-radius: var(--radius-pill);
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}

.nav-admin-btn:hover {
    background: var(--primary-color);
    color: #FFFFFF !important;
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    background: var(--bg-white);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.nav-toggle .bar {
    width: 22px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition-fast);
}

.nav-toggle.active .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active .bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================
   Hero Section
   ========================================================== */
.hero {
    padding: var(--spacing-lg) 0 var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    margin-bottom: 0.85rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.hero-title span {
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    color: var(--text-body);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrap::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(230, 168, 214, 0.4) 0%, rgba(139, 202, 230, 0.3) 70%, transparent 100%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(36px);
}

.hero-img-card {
    position: relative;
    z-index: 2;
    background: var(--bg-white);
    padding: 12px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.hero-img {
    width: 100%;
    max-width: 440px;
    height: auto;
    border-radius: var(--radius-md);
    display: block;
    object-fit: cover;
}

/* Floating Glass Badges */
.floating-badge {
    position: absolute;
    z-index: 3;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid var(--border-color);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-dark);
    animation: floatBadge 4s ease-in-out infinite alternate;
}

.floating-badge.top-left {
    top: -10px;
    left: -15px;
    animation-delay: 0s;
}

.floating-badge.bottom-right {
    bottom: -15px;
    right: -10px;
    animation-delay: 2s;
}

.floating-badge.bottom-left {
    bottom: 25px;
    left: -20px;
    animation-delay: 1s;
}

@keyframes floatBadge {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-8px); }
}

/* ==========================================================
   Live Shows Section (#lives)
   ========================================================== */
.lives-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--spacing-lg);
}

.section-title {
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-body);
}

.announcement-bar {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
    border: 2px dashed var(--primary-color);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.5rem;
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

/* Platform Cards Grid */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.platform-card {
    background: var(--bg-surface-elevated);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}

.platform-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.platform-card.tiktok {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAF6FA 100%);
    border-color: rgba(0, 0, 0, 0.12);
}

.platform-card.tiktok:hover {
    border-color: #FE2C55;
    box-shadow: 0 12px 32px rgba(254, 44, 85, 0.2);
}

.platform-card.whatnot {
    background: linear-gradient(180deg, #FFFDF0 0%, #FAF6FA 100%);
    border-color: rgba(255, 230, 0, 0.6);
}

.platform-card.whatnot:hover {
    border-color: #FFE600;
    box-shadow: 0 12px 32px rgba(255, 230, 0, 0.35);
}

.platform-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.platform-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: bold;
    box-shadow: var(--shadow-sm);
}

.platform-card.tiktok .platform-icon-wrap {
    background: #000000;
    color: #FFFFFF;
}

.platform-card.whatnot .platform-icon-wrap {
    background: #FFE600;
    color: #1A1A1A;
}

.platform-tag {
    font-size: 0.8rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    background: var(--bg-white);
    border: 1px solid var(--border-subtle);
    color: var(--text-dark);
}

.platform-title {
    font-size: 1.7rem;
    margin-bottom: 0.25rem;
}

.platform-handle {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.85rem;
    font-family: var(--font-secondary);
}

.platform-desc {
    font-size: 0.98rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 0.98rem;
    transition: var(--transition);
}

.tiktok-btn {
    background: #000000;
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.tiktok-btn:hover {
    background: #FE2C55;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(254, 44, 85, 0.4);
}

.whatnot-btn {
    background: #FFE600;
    color: #1A1A1A !important;
    box-shadow: 0 4px 14px rgba(255, 230, 0, 0.4);
}

.whatnot-btn:hover {
    background: #FFD900;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 230, 0, 0.5);
}

/* ==========================================================
   Schedule & Calendar Container
   ========================================================== */
.schedule-container {
    background: var(--bg-surface-elevated);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.schedule-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
}

.schedule-header-wrap h3 {
    font-size: 1.45rem;
    margin-bottom: 0.2rem;
}

.schedule-header-wrap p {
    font-size: 0.925rem;
    color: var(--text-muted);
    margin: 0;
}

.view-switcher-group {
    display: inline-flex;
    background: var(--bg-white);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-pill);
    padding: 4px;
    box-shadow: var(--shadow-sm);
}

.view-switch-btn {
    background: transparent;
    border: none;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.view-switch-btn.active {
    background: var(--primary-color);
    color: #FFFFFF;
    box-shadow: var(--shadow-sm);
}

/* Agenda List Cards */
.agenda-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.agenda-card {
    background: var(--bg-white);
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.agenda-card:hover {
    border-color: var(--primary-color);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.agenda-card.today {
    border-color: #FE2C55;
    background: linear-gradient(90deg, rgba(254, 44, 85, 0.06) 0%, #FFFFFF 100%);
}

.date-badge-box {
    width: 68px;
    height: 74px;
    border-radius: var(--radius-sm);
    background: var(--bg-soft-gradient);
    border: 1.5px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.date-badge-month {
    font-size: 0.725rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.date-badge-day {
    font-family: var(--font-primary);
    font-size: 1.65rem;
    color: var(--text-dark);
    line-height: 1;
    margin: 2px 0;
}

.date-badge-weekday {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.agenda-details {
    flex-grow: 1;
}

.agenda-top-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 0.4rem;
}

.agenda-rel-tag {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.agenda-rel-tag.today { background: #FE2C55; color: #FFFFFF; }
.agenda-rel-tag.tomorrow { background: var(--secondary-color); color: #FFFFFF; }
.agenda-rel-tag.soon { background: var(--lilac-light); color: var(--lilac-dark); border: 1px solid var(--lilac-color); }
.agenda-rel-tag.past { background: #EEE; color: #888; }

.schedule-badge {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.schedule-badge.whatnot { background: #FFF4A3; color: #1F1D00; }
.schedule-badge.tiktok { background: #222; color: #FFF; }

.agenda-time {
    font-size: 0.85rem;
    color: var(--text-body);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.agenda-details h4 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.agenda-details p {
    font-size: 0.925rem;
    color: var(--text-light);
    margin: 0;
}

.agenda-action {
    flex-shrink: 0;
}

.agenda-cta-btn {
    padding: 9px 20px;
    font-size: 0.875rem;
    white-space: nowrap;
}

/* Calendar Grid */
.calendar-view-wrap {
    display: none;
}

.calendar-month-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 10px;
}

.calendar-month-nav h4 {
    font-size: 1.3rem;
    margin: 0;
}

.cal-nav-btn {
    background: var(--bg-white);
    border: 1.5px solid var(--border-color);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cal-nav-btn:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    background: var(--bg-white);
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border-subtle);
}

.cal-day-header {
    text-align: center;
    font-weight: 800;
    font-size: 0.775rem;
    color: var(--text-muted);
    text-transform: uppercase;
    padding: 6px 0;
}

.cal-day-cell {
    min-height: 80px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 6px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-fast);
}

.cal-day-cell.other-month {
    opacity: 0.35;
    background: transparent;
}

.cal-day-cell.today {
    border: 2px solid var(--primary-color);
    background: var(--primary-light);
}

.cal-day-cell.has-event {
    background: #FFFFFF;
    box-shadow: var(--shadow-sm);
}

.cal-day-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.cal-day-events {
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cal-event-pill {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.cal-event-pill.whatnot { background: #FFF4A3; color: #1F1D00; }
.cal-event-pill.tiktok { background: #222; color: #FFF; }

/* ==========================================================
   About Section (#about)
   ========================================================== */
.about-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-base);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.polaroid-frame {
    background: var(--bg-white);
    padding: 14px 14px 28px 14px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transform: rotate(-2deg);
    transition: var(--transition);
    max-width: 420px;
    width: 100%;
    position: relative;
}

.polaroid-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.washi-tape {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 28px;
    background: rgba(230, 168, 214, 0.75);
    border-left: 2px dashed rgba(255, 255, 255, 0.6);
    border-right: 2px dashed rgba(255, 255, 255, 0.6);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.about-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    display: block;
}

.polaroid-caption {
    font-family: var(--font-primary);
    text-align: center;
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-top: 14px;
    margin-bottom: 0;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-story {
    margin-bottom: 1.5rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.highlight-card {
    background: var(--bg-white);
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.highlight-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.highlight-card:nth-child(1) .highlight-icon { background: var(--primary-light); color: var(--primary-dark); }
.highlight-card:nth-child(2) .highlight-icon { background: var(--secondary-light); color: var(--secondary-dark); }
.highlight-card:nth-child(3) .highlight-icon { background: var(--accent-light); color: var(--accent-dark); }
.highlight-card:nth-child(4) .highlight-icon { background: var(--lilac-light); color: var(--lilac-dark); }

.highlight-text h4 {
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.highlight-text p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

/* ==========================================================
   Creations Showcase & Gallery (#gallery)
   ========================================================== */
.gallery-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.filter-btn {
    background: var(--bg-surface-elevated);
    border: 1.5px solid var(--border-subtle);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 0.925rem;
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    background: var(--primary-light);
    color: var(--primary-dark);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #FFFFFF;
    box-shadow: var(--shadow-sm);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: var(--spacing-md);
}

.gallery-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border-subtle);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.gallery-img-wrap {
    position: relative;
    height: 270px;
    overflow: hidden;
    background: var(--bg-base);
}

.gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-card:hover .gallery-img-wrap img {
    transform: scale(1.08);
}

.gallery-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.775rem;
    font-weight: 800;
    color: var(--text-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--border-color);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(230, 168, 214, 0.4) 0%, rgba(45, 38, 43, 0.65) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-overlay span {
    background: #FFFFFF;
    color: var(--text-dark);
    padding: 9px 20px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 0.875rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.gallery-cat {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.gallery-info h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.gallery-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.45;
}

/* ==========================================================
   Contact Section (#contact)
   ========================================================== */
.contact-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-base);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-lg);
}

.contact-info-card,
.contact-form {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border-color);
}

.contact-info-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.25rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-soft-gradient);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.social-links-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.social-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    background: var(--bg-surface-elevated);
    border: 1.5px solid var(--border-color);
    font-weight: 800;
    font-size: 0.925rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.social-pill-btn:hover {
    background: var(--primary-color);
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.social-pill-btn.tiktok:hover {
    background: #000000;
    color: #FFFFFF !important;
}

.social-pill-btn.whatnot:hover {
    background: #FFE600;
    color: #1A1A1A !important;
}

/* 1-Tap Inquiry Type Chips */
.inquiry-chips-label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.925rem;
    color: var(--text-dark);
}

.inquiry-chips-wrap {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.inquiry-chip {
    background: var(--bg-surface-elevated);
    border: 1.5px solid var(--border-subtle);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    user-select: none;
}

.inquiry-chip:hover {
    border-color: var(--primary-color);
    background: var(--primary-light);
    color: var(--primary-dark);
}

.inquiry-chip.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #FFFFFF;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
    font-size: 0.925rem;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #EDE8EE;
    border-radius: var(--radius-sm);
    font-family: var(--font-secondary);
    font-size: 0.98rem;
    background: var(--bg-surface-elevated);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    background: #FFFFFF;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ==========================================================
   Footer
   ========================================================== */
.footer {
    background: #241E24;
    color: #FFFFFF;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    color: #FFFFFF;
    margin-bottom: 4px;
    font-size: 1.45rem;
}

.footer-brand p {
    color: #AAA;
    margin: 0;
    font-size: 0.925rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #CCC;
    font-weight: 700;
    font-size: 0.925rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    color: #888;
    font-size: 0.875rem;
}

/* ==========================================================
   Gallery Lightbox Modal
   ========================================================== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(36, 30, 36, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1.25rem;
}

.modal-backdrop.active {
    display: flex;
}

.modal-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    max-width: 780px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    animation: modalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--primary-color);
    color: #FFFFFF;
}

.modal-body {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
}

.modal-body img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background: var(--bg-base);
}

.modal-details {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-details h3 {
    font-size: 1.65rem;
    margin-bottom: 0.35rem;
}

.modal-cta {
    margin-top: 1.5rem;
    width: 100%;
}

/* ==========================================================
   Toast Notifications
   ========================================================== */
.toast-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast-message {
    background: #241E24;
    color: #FFFFFF;
    padding: 14px 22px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    font-size: 0.925rem;
    animation: slideInToast 0.3s ease;
    border-left: 4px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-message.success { border-left-color: var(--accent-dark); }
.toast-message.error { border-left-color: #FE2C55; }

.toast-message.fade-out {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

@keyframes slideInToast {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================
   Responsive Breakpoints (Mobile First to Desktop)
   ========================================================== */
@media screen and (max-width: 992px) {
    .hero-wrapper,
    .about-grid,
    .contact-grid,
    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-body img {
        height: 280px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .agenda-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .agenda-action {
        width: 100%;
    }

    .agenda-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: 0;
        top: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        width: 100%;
        text-align: center;
        transition: top 0.35s ease;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        padding: 2rem 1.5rem;
        gap: 1.25rem;
        z-index: 999;
        border-bottom: 2px solid var(--border-color);
    }

    .nav-menu.active {
        top: 60px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding-top: var(--spacing-md);
        padding-bottom: var(--spacing-lg);
    }

    .hero-title {
        font-size: 2.35rem;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
    }

    .hero-buttons .cta-button {
        width: 100%;
    }

    .floating-badge {
        padding: 6px 12px;
        font-size: 0.775rem;
    }

    .floating-badge.top-left { top: -8px; left: 0; }
    .floating-badge.bottom-right { bottom: -10px; right: 0; }
    .floating-badge.bottom-left { display: none; }

    .schedule-header-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .view-switcher-group {
        width: 100%;
    }

    .view-switch-btn {
        flex: 1;
        justify-content: center;
    }

    .cal-day-cell {
        min-height: 55px;
        padding: 3px;
    }

    .cal-event-pill {
        font-size: 0.6rem;
        padding: 1px 3px;
    }

    .social-links-grid {
        flex-direction: column;
    }

    .social-pill-btn {
        width: 100%;
        justify-content: center;
    }

    .toast-container {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .toast-message {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .platform-card,
    .schedule-container,
    .contact-info-card,
    .contact-form {
        padding: 1.5rem 1.25rem;
    }

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

    .gallery-img-wrap {
        height: 240px;
    }
}
