/* ********** Custom Rental Form ********** */

/* Flex container για όλα */
.ltx-search-rental .row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-end; /* όλα τα πεδία και το κουμπί στην ίδια γραμμή */
}

.ltx-search-rental {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 30px;
}

/* Fields container */
.ltx-search-rental .rental-field {
    margin-bottom: 15px; /* απόσταση μεταξύ των πεδίων */
	flex: 1 1 auto;
}

/* Labels */
.ltx-search-rental label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

/* Select dropdowns */
.ltx-search-rental select {
    width: 100%;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    background-color: #fff;
    appearance: none; /* αφαιρεί default arrow σε Chrome/Firefox */
}

/* Submit button */
.ltx-search-rental .rental-button input[type="submit"] {
	position: relative;      /* απαραίτητο για να δουλέψει top */
    top: -30px; 
    background-color: #1f2a3a;   /* κύριο background color */
    border: none;
    color: #fff;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 40px;       /* στρογγυλεμένο button */
    cursor: pointer;
    transition: background 0.3s ease; /* smooth hover effect */
}

/* Hover effect για button */
.ltx-search-rental .rental-button input[type="submit"]:hover {
    background-color: #6bbf59;   /* πιο σκούρο hover */
}

/* Responsive tweaks για μικρές οθόνες */
@media (max-width: 768px) {
    .ltx-search-rental {
        padding: 15px;
    }

    .ltx-search-rental .rental-field {
        margin-bottom: 15px;
        width: 100%;
    }

    .ltx-search-rental .rental-button input[type="submit"] {
        width: 100%;
        text-align: center;
    }
}

.destinations-section {
    padding: 40px 20px;
    text-align: center;
}

.destinations-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #555;
}

/* GRID */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* CARD */
.destination-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.destination-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* TEXT */
.destination-card h3 {
    margin: 15px 0 5px;
    font-size: 20px;
}

.destination-card p {
    padding: 0 15px 15px;
    font-size: 14px;
    color: #555;
}

/* MOBILE */
@media (max-width:768px) {
    .destination-card img {
        height: 150px;
    }

    .destinations-section h2 {
        font-size: 24px;
    }
}