/* =========================================
   Γενικές Ρυθμίσεις & Background
   ========================================= */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    background: #1a1a2e; 
    min-height: 100vh;
    transition: background 3s ease;
    overflow-x: hidden;
}

/* Χρώματα ανάλογα με την ώρα */
body.day { background: linear-gradient(-45deg, #1e3c72, #2a5298) !important; }
body.night { background: linear-gradient(-45deg, #0f2027, #203a43, #2c5364) !important; }
body.dawn { background: linear-gradient(-45deg, #2c3e50, #4ca1af) !important; }
body.sunset { background: linear-gradient(-45deg, #4b6cb7, #182848) !important; }

/* =========================================
   Νέο Μενού (Drawer System)
   ========================================= */
header {
    padding: 15px;
    position: absolute; /* Αλλαγή από sticky για να μην εμποδίζει το hover */
    top: 0;
    left: 0;
    z-index: 1000;
}

.menu-trigger {
    display: inline-block;
    padding: 5px;
    z-index: 1001;
}

.menu-btn {
    font-size: 18px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.menu-btn:hover {
    background: rgba(0, 229, 255, 0.3);
    border-color: #00e5ff;
}

.drawer {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 2000; /* Πολύ υψηλό για να είναι πάνω από όλα */
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    overflow-x: hidden;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 60px;
    border-right: 1px solid rgba(0, 229, 255, 0.3);
}

.drawer-content a {
    padding: 15px 30px;
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.drawer-content a i {
    color: #00e5ff;
}

.drawer-content a:hover {
    background: rgba(0, 229, 255, 0.1);
    padding-left: 45px;
}

.drawer .closebtn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 36px;
    color: white;
    text-decoration: none;
}

/* =========================================
   Κάρτες & Περιεχόμενο
   ========================================= */
.container {
    max-width: 1100px;
    margin: 60px auto; /* Αυξημένο margin λόγω του νέου μενού */
    padding: 0 20px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    text-align: center;
}

h1, h2, h3 {
    color: #00e5ff;
    margin-top: 0;
}

.weather-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    border: 2px solid rgba(255,255,255,0.1);
}

/* Πίνακες */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th {
    background: rgba(0, 229, 255, 0.2);
    padding: 12px;
}

td {
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}