/* --- Variables --- */
:root {
    --color-turq: #40E0D0;      /* Aegean Turquoise */
    --color-turq-dark: #20B2AA;
    --color-yellow: #FFD700;    /* Sun Yellow */
    --color-white: #ffffff;
    --color-blue-light: #F0F8FF; /* Alice Blue */
    --color-text: #444;
    
    --font-heading: 'Pacifico', cursive;
    --font-body: 'Nunito', sans-serif;
    
    --radius: 15px; /* Soft, rounded look */
    --shadow: 0 10px 25px rgba(64, 224, 208, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--color-blue-light);
    color: var(--color-text);
    line-height: 1.7;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; border-radius: var(--radius); }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* --- Sun Bar --- */
.sun-bar { background-color: var(--color-yellow); color: #5c4d00; padding: 8px 0; font-weight: bold; font-size: 0.9rem; }
.sun-flex { display: flex; justify-content: space-between; }
.weather-widget span { margin-left: 15px; }

/* --- Header --- */
.aegean-header { background-color: var(--color-white); padding: 15px 0; box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000; border-bottom: 3px solid var(--color-turq); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-heading); font-size: 2rem; color: var(--color-turq-dark); }
.blue-text { color: var(--color-turq); }
.sun-icon { font-size: 1.5rem; margin-left: 5px; animation: spin 10s linear infinite; display: inline-block; }
@keyframes spin { 100% { transform: rotate(360deg); } }

.holiday-nav ul { display: flex; gap: 25px; align-items: center; }
.holiday-nav a { font-weight: 700; color: #666; font-size: 1.1rem; }
.holiday-nav a:hover, .holiday-nav a.active { color: var(--color-turq); }

.btn-turquoise { background-color: var(--color-turq); color: var(--color-white) !important; padding: 10px 25px; border-radius: 50px; font-weight: bold; box-shadow: 0 4px 10px rgba(64, 224, 208, 0.4); }
.btn-turquoise:hover { background-color: var(--color-turq-dark); transform: translateY(-3px); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-toggle span { width: 30px; height: 3px; background-color: var(--color-turq); border-radius: 5px; }

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 250px; height: 100%;
    background-color: var(--color-white); z-index: 2000;
    display: flex; flex-direction: column; padding: 40px; gap: 20px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1); transition: 0.3s ease;
}
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 1.5rem; background: none; border: none; cursor: pointer; color: var(--color-turq); }
.mobile-menu a { font-weight: 700; font-size: 1.2rem; color: var(--color-text); }

/* --- Hero --- */
.hero-aegean {
    position: relative; height: 600px;
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center; text-align: center;
    overflow: hidden;
}
.hero-content { position: relative; z-index: 2; color: var(--color-white); padding: 20px; text-shadow: 0 2px 5px rgba(0,0,0,0.3); }
.hero-content h1 { font-family: var(--font-heading); font-size: 4rem; margin-bottom: 20px; }
.hero-content p { font-size: 1.5rem; margin-bottom: 40px; font-weight: 600; }

.dest-search { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.dest-search button { background: rgba(255,255,255,0.9); color: var(--color-turq-dark); border: none; padding: 12px 25px; border-radius: 30px; font-weight: bold; cursor: pointer; font-size: 1rem; transition: 0.3s; }
.dest-search button:hover { background: var(--color-yellow); color: #5c4d00; transform: scale(1.05); }

/* Wave Effect using CSS mask or border-radius */
.hero-wave { position: absolute; bottom: -50px; left: 0; width: 100%; height: 100px; background: var(--color-blue-light); border-radius: 50% 50% 0 0 / 100% 100% 0 0; transform: scaleX(1.5); }

/* --- Masonry Grid --- */
.section-padding { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-family: var(--font-heading); font-size: 3rem; color: var(--color-turq-dark); }
.wave-line { color: var(--color-yellow); font-size: 2rem; font-weight: bold; letter-spacing: -5px; }

.masonry-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); grid-auto-rows: 250px; gap: 20px; }
.grid-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; background-size: cover; background-position: center; transition: 0.3s; box-shadow: var(--shadow); }
.grid-item:hover { transform: translateY(-5px); }
.grid-item.large { grid-column: span 2; }
.grid-item.tall { grid-row: span 2; }

.overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); color: #fff; }
.overlay h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 5px; }
.overlay span { font-size: 0.9rem; }

