/* ===========================
   Υπάρχον βασικό στυλ
=========================== */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f4f4f4;
  color: #333;
}

header {
  background-color: #2c3e50;
  color: white;
  padding: 15px;
  text-align: center;
}

header nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

main {
  padding: 20px;
}

/* Λίστα ακινήτων */
.property-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.property {
  background-color: white;
  border: 1px solid #ddd;
  width: 300px;
  text-align: center;
  padding: 10px;
  transition: transform 0.2s;
}

.property:hover {
  transform: scale(1.03);
}

.property img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Λεπτομέρειες ακινήτου */
.property-detail img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 10px auto;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* Footer */
footer {
  text-align: center;
  padding: 10px;
  background-color: #2c3e50;
  color: white;
  margin-top: 20px;
}

/* ===========================
   Νέα στυλ για contact.html
=========================== */

/* Container */
.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding-bottom: 40px;
}

/* Τίτλοι */
h2 {
    font-size: 2rem;
    margin-bottom: 25px;
}

/* Φόρμα Επικοινωνίας */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label { font-weight: bold; }

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: #d2691e; outline: none; }

.contact-form button.btn {
    padding: 12px;
    background-color: #d2691e;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button.btn:hover { background-color: #b35a15; }

/* Κουμπιά Call / WhatsApp / Viber */
.action-buttons {
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:25px;
    text-align:center;
}

.action-buttons a {
    padding:12px;
    border-radius:8px;
    font-weight:bold;
    display:block;
    text-decoration:none;
    color:white;
}

.call-btn { background:#28a745; }
.whatsapp-btn { background:#25D366; }
.viber-btn { background:#7360F2; }

.action-buttons a:hover { opacity:0.9; }

/* Responsive Google Maps */
iframe {
    border-radius: 10px;
    width: 100%;
    height: 300px;
}

/* Responsive Header */
.burger { display: none; font-size: 1.8rem; cursor: pointer; }

.navbar.active { display: block; }

/* ===========================
   Responsive για κινητά
=========================== */
@media (max-width: 768px) {
  .property-list { flex-direction: column; align-items: center; }
  .property { width: 90%; }
  .gallery { flex-direction: column; }
  .burger { display: block; }
  .navbar { display: none; flex-direction: column; margin-top: 10px; }
  .navbar a { margin: 10px 0; }
}

