* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

body {
  line-height: 1.6;
  color: #656565;
}

header {
  background: cadetblue;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  flex-wrap: wrap;
}

.contact-links a {
  margin-right: 15px;
  text-decoration: none;
  color: #ffffff;
  display: inline;
  align-items: center;
}

.contact-links a i {
  margin-right: 5px;
}

.contact-links a:hover {
  color: #cdf1f2;

}

.booking-buttons a {
  display: inline-block; 
  margin-left: 10px;
  padding: 10px 20px;
  background-color: #ffffff;
  color: cadetblue;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  border: 1px solid #497e80; /* Stroke */
    transition: transform 0.5s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.booking-buttons a:hover {
  background-color: #cdf1f2;
  text-shadow: 2px 3px 4px rgba(255,255,255,0.7);
  transform: scale(1.05); /* Slight zoom on hover */
  border: 1px solid #fff; /* Stroke */
}

.hero {
  background: url('img/Villa Xena.webp') top center/cover no-repeat;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 3px 3px 4px rgba(0,0,0,0.7);
  text-align: center;
}


.hero h1 {
  font-size: 3.5rem;
}

h2, h3 {
  font-size: 2rem;
  color: cadetblue;
}

.content {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  gap: 20px;
}

.content {
  max-width: 1280px;
  margin: 0 auto;       /* centers container horizontally */
  padding: 25px 20px;      /* optional horizontal padding on small screens */
  box-sizing: border-box;
}


.text-column {
  flex: 1 1 300px;
}

.gallery-column {
  flex: 1 1 300px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gallery-column img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.gallery-column a img {
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.gallery-column a:hover img {
  transform: scale(1.03);
}



/* Optional: add to your own styles if you want smoother visuals */
.sl-overlay {
  background-color: rgba(1, 23, 25, 0.9) !important;
}

.sl-wrapper .sl-image img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.sl-close {
  display: block !important;
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #cdf1f2 !important;
  z-index: 10000;
  cursor: pointer;
  text-shadow: 2px 2px 6px #062b2c;
}

.sl-image img {
  border-radius: 12px; /* or any value you like */
}

.sl-caption {
  display: none !important;
}

.contact-section {
  background: url('img/View to Anti-Paros.webp') center top / cover no-repeat;
  position: relative;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18, 28, 28, 0.6);
  z-index: 1;
}

.contact-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content h2 {
  color: #cdf1f2;
  font-size: 2rem;
  margin-bottom: 20px;
   text-shadow: 3px 3px 4px rgba(45, 90, 92, 0.67);
  text-align: center;
}

.contact-content p {
  font-size: 1.1rem;
  margin: 10px 0;
}

.contact-content i {
  margin-right: 8px;
  color: #cdf1f2;
}

.contact-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 20px;
}

.contact-content, .map-column {
  flex: 1 1 300px;
}

.map-column iframe {
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

footer {
  background-color: cadetblue;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 0.9rem;
}

footer a {
  color: #fff;
  text-decoration: none;
}
footer a:hover{
  color: lightgoldenrodyellow
}

 @media (max-width: 768px) {
      header {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .contact-links,
      .booking-buttons {
        justify-content: center;
        padding: 10px 0;
      }
      .hero h1 {
        font-size: 2rem;
      }
      .booking-buttons a {
        padding: 8px 16px;
        font-size: 0.9rem;
      }
    }