/* Hide standard theme header/footer to focus only on the Planner */
header, footer, .site-header, .site-footer, .sidebar {
    display: none !important;
}

/* Ensure the planner starts at the very top of the screen */
body {
    margin: 0 !important;
    padding: 0 !important;
    background-color: #000 !important;
}
:root {
    --gold: #b8860b;
    --luxury-orange: #FF8C00;
    --sky-blue: #87CEEB;
    --off-white: #fdfdfd;
}

.dp-main-container { max-width: 1200px; margin: 0 auto; background: var(--off-white); padding-bottom: 50px; }

.dp-hero-banner {
    background: url('https://images.unsplash.com/photo-1555215695-3004980ad54e?q=80&w=1200') no-repeat center center; 
    background-size: cover; height: 450px; border-radius: 15px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; margin-bottom: 40px;
}

.dp-hero-overlay {
    background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(4px); padding: 30px; border-radius: 10px; text-align: center; max-width: 80%;
}

.dp-hero-overlay h1 {
    color: #ffffff !important; text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); font-size: 2rem !important; font-weight: 900 !important; margin: 10px 0; line-height: 1.2;
}

.dp-motto { color: var(--sky-blue); font-weight: 800; letter-spacing: 4px; display: block; text-shadow: 1px 1px 5px rgba(0,0,0,0.5); text-transform: uppercase; }

.pin-updater-inline { margin-top: 15px; display: flex; justify-content: center; gap: 10px; }
#new-dp-pin { background: rgba(255,255,255,0.2); border: 1px solid var(--sky-blue); color: white; border-radius: 5px; width: 100px; text-align: center; }
#update-pin-btn { background: var(--sky-blue); border: none; padding: 5px 15px; border-radius: 5px; cursor: pointer; font-weight: bold; }

.dp-search-container { padding: 0 20px; margin-bottom: 30px; text-align: center; }
#dp-country-search { width: 100%; max-width: 400px; padding: 12px 20px; border-radius: 25px; border: 1px solid #ddd; outline: none; }

.dp-year-grid { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important; gap: 30px !important; margin-top: 40px; }
.dp-month-box { background: #fff; padding: 20px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.dp-month-name { color: var(--luxury-orange); font-weight: 800; border-bottom: 1px solid #eee; padding-bottom: 10px; margin-bottom: 15px; text-align: center;}

.dp-days-header, .dp-month-days { display: grid !important; grid-template-columns: repeat(7, 1fr) !important; }

.dp-day-cell { aspect-ratio: 1/1; display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; position: relative; font-weight: 600; font-size: 0.9rem; }
.dp-day-cell.has-plan::before { content: ""; position: absolute; width: 32px; height: 32px; background: var(--sky-blue); border-radius: 50%; z-index: 1; }

.holiday-dot { width: 5px; height: 5px; background: #ff4d4d; border-radius: 50%; margin-top: 2px; display: none; z-index: 3; }
.day-num { position: relative; z-index: 2; }
.has-plan .day-num { color: white; }

.dp-modal-bg { position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 9999; align-items: center; justify-content: center; display: none; }
.luxury-design { background: #fff; padding: 40px; border-radius: 20px; text-align: center; max-width: 400px; }
.dp-btn-gold { background: #000; color: #fff; padding: 15px 30px; border-radius: 8px; border: none; font-weight: bold; cursor: pointer; }
#dp-pin-input { font-size: 2rem; width: 150px; text-align: center; border: 2px solid #000; margin: 20px 0; display: block; margin-left: auto; margin-right: auto; }