@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@700&family=Inter:wght@300;400&family=Playfair+Display:ital,wght@1,700&display=swap');

:root { 
    --bg: #f4f1ea;       
    --text: #2d2926;     
    --line: #d1cbc1;     
    --accent: #912b24;   
    --gold: #c5a059;     
}

* { margin: 0; padding: 0; box-sizing: border-box; cursor: none; }

body { 
    font-family: 'Inter', sans-serif; background: var(--bg); 
    background-image: url("https://www.transparenttextures.com/patterns/natural-paper.png");
    color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased;
}

.cursor { 
    width: 12px; height: 12px; background: var(--gold); border-radius: 50%; 
    position: fixed; pointer-events: none; z-index: 9999; box-shadow: 0 0 15px rgba(197, 160, 89, 0.5);
}

.recipe-ui-bar {
    position: fixed; top: 0; left: 0; width: 100%; height: 75px;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 5vw; background: rgba(244, 241, 234, 0.9);
    backdrop-filter: blur(10px); border-bottom: 2px solid var(--accent); z-index: 1000;
}

.recipe-stage { padding: 130px 5vw 40px; }
.recipe-nav span { font-size: 0.65rem; font-weight: 700; cursor: pointer; color: var(--accent); margin-left: 20px; letter-spacing: 2px; text-transform: uppercase; }

.gateway { display: flex; height: 100vh; width: 100vw; position: fixed; z-index: 100; background: var(--bg); }
.choice { flex: 1; display: flex; align-items: center; justify-content: center; border-right: 1px solid var(--line); transition: 0.8s; cursor: pointer; }
.choice:hover { background: rgba(145, 43, 36, 0.03); }
.label h2 { font-family: 'Syncopate'; font-size: 2.2rem; color: var(--accent); }
.label p { font-size: 0.6rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); text-align: center; }

.meal-split { display: grid; grid-template-columns: 300px 1fr 300px; gap: 40px; }
.instructions-center { border-left: 1px solid var(--line); border-right: 1px solid var(--line); padding: 0 30px; }

.video-container { position: relative; width: 100%; padding-bottom: 56.25%; background: #000; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

.weather-item { padding: 15px 0; border-bottom: 1px solid var(--line); }
.weather-city { font-family: 'Syncopate'; font-size: 0.65rem; color: var(--gold); letter-spacing: 2px; display: flex; justify-content: space-between; align-items: center; }
.clock-display { color: var(--accent); font-weight: bold; font-family: 'Inter'; font-size: 0.8rem; }
.weather-temp { font-size: 1.8rem; font-weight: 300; margin: 5px 0; }
.weather-sub { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.7; }

.manifest-item { background: #ede9df; padding: 12px; margin-bottom: 10px; border-left: 3px solid var(--accent); display: flex; justify-content: space-between; font-size: 0.75rem; }
.manifest-input { width: 100%; padding: 12px; background: transparent; border: 1px solid var(--gold); font-family: 'Inter'; outline: none; margin-top: 15px; }

.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); background: var(--line); gap: 1px; border: 1px solid var(--line); }
.day-label { background: var(--bg); padding: 15px; font-family: 'Syncopate'; font-size: 0.6rem; color: var(--gold); text-align: center; }
.calendar-day { min-height: 140px; padding: 10px; background: var(--bg); position: relative; cursor: pointer; }
.day-num { font-family: 'Syncopate'; font-size: 0.7rem; opacity: 0.2; }
.note { font-size: 0.6rem; background: #ede9df; padding: 5px; margin-top: 5px; border-left: 2px solid var(--accent); line-height: 1.2; }

.fav-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 25px; }
.fav-card { aspect-ratio: 1/1.2; background: white; border: 1px solid var(--line); overflow: hidden; cursor: pointer; position: relative; transition: transform 0.3s; }
.fav-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.fav-card img { width: 100%; height: 80%; object-fit: cover; }
.fav-card-label { padding: 10px; font-size: 0.7rem; font-weight: 700; text-align: center; }

.delete-btn { position: absolute; top: 10px; right: 10px; width: 25px; height: 25px; background: var(--accent); color: white; border: none; display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; z-index: 10; font-size: 1.2rem; }
.fav-card:hover .delete-btn { opacity: 1; }

button { border: 2px solid var(--accent); padding: 10px 20px; font-family: 'Syncopate'; font-size: 0.6rem; background: none; color: var(--accent); cursor: pointer; letter-spacing: 2px; }
button:hover { background: var(--accent); color: white; }

@media (max-width: 1000px) { .meal-split { grid-template-columns: 1fr; } .instructions-center { border: none; padding: 0; } }