/* ==============================
   RESET & BASE
============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Playfair Display', serif;
  color: #333;
  background-color: #ffffff;
  line-height: 1.8;
  font-size: 19px;
}

img {
  max-width: 100%;
  display: block;
}

/* ==============================
   LAYOUT
============================== */
.container {
  max-width: 960px;
  margin: 90px auto;
  padding: 0 20px;
}

/* ==============================
   HEADER
============================== */
.site-header {
  text-align: center;
  margin-top: 70px;
}

.site-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 5px;
  font-size: 36px;
}

/* Welcome */
.welcome {
  margin: 22px 0 40px;
  font-style: italic;
  color: #c9a24d;
  font-size: 15px;
}

.welcome .line {
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: #c9a24d;
  vertical-align: middle;
  margin: 0 12px;
}

/* ==============================
   NAVIGATION
============================== */
.main-nav {
  margin-top: 25px;
}

.main-nav a {
  margin: 0 16px;
  text-decoration: none;
  color: #666;
  font-size: 14px;
  letter-spacing: 2px;
  font-family: 'Montserrat', sans-serif;
}

.main-nav a:hover,
.main-nav a.active {
  color: #c9a24d;
}

/* ==============================
   HERO
============================== */
.hero {
  margin: 90px auto;
  max-width: 880px;
}

.hero img {
  width: 100%;
}

/* ==============================
   ABOUT
============================== */
.about {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 70px;
}

/* ==============================
   HOME GALLERY
============================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.gallery img {
  height: 380px;
  object-fit: cover;
}

/* ==============================
   ROOMS PAGE
============================== */
.room {
  margin-bottom: 90px;
}

.room-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.room.reverse .room-main {
  grid-template-columns: 1fr 1.2fr;
}

.room.reverse .room-main img {
  order: 2;
}

.room-text h3 {
  color: #c9a24d;
  margin-bottom: 20px;
  font-size: 26px;
}

.room-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 45px;
}

/* DEFAULT: ROOM 1 & 3 */
.room-gallery img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ROOM 2 – βασικές φωτογραφίες οριζόντιες */
.room.reverse .room-gallery img {
  height: 230px;
}

/* 🔥 ROOM 2 – 2 φωτογραφίες στο κέντρο (Η ΜΟΝΗ ΑΛΛΑΓΗ) */
.room.reverse .room-gallery {
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  max-width: 760px;
  margin: 45px auto 0;
}

/* Divider */
hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 90px 0;
}

/* ==============================
   FOOTER
============================== */
.site-footer {
  text-align: center;
  font-size: 14px;
  color: #aaa;
  margin-bottom: 50px;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 900px) {

  .about,
  .room-main {
    grid-template-columns: 1fr;
  }

  .gallery,
  .room-gallery {
    grid-template-columns: 1fr;
  }

  .room-gallery img,
  .room.reverse .room-gallery img {
    height: 260px;
  }

  .hero {
    margin: 60px 20px;
  }
}

/* ==============================
   PRICES
============================== */
.prices {
  max-width: 720px;
  margin: 120px auto;
}

.prices h2 {
  text-align: center;
  font-size: 34px;
  letter-spacing: 3px;
  margin-bottom: 80px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid #ddd;
  font-size: 18px;
}

.price-row span:last-child {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
}

/* ==============================
   BOOKING PAGE
============================== */
.booking-page {
  max-width: 720px;
  margin: 120px auto;
}

.booking-page h2 {
  text-align: center;
  font-size: 34px;
  letter-spacing: 3px;
}

.booking-subtitle {
  text-align: center;
  color: #c9a24d;
  font-style: italic;
  margin: 15px 0 60px;
}

.booking-text p {
  margin-bottom: 22px;
  font-size: 17px;
  line-height: 1.8;
}

.booking-phone {
  margin-top: 35px;
  font-size: 18px;
}

/* Booking center */
.booking {
    text-align: center;
}

.booking-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ==============================
   ROOM 3 – ΜΟΝΗ ΦΩΤΟ ΣΤΟ ΚΕΝΤΡΟ
============================== */

.room3-center {
  grid-template-columns: 1fr;
  justify-items: center;
}

.room3-center img {
  max-width: 420px;
}
/* ==============================
   CONTACT PAGE
============================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.contact-info h2 {
  font-size: 32px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.contact-subtitle {
  color: #c9a24d;
  font-style: italic;
  margin-bottom: 30px;
}

.contact-label {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  margin-top: 20px;
  color: #999;
}
/* ==============================
   ΧΡΩΜΑ ΚΙΤΡΙΝΟ ΓΙΑ ΤΙΤΛΟΥΣ
============================== */

/* Απολαύστε τη διαμονή σας */
.about-left h4 {
  color: #c9a24d;
}

/* Τα αιτήματα ελέγχονται καθημερινά */
.booking p {
  color: #c9a24d;
  font-style: italic;
}
/* ==============================
   BOOKING – ΜΕΓΕΘΗ & ΚΟΥΜΠΙ
============================== */

/* ΚΑΝΤΕ ΚΡΑΤΗΣΗ */
.booking h2 {
  font-size: 42px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

/* Τα αιτήματα ελέγχονται καθημερινά */
.booking p {
  font-size: 20px;
  margin-bottom: 35px;
  color: #c9a24d;
  font-style: italic;
}

/* ΚΟΥΜΠΙ ΚΛΕΙΣΤΕ ΕΔΩ */
.booking-link {
  display: inline-block;
  padding: 16px 42px;
  border: 2px solid #c9a24d;
  color: #c9a24d;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  font-size: 15px;
  transition: all 0.3s ease;
}

/* Hover εφέ */
.booking-link:hover {
  background-color: #c9a24d;
  color: #fff;
}
/* ==============================
   PREMIUM MOBILE ONLY
============================== */
@media (max-width: 768px) {

  body {
    font-size: 18px;
    line-height: 1.9;
  }

  .container {
    margin: 60px auto;
    padding: 0 18px;
  }

  .room-gallery {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .room-gallery img {
    height: 320px;
  }

}


