/* ==========================================================================
   Falling Waters Resort - Father's Day Camping Planner CSS Design System
   ========================================================================== */

/* Custom Variables */
:root {
    --bg-dark: #06090c;
    --bg-charcoal: #0c1115;
    --primary-orange: #ff7b00;
    --primary-orange-hover: #ff912a;
    --pine-green: #768d70;             /* Sage Green from Resort website */
    --pine-green-light: #93ab8c;       /* Light Sage */
    --brand-blue: #074983;             /* Brand Blue from Resort website */
    --brand-blue-light: #1865a7;
    --accent-gold: #ffc857;
    --text-white: #f4f7f5;
    --text-muted: #8d989c;
    --card-bg: rgba(12, 19, 25, 0.76); /* Bluish charcoal card bg */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(7, 73, 131, 0.25);
    --transition-speed: 0.3s;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Reset and Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(7, 73, 131, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 123, 0, 0.08) 0%, transparent 45%),
        linear-gradient(rgba(6, 9, 12, 0.88), rgba(6, 9, 12, 0.96)),
        url('assets/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.w-full {
    width: 100%;
}

.hidden {
    display: none !important;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 0.9; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); filter: drop-shadow(0 0 8px var(--primary-orange)); }
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    30% { opacity: 0.85; }
    50% { opacity: 0.95; }
    70% { opacity: 0.8; }
    90% { opacity: 0.9; }
}

.animate-pulse {
    animation: pulse 3s infinite ease-in-out;
}

/* Header & Navigation */
.app-header {
    background: rgba(242, 247, 244, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sync-status-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(0, 0, 0, 0.04);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    margin-left: 0.25rem;
    transition: all var(--transition-speed) ease;
}

.sync-status-badge.syncing {
    background: rgba(255, 200, 87, 0.12);
    color: #cca23d;
    border-color: rgba(255, 200, 87, 0.25);
}

.sync-status-badge.synced {
    background: rgba(61, 122, 82, 0.12);
    color: #3d8c55;
    border-color: rgba(61, 122, 82, 0.25);
}

.sync-status-badge.error {
    background: rgba(220, 53, 69, 0.12);
    color: #d93848;
    border-color: rgba(220, 53, 69, 0.25);
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--pine-green) 40%, var(--brand-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fire-icon {
    color: var(--primary-orange);
    animation: flicker 1.5s infinite alternate;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-speed);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
}

.nav-link:hover, .nav-link.active {
    color: var(--pine-green);
    background: rgba(0, 0, 0, 0.04);
}

.nav-link.active {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Main Content & Section Panes */
.main-content {
    padding: 3rem 0;
}

.section-pane {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.section-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Cards & Glassmorphism */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.75rem;
    transition: transform var(--transition-speed), border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.glass-card {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 123, 0, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-speed);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff5500 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 123, 0, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-orange-hover) 0%, var(--primary-orange) 100%);
    box-shadow: 0 6px 20px rgba(255, 123, 0, 0.35);
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-danger {
    background: rgba(220, 53, 69, 0.15);
    color: #ff6b7a;
    border: 1px solid rgba(220, 53, 69, 0.25);
}

.btn-danger:hover {
    background: rgba(220, 53, 69, 0.3);
    border-color: rgba(220, 53, 69, 0.5);
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 123, 0, 0.12);
    color: var(--primary-orange);
    border: 1px solid rgba(255, 123, 0, 0.2);
    font-family: var(--font-heading);
}

.badge-primary {
    background: rgba(61, 122, 82, 0.12);
    color: #6edb91;
    border-color: rgba(61, 122, 82, 0.2);
}

.badge-success {
    background: rgba(255, 200, 87, 0.12);
    color: var(--accent-gold);
    border-color: rgba(255, 200, 87, 0.2);
}

.badge-accent {
    background: rgba(0, 180, 216, 0.12);
    color: #48cae4;
    border-color: rgba(0, 180, 216, 0.25);
}