/* --- Cuisine Banner --- */
.cuisine-banner { background-color: var(--color-white); padding: 60px 0; border-radius: 30px; margin: 50px auto; width: 95%; box-shadow: var(--shadow); }
.banner-flex { display: flex; align-items: center; gap: 50px; padding: 0 50px; }
.banner-text { flex: 1; }
.banner-text h3 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--color-turq-dark); margin-bottom: 20px; }
.btn-yellow { background-color: var(--color-yellow); color: #5c4d00; padding: 10px 30px; border-radius: 50px; font-weight: bold; display: inline-block; margin-top: 20px; transition: 0.3s; }
.btn-yellow:hover { background-color: #ffd900; box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4); }
.banner-img { flex: 1; }
.banner-img img { border-radius: 50% 20% 50% 20%; box-shadow: var(--shadow); }

/* --- Towns (About) --- */
.page-head { text-align: center; margin-bottom: 60px; }
.page-head h1 { font-family: var(--font-heading); font-size: 3.5rem; color: var(--color-turq-dark); }

.towns-list { display: flex; flex-direction: column; gap: 50px; }
.town-card { display: flex; gap: 30px; background: var(--color-white); padding: 20px; border-radius: var(--radius); box-shadow: var(--shadow); align-items: center; }
.t-img { flex: 1; }
.t-img img { height: 250px; object-fit: cover; }
.t-content { flex: 1.5; padding: 10px; }
.t-content h3 { font-family: var(--font-heading); font-size: 2rem; color: var(--color-turq); margin-bottom: 15px; }
.badge { background: var(--color-yellow); color: #5c4d00; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; display: inline-block; margin-top: 15px; }

/* --- Postcards (Testimonials) --- */
.postcard-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.postcard { background-color: #fff9e6; padding: 30px; border-radius: 5px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: relative; transform: rotate(-2deg); transition: 0.3s; }
.postcard:hover { transform: rotate(0) scale(1.05); z-index: 2; }
.postcard.blue { background-color: #e0f7fa; transform: rotate(2deg); }
.postcard:hover.blue { transform: rotate(0) scale(1.05); }
.pin { font-size: 1.5rem; position: absolute; top: -10px; left: 50%; transform: translateX(-50%); text-shadow: 2px 2px 5px rgba(0,0,0,0.2); }
.postcard p { font-family: 'Indie Flower', cursive; font-size: 1.1rem; color: #555; }
.sender { text-align: right; margin-top: 20px; font-weight: bold; color: var(--color-turq-dark); }

/* --- Form --- */
.planner-box { max-width: 800px; margin: 0 auto; background: var(--color-white); padding: 50px; border-radius: 30px; box-shadow: var(--shadow); text-align: center; }
.planner-info h2 { font-family: var(--font-heading); color: var(--color-turq); font-size: 2.5rem; }
.contact-notes { display: flex; justify-content: center; gap: 20px; margin-top: 20px; color: #888; font-weight: bold; }

.breezy-form { margin-top: 40px; text-align: left; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: bold; margin-bottom: 5px; color: var(--color-turq-dark); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 15px; border: 2px solid #eee; border-radius: 15px; font-family: var(--font-body); font-size: 1rem; transition: 0.3s; }
.form-group input:focus { border-color: var(--color-turq); outline: none; }
.btn-send { width: 100%; background-color: var(--color-turq); color: #fff; padding: 15px; border: none; border-radius: 50px; font-weight: bold; font-size: 1.2rem; cursor: pointer; transition: 0.3s; }
.btn-send:hover { background-color: var(--color-yellow); color: #5c4d00; }

/* --- Legal --- */
.guide-doc { max-width: 800px; margin: 0 auto; background: var(--color-white); padding: 50px; border-radius: var(--radius); box-shadow: var(--shadow); }
.guide-doc h1 { font-family: var(--font-heading); color: var(--color-turq-dark); text-align: center; }
.guide-doc h3 { color: var(--color-turq); margin-top: 30px; margin-bottom: 10px; }

/* --- Footer --- */
.aegean-footer { background-color: var(--color-white); padding: 50px 0; margin-top: auto; text-align: center; border-top: 5px solid var(--color-yellow); }
.f-brand { font-family: var(--font-heading); font-size: 2rem; color: var(--color-turq); margin-bottom: 15px; }
.slogan { display: block; font-family: var(--font-body); font-size: 0.9rem; color: #888; font-style: italic; }
.f-social a { color: var(--color-turq-dark); margin: 0 10px; font-weight: bold; }
.copyright { margin-top: 30px; font-size: 0.8rem; color: #ccc; }

@media (max-width: 992px) {
    .holiday-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero-content h1 { font-size: 3rem; }
    .banner-flex { flex-direction: column; text-align: center; padding: 20px; }
    .town-card { flex-direction: column; }
    .postcard-grid { grid-template-columns: 1fr; }
    .masonry-grid { grid-template-columns: 1fr; }
}