/* ===== GENERAL ===== */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  color: white;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  
}

header {
  background-color: #0089b6;
  color: white;
  padding: 1em 0;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 12px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover, .active {
  text-decoration: underline;
}

h1, h2, h3 {
  color: white;
}

main, section {
  padding: 20px;
  max-width: 1000px;
  margin: auto;

}
.activities {
  list-style: none;
  padding: 0;
  margin: 0;
}

.activity-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 50px;
  padding: 25px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8); /* semi-transparent card */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(6px); /* soft frosted glass effect */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.activity-image {
  width: 350px;
  height: 350px;
  border-radius: 16px;
  margin-right: 30px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.activity-text {
  max-width: 600px;
}

.activity-title {
  font-size: 2rem;
  color: #0077b6; /* Santorini blue */
  margin-bottom: 12px;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
}

.activity-text p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

/* --- Responsive design --- */
@media (max-width: 768px) {
  .activity-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .activity-image {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .activity-title {
    font-size: 1.8rem;
    color: #d4a017; /* warm golden tone on mobile */
  }

  .activity-text p {
    font-size: 1rem;
  }
}
/* 🌅 Section Title */
.section-title {
  text-align: center;
  font-size: 2.8rem;
  color: #0077b6; /* Santorini blue */
  margin-bottom: 60px;
  font-weight: 800;
  letter-spacing: 1px;
  position: relative;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

/* Add a soft underline accent */
.section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #0077b6, #00b4d8);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Responsive title scaling */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
    color: #d4a017; /* golden on mobile for warmth */
  }
  .section-title::after {
    width: 80px;
    background: linear-gradient(90deg, #d4a017, #ffcc33);
  }
}






/* ===== HERO SECTION ===== */
.hero {
  height: 400px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-text {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 10px;
}
/* Different Backgrounds for Each Page */
.home-bg {
  background-image: url('images/home-bg.jpg');
}
.about-bg {
  background-image: url('images/about-bg.jpg');
  
}

.destinations-bg {
  background-image: url('images/destinations-bg.jpg');
}
.experiences-bg {
  background: linear-gradient(180deg, #e6f7ff 0%, #ffffff 100%);
  padding: 60px 20px;
  border-radius: 20px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
}
.plan-bg {
  background-color: #a2bac2;
}
.contact-bg {
  background-color: #a2bac2;
}

/* ===== GALLERY ===== */
.gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.gallery-container img {
  width: 32%;
  border-radius: 10px;
}

/* ===== GRID CARDS ===== */
.grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  width: 300px;
  padding: 10px;
  text-align: center;
}
.card img {
  width: 100%;
  border-radius: 10px;
}

/* ===== FORM ===== */
form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 20px auto;
}
label {
  margin-top: 10px;
  font-weight: bold;
}
input, textarea, button {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
button {
  background-color: #0077b6;
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 15px;
}
button:hover {
  background-color: #005f86;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  background-color: #00334d;
  color: white;
  padding: 15px;
  margin-top: 40px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .gallery-container img, .card {
    width: 100%;
  }
}
/* === GLOBAL STYLE MATCH === */
body.home-bg {
  background: linear-gradient(180deg, #e6f7ff 0%, #ffffff 100%);
  font-family: 'Poppins', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

/* === HEADER === */
.main-header {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px 0;
  text-align: center;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.main-header h1 {
  color: #0077b6;
  margin: 0;
  font-size: 2.5rem;
}

nav a {
  text-decoration: none;
  color: #0077b6;
  margin: 0 15px;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover, nav a.active {
  color: #d4a017;
}

/* === HERO SECTION === */
.hero {
  position: relative;
  background: url('images/oia-sunset.jpg') center/cover no-repeat;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.hero-text h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero-button {
  display: inline-block;
  padding: 12px 25px;
  background: #0077b6;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-button:hover {
  background: #00b4d8;
  transform: translateY(-3px);
}

/* === SECTION TITLES === */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #0077b6;
  margin-bottom: 40px;
  font-weight: 800;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #0077b6, #00b4d8);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* === INTRO SECTION === */
.intro {
  background: rgba(255, 255, 255, 0.85);
  padding: 60px 30px;
  margin: 40px auto;
  border-radius: 20px;
  max-width: 900px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
}

/* === GALLERY SECTION === */
.gallery-section {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 60px 30px;
  margin: 60px auto;
  max-width: 1200px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px);
}

.gallery-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.gallery-card {
  width: 300px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery-card img {
  width: 100%;
  height: 200px;
  border-radius: 15px 15px 0 0;
  object-fit: cover;
}

.gallery-card p {
  padding: 10px 0;
  font-weight: 600;
  color: #0077b6;
}

/* === FOOTER === */
footer {
  text-align: center;
  padding: 20px;
  color: #0077b6;
  background: rgba(255, 255, 255, 0.85);
  border-top: 2px solid #0077b6;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-text h2 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
    color: #d4a017;
  }

  .section-title::after {
    background: linear-gradient(90deg, #d4a017, #ffcc33);
  }

  .intro, .gallery-section {
    padding: 40px 20px;
  }
}
/* === ABOUT PAGE BACKGROUND === */
body.about-bg {
  background: linear-gradient(180deg, #e6f7ff 0%, #ffffff 100%);
  font-family: 'Poppins', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

/* === ABOUT SECTION === */
.about-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section title (matches other pages) */
.section-title {
  text-align: center;
  font-size: 2.8rem;
  color: #0077b6; /* Santorini blue */
  margin-bottom: 50px;
  font-weight: 800;
  letter-spacing: 1px;
  position: relative;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

.section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #0077b6, #00b4d8);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* About content layout */
.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  padding: 40px;
  gap: 30px;
  backdrop-filter: blur(6px);
}

/* Image styling */
.about-image {
  width: 50%;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

/* Text styling */
.about-text {
  width: 55%;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.about-text strong {
  color: #0077b6;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .about-image {
    width: 100%;
    margin-bottom: 20px;
  }

  .about-text {
    width: 100%;
  }

  .section-title {
    font-size: 2.2rem;
    color: #d4a017; /* gold tone for mobile */
  }

  .section-title::after {
    background: linear-gradient(90deg, #d4a017, #ffcc33);
  }
}
/* === PLAN PAGE BACKGROUND === */
body.plan-bg {
  background: linear-gradient(180deg, #e6f7ff 0%, #ffffff 100%);
  font-family: 'Poppins', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

/* === PLAN SECTION === */
.plan-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section title */
.section-title {
  text-align: center;
  font-size: 2.8rem;
  color: #0077b6; /* Santorini blue */
  margin-bottom: 50px;
  font-weight: 800;
  letter-spacing: 1px;
  position: relative;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

.section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #0077b6, #00b4d8);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Plan content layout */
.plan-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  background: rgba(255, 255, 255, 0.85);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(6px);
}

/* Text section */
.plan-text {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.plan-text strong {
  color: #0077b6;
}

/* Image section */
.plan-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.plan-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .plan-content {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .plan-image img {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 2.2rem;
    color: #d4a017; /* gold tone on mobile */
  }

  .section-title::after {
    background: linear-gradient(90deg, #d4a017, #ffcc33);
  }
}
/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body.contact-bg {
  background: linear-gradient(to bottom, #aee1f9, #ffffff);
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
}

/* Header */
header {
  background-color: #ffffffcc; /* semi-transparent white */
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

header h1 {
  font-family: 'Georgia', serif;
  color: #1a3c6e; /* deep blue for Santorini theme */
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #1a3c6e;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #f08c4f; /* warm accent */
}

nav a.active {
  color: #f08c4f;
}

/* Main content */
main {
  max-width: 700px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}

main h2 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #1a3c6e;
}

main p {
  margin-bottom: 30px;
  font-size: 1.1em;
  color: #555;
}

/* Form styling */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

form label {
  font-weight: bold;
  margin-bottom: 5px;
  color: #1a3c6e;
}

form input, form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
  width: 100%;
  transition: border-color 0.3s;
}

form input:focus, form textarea:focus {
  border-color: #f08c4f;
  outline: none;
}

form button {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: #1a3c6e;
  color: #fff;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s;
}

form button:hover {
  background-color: #f08c4f;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #ffffffcc;
  color: #1a3c6e;
  position: relative;
  bottom: 0;
  width: 100%;
  margin-top: 50px;
}
/* === DESTINATIONS PAGE BACKGROUND === */
body.destinations-bg {
  background: linear-gradient(180deg, #e6f7ff 0%, #ffffff 100%);
  font-family: 'Poppins', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

/* === DESTINATIONS SECTION === */
.destinations-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section title (matches About, Home, Experiences) */
.section-title {
  text-align: center;
  font-size: 2.8rem;
  color: #0077b6;
  margin-bottom: 60px;
  font-weight: 800;
  letter-spacing: 1px;
  position: relative;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

.section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #0077b6, #00b4d8);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* === DESTINATION GRID === */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  justify-items: center;
}

/* === DESTINATION CARD === */
.destination-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(6px);
  width: 100%;
  max-width: 360px;
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

/* Text */
.destination-info {
  padding: 20px 25px 30px;
}

.destination-info h3 {
  font-size: 1.8rem;
  color: #0077b6;
  margin-bottom: 12px;
}

.destination-info p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
    color: #d4a017; /* gold tone on mobile */
  }

  .section-title::after {
    background: linear-gradient(90deg, #d4a017, #ffcc33);
  }

  .destination-info h3 {
    color: #d4a017;
  }

  .destination-card {
    max-width: 100%;
  }
}
/* Header Controls */
.header-controls {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  justify-content: center;
  align-items: center;
}

/* Search bar styling */
.search-bar {
  padding: 10px 15px;
  border-radius: 30px;
  border: 1px solid #ccc;
  font-size: 1em;
  transition: all 0.3s ease;
  width: 250px;
}

.search-bar:focus {
  border-color: #0077b6;
  outline: none;
  box-shadow: 0 0 10px rgba(0, 119, 182, 0.3);
}

/* Language selector styling */
.language-select {
  padding: 10px 12px;
  border-radius: 30px;
  border: 1px solid #ccc;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-select:focus {
  border-color: #0077b6;
  outline: none;
  box-shadow: 0 0 10px rgba(0, 119, 182, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .header-controls {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  
  .search-bar {
    width: 100%;
    max-width: 300px;
  }
}
/* Container to keep image + map side by side on large screens */
.plan-media {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

/* Plan image */
.plan-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  object-fit: cover;
}

/* Map styling */
.plan-map {
  flex: 1;
  min-width: 300px;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.plan-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive: stack image + map on small screens */
@media (max-width: 768px) {
  .plan-media {
    flex-direction: column;
    align-items: center;
  }

  .plan-image img {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .plan-map {
    width: 100%;
    height: 300px;
  }
}