/* Grids & Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.grid-sidebar-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Hero Card */
.hero-card {
    position: relative;
    border-radius: 20px;
    padding: 4rem 3rem;
    margin-bottom: 2.5rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(230, 242, 235, 0.92) 0%, rgba(242, 247, 244, 0.96) 100%);
    border: 1px solid var(--border-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/hero_light.png');
    background-size: cover;
    background-position: center 30%;
    opacity: 0.45;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0.75rem 0;
    background: linear-gradient(to right, var(--pine-green) 0%, var(--brand-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Countdown */
.countdown-container {
    display: flex;
    gap: 1.25rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.countdown-item span {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1.1;
}

.countdown-item label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Roster Summary Tallies */
.tally-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 12px;
}

.pine-bg {
    background: rgba(50, 153, 80, 0.12);
    color: #1f5e31;
    border: 1px solid rgba(50, 153, 80, 0.25);
}

.raft-bg {
    background: rgba(0, 180, 216, 0.12);
    color: #0077b6;
    border: 1px solid rgba(0, 180, 216, 0.25);
}

.tally-info h3 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.tally-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
}

.tally-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Weather Widget */
.weather-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.weather-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.weather-header h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.weather-loc {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
}

.weather-icon-container {
    color: var(--accent-gold);
    filter: drop-shadow(0 0 5px rgba(255, 200, 87, 0.4));
}

.weather-icon {
    animation: pulse 4s infinite alternate;
}

.weather-temp {
    margin: 0.5rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.weather-temp .temp {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-white);
}

.weather-temp .desc {
    font-size: 0.9rem;
    color: #5bb37b;
    font-weight: 600;
}

.weather-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 0.5rem;
}

/* Dad Joke Card */
.joke-card {
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--primary-orange);
}

.joke-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.joke-header h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent-gold);
}

#joke-text {
    font-style: italic;
    color: var(--text-white);
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Forms & Inputs */
.form-container {
    position: sticky;
    top: 90px;
}

.form-container h3 {
    font-family: var(--font-heading);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

input[type="text"],
input[type="number"],
select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: #0c1115;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
}

input::placeholder {
    color: #8d989c;
}

input[type="text"]:focus,
input[type="number"]:focus,
select:focus {
    outline: none;
    border-color: var(--pine-green-light);
    box-shadow: 0 0 0 3px rgba(50, 153, 80, 0.15);
    background: #ffffff;
}

.input-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* Roster list & cards */
.roster-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.roster-header h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
    background: var(--card-bg);
    border: 1px dashed var(--border-color);
    border-radius: 16px;
}

.empty-state svg {
    margin-bottom: 1rem;
    opacity: 0.4;
}

.roster-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.family-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all var(--transition-speed);
}

.family-card:hover {
    border-color: rgba(255, 123, 0, 0.2);
    transform: translateX(4px);
}

.family-info-block h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.family-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.raft-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(0, 180, 216, 0.08);
    border: 1px solid rgba(0, 180, 216, 0.2);
    color: #48cae4;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
}

.yurt-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(118, 141, 112, 0.08);
    border: 1px solid rgba(118, 141, 112, 0.2);
    color: #5b7355;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
}

.family-actions {
    display: flex;
    gap: 0.5rem;
}

/* Timeline/Itinerary */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 95px;
    width: 2px;
    height: 100%;
    background: var(--border-color);
}

.timeline-day {
    margin-bottom: 3rem;
}

.day-badge {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--pine-green);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 99px;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--pine-green-light);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    margin-left: 10px;
}

.highlight-day .day-badge {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff5500 100%);
    border-color: #ff912a;
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 85px 1fr;
    align-items: start;
    position: relative;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 96px;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--bg-dark);
    border: 2px solid var(--text-muted);
    border-radius: 50%;
    z-index: 2;
    transform: translateX(-50%);
}

.timeline-item.highlight-item::after {
    border-color: var(--primary-orange);
    background: var(--primary-orange);
    box-shadow: 0 0 8px var(--primary-orange);
}

.timeline-item .time {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: right;
    padding-right: 0.5rem;
    margin-top: 2px;
}

.timeline-item .content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    margin-left: 1.25rem;
    backdrop-filter: blur(8px);
}

.timeline-item.highlight-item .content {
    border-color: rgba(255, 123, 0, 0.3);
    background: rgba(255, 123, 0, 0.03);
    box-shadow: inset 0 0 10px rgba(255, 123, 0, 0.05);
}

.timeline-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.timeline-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Packing List Section */
.packing-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: start;
}

