/* Βασικές Ρυθμίσεις */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f1ea; /* Το μπεζ του δρόμου */
    color: #333;
}

/* Επικεφαλίδα */
#header {
    background-color: #1e3f20; /* Βαθύ πράσινο */
    color: #fff;
    padding: 25px;
    text-align: center;
}

/* Οριζόντιο Μενού */
#nav-menu {
    background-color: LawnGreen;
    width: 100%;
	
}
#nav-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 80%;
    margin: 0 auto;
}
#nav-menu li {
    float: left;
	margin:8px;
	
}
#nav-menu li a {
    display: block;
    color: #1e3f20;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    font-weight: bold;
	border-radius:12px;
}
#nav-menu li a:hover, #nav-menu li a.active {
    background-color: #8ca98F;
	color: #fff;
}

/* Κεντρικό Container */
#container {
    width: 80%;
    margin: 25px auto;
    background-color: #fff;
    padding: 20px;
    border: 1px solid #dcd6cd;
}

/* Δομή Κάρτας Φυτού */
.plant-card {
    background: #faf8f5;
    border: 1px solid #e6dfd5;
    padding: 15px;
    margin-bottom: 25px;
}

/* Αριστερό Inline Div: Προεπισκόπηση Εικόνων */
.plant-images {
    float: left;
    width: 40%;
    box-sizing: border-box;
    padding-right: 15px;
}
.thumb-wrapper {
    float: left;
    width: 45%;
    margin: 2.5%;
    border: 1px solid #ccc;
    background: #fff;
    padding: 5px;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform 0.2s;
}
.thumb-wrapper:hover {
    transform: scale(1.05);
    border-color: #2d5a27;
}
.thumb-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Δεξί Inline Div: Πληροφορίες */
.plant-info {
    float: right;
    width: 60%;
    box-sizing: border-box;
    padding-left: 15px;
}
.plant-title {
    color: #1e3f20;
    margin-top: 0;
    border-bottom: 2px solid #2d5a27;
    padding-bottom: 5px;
}
.info-list {
    list-style-type: none;
    padding: 0;
}
.info-list li {
    padding: 6px 0;
    border-bottom: 1px dashed #e6dfd5;
}

/* Βασικό Clear */
.clear {
    clear: both;
}

/* --- LIGHTBOX OVERLAY (Το εφέ που ζήτησες) --- */
#image-overlay {
    display: none; /* Κρυφό αρχικά */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Σκοτεινό φόντο/opacity */
    z-index: 1000;
}

#overlay-content {
    position: relative;
    width: 75%; /* 75% πλάτος */
    margin: 5% auto; /* Center ευθυγράμμιση */
    text-align: center;
}
#overlay-img {
    width:100%;
    max-height:80vh;
    border: 4px solid #fff;

}

/* Κουμπάκι Κλεισίματος (X) */
#close-btn {
    width:40px;
    height:40px;
    position: absolute;
    top: 12px;
    left:calc(50% - 20px);
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    border-radius:100%;
    background-color: green;
}
#close-btn:hover {
    color: blue;
}

/* Υποσέλιδο */
#footer {
    background-color: #1e3f20;
    color: #fff;
    text-align: center;
    padding: 12px;
    margin-top: 35px;
}
