/* style.css */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
}

.letter-spacing-2 {
    letter-spacing: 3px;
}

.navbar-brand {
    font-weight: 300;
}

.nav-link {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0 10px;
}

/* Hero & Images Styles */
.hero-wrapper {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: #eee;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.img-placeholder {
    width: 100%;
    height: 250px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #ccc;
    color: #888;
    object-fit: cover;
/* style.css - Footer Updates */

footer {
    font-size: 1.1rem; /* Μεγαλώνει το βασικό μέγεθος των γραμμάτων */
}

footer h3 {
    font-size: 1.8rem !important; /* Μεγαλώνει τον τίτλο "Leisure Nest" */
    font-weight: 400 !important;
}

footer p {
    font-size: 1.1rem; /* Μεγαλώνει τις διευθύνσεις και τα τηλέφωνα */
    line-height: 1.8;   /* Δίνει αέρα ανάμεσα στις γραμμές */
}

footer a {
    font-size: 1.1rem; /* Μεγαλώνει το email */
}

footer .small {
    font-size: 0.9rem !important; /* Μεγαλώνει το "2024 - iClick" */
    opacity: 0.7;
}

/* Τα ταμπελάκια Email, Phone, License Number */
footer .small.text-uppercase {
    font-size: 0.85rem !important; 
    font-weight: bold;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hero-wrapper { height: 40vh; }
    .display-4 { font-size: 2.2rem; }
}

.btn-dark {
    background-color: #000 !important;
    border: none;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: 0.3s;
}

.btn-dark:hover {
    background-color: #333 !important;
    opacity: 0.9;
}