.packing-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.packing-category-column {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
}

.packing-category-column h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--accent-gold);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Checklist Custom Styles */
.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    user-select: none;
    transition: color var(--transition-speed);
}

.checklist-item:hover {
    color: var(--primary-orange);
}

.checklist-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--border-color);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    display: grid;
    place-content: center;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.checklist-item input[type="checkbox"]::before {
    content: "";
    width: 10px;
    height: 10px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    background-color: var(--primary-orange);
    border-radius: 2px;
}

.checklist-item input[type="checkbox"]:checked {
    border-color: var(--primary-orange);
    box-shadow: 0 0 5px rgba(255, 123, 0, 0.3);
}

.checklist-item input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.checklist-item.checked {
    color: var(--text-muted);
    text-decoration: line-through;
}

/* Progress bar */
.progress-container {
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
}

.progress-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.progress-bar-bg {
    background: rgba(0, 0, 0, 0.3);
    height: 10px;
    border-radius: 99px;
    overflow: hidden;
}

.progress-bar-fill {
    background: linear-gradient(to right, var(--pine-green-light), #5bb37b);
    height: 100%;
    border-radius: 99px;
    transition: width 0.4s ease-out;
}

.add-item-card {
    position: sticky;
    top: 90px;
}

.add-item-card h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Recipes */
.recipe-card {
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.recipe-img-placeholder {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.recipe-img-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17, 26, 21, 0.95), rgba(17, 26, 21, 0.2));
}

.recipe-img-placeholder span {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.steak-bg {
    background-image: 
        linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.4)),
        radial-gradient(circle, rgba(255, 123, 0, 0.1) 0%, rgba(0,0,0,0.7) 100%);
}

.breakfast-bg {
    background-image: 
        linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.4)),
        radial-gradient(circle, rgba(255, 200, 87, 0.1) 0%, rgba(0,0,0,0.7) 100%);
}

.dessert-bg {
    background-image: 
        linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.4)),
        radial-gradient(circle, rgba(37, 77, 50, 0.15) 0%, rgba(0,0,0,0.7) 100%);
}

.recipe-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.recipe-content h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.recipe-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.recipe-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 1rem;
}

.recipe-content h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.recipe-content ul {
    list-style-type: none;
    font-size: 0.85rem;
}

.recipe-content li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.recipe-content li::before {
    content: '🔥';
    position: absolute;
    left: 0;
    font-size: 0.7rem;
    top: 2px;
}

/* Footer */
.app-footer-bottom {
    border-top: 1px solid var(--border-color);
    background: rgba(9, 14, 12, 0.95);
    padding: 2rem 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 4rem;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .grid-sidebar-layout {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        position: static;
    }
    
    .packing-layout {
        grid-template-columns: 1fr;
    }
    
    .add-item-card {
        position: static;
    }
    
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .timeline::before {
        left: 75px;
    }
    
    .timeline-item {
        grid-template-columns: 65px 1fr;
    }
    
    .timeline-item::after {
        left: 76px;
    }
    
    .timeline-item .time {
        padding-right: 0.5rem;
        font-size: 0.75rem;
    }

    .timeline-item .content {
        margin-left: 1.25rem;
    }
    
    .day-badge {
        margin-left: -10px;
    }
}

/* Mobile-Specific Layout Tweaks (under 600px) */
@media (max-width: 600px) {
    .container {
        width: 92%;
    }
    
    .logo {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .sync-status-badge {
        margin-left: 0;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem;
        width: 100%;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.35rem 0.5rem;
    }

    .hero-card {
        padding: 2rem 1rem;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-subtext {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .countdown-container {
        justify-content: center;
        gap: 0.4rem;
    }

    .countdown-item {
        min-width: 60px;
        padding: 0.4rem 0.25rem;
    }

    .countdown-item span {
        font-size: 1.35rem;
    }

    .countdown-item label {
        font-size: 0.55rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .family-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .family-stats {
        flex-wrap: wrap;
        gap: 0.4rem;
    }

    .family-actions {
        width: 100%;
        justify-content: flex-end;
        border-top: 1px solid var(--border-color);
        padding-top: 0.75rem;
    }

    .timeline-item .content {
        padding: 1rem;
        margin-left: 1.25rem;
    }
}
