/* --- Variables --- */
:root {
    --color-orange: #ff9f43;    /* Citrus Orange */
    --color-blue: #0abde3;      /* Sea Blue */
    --color-blue-dark: #0788a3;
    --color-green: #1dd1a1;     /* Leaf Green */
    --color-white: #ffffff;
    --color-light: #fef9e7;     /* Lemon Tint */
    --color-text: #2d3436;
    
    --font-head: 'Fredoka', sans-serif;
    --font-body: 'Nunito', sans-serif;
    
    --radius: 20px;
    --shadow: 0 8px 20px rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--color-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: 1100px; margin: 0 auto; }

/* --- Citrus Bar --- */
.citrus-bar { background-color: var(--color-orange); color: #fff; padding: 10px 0; font-weight: bold; font-size: 0.9rem; }
.flex-bar { display: flex; justify-content: space-between; align-items: center; }
.weather-pill { background: rgba(255,255,255,0.3); padding: 2px 10px; border-radius: 15px; }

/* --- Header --- */
.med-header { background-color: var(--color-white); padding: 15px 0; border-radius: 0 0 30px 30px; box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 2rem; color: var(--color-blue); font-weight: 600; }
.orange-text { color: var(--color-orange); }
.sun-emoji { font-size: 1.5rem; margin-left: 5px; }

.sunny-nav ul { display: flex; gap: 25px; align-items: center; }
.sunny-nav a { font-weight: 700; color: var(--color-text); font-size: 1.1rem; }
.sunny-nav a:hover, .sunny-nav a.active { color: var(--color-orange); }

.btn-fresh { background-color: var(--color-green); color: var(--color-white) !important; padding: 10px 25px; border-radius: 30px; font-weight: bold; box-shadow: 0 4px 10px rgba(29, 209, 161, 0.4); }
.btn-fresh:hover { transform: scale(1.05); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; }
.mobile-toggle span { width: 30px; height: 4px; background-color: var(--color-blue); border-radius: 4px; }

/* --- 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; border-left: 5px solid var(--color-orange);
}
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 1.5rem; color: var(--color-orange); background: none; border: none; cursor: pointer; }
.mobile-menu a { font-family: var(--font-head); font-size: 1.2rem; color: var(--color-blue); font-weight: 600; }

/* --- Hero --- */
.hero-med {
    position: relative; height: 550px;
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center; text-align: center;
    margin-top: 20px; border-radius: 30px; margin-bottom: 20px;
    width: 95%; margin-left: auto; margin-right: auto;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.2); border-radius: 30px; z-index: 1; }

.hero-content { position: relative; z-index: 2; color: var(--color-white); padding: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.badge-summer { background-color: var(--color-yellow); color: #e67e22; padding: 5px 15px; border-radius: 20px; font-weight: bold; font-size: 0.9rem; margin-bottom: 15px; display: inline-block; }
.hero-content h1 { font-family: var(--font-head); font-size: 3.5rem; margin-bottom: 15px; line-height: 1.1; }
.hero-content p { font-size: 1.3rem; margin-bottom: 30px; font-weight: 600; }

.quick-links { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.link-box { background: rgba(255,255,255,0.9); color: var(--color-blue); padding: 10px 20px; border-radius: 20px; font-weight: bold; transition: 0.3s; }
.link-box:hover { background: var(--color-white); transform: translateY(-3px); color: var(--color-orange); }

/* --- Highlights --- */
.section-padding { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--color-blue); }
.wave-icon { font-size: 2rem; color: var(--color-orange); margin-top: -10px; }

.dest-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.dest-card { background-color: var(--color-white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: 0.3s; }
.dest-card:hover { transform: translateY(-5px); }

.img-holder { position: relative; height: 200px; }
.img-holder img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.tag-blue, .tag-orange, .tag-green { position: absolute; top: 15px; left: 15px; padding: 5px 12px; border-radius: 15px; color: #fff; font-weight: bold; font-size: 0.8rem; }
.tag-blue { background-color: var(--color-blue); }
.tag-orange { background-color: var(--color-orange); }
.tag-green { background-color: var(--color-green); }

.card-body { padding: 25px; }
.card-body h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 10px; color: var(--color-text); }
.card-body p { font-size: 0.95rem; color: #666; margin-bottom: 20px; }
.card-body a { color: var(--color-orange); font-weight: bold; }

/* --- Taste Banner --- */
.taste-banner { background-color: var(--color-orange); color: var(--color-white); padding: 60px 0; border-radius: 30px; margin: 30px auto; width: 95%; }
.banner-flex { display: flex; align-items: center; gap: 50px; padding: 0 50px; }
.text-side { flex: 1; }
.text-side h3 { font-family: var(--font-head); font-size: 2.5rem; margin-bottom: 15px; }
.btn-white { background-color: var(--color-white); color: var(--color-orange); padding: 12px 30px; border-radius: 30px; font-weight: bold; display: inline-block; margin-top: 20px; }
.img-side { flex: 1; }
.img-side img { border-radius: 50%; border: 8px solid rgba(255,255,255,0.3); }

/* --- Routes (About) --- */
.page-head { text-align: center; margin-bottom: 60px; }
.page-head h1 { font-family: var(--font-head); font-size: 3rem; color: var(--color-blue); }

.route-list { display: flex; flex-direction: column; gap: 50px; }
.route-card { display: flex; gap: 30px; background: var(--color-white); padding: 20px; border-radius: var(--radius); box-shadow: var(--shadow); align-items: center; }
.route-card.reverse { flex-direction: row-reverse; }
.route-img { flex: 1; }
.route-img img { height: 250px; width: 100%; object-fit: cover; }
.route-info { flex: 1.5; padding: 10px; }
.badge-loc { color: var(--color-orange); font-weight: bold; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.route-info h3 { font-family: var(--font-head); font-size: 1.8rem; margin: 5px 0 15px; color: var(--color-text); }
.features { list-style: none; display: flex; gap: 15px; margin-top: 20px; flex-wrap: wrap; }
.features li { background: var(--color-light); padding: 5px 12px; border-radius: 10px; font-size: 0.9rem; font-weight: 600; color: #555; }

/* --- Polaroids (Testimonials) --- */
.polaroid-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.polaroid { background: var(--color-white); padding: 15px 15px 30px 15px; box-shadow: var(--shadow); transform: rotate(-2deg); transition: 0.3s; }
.polaroid:nth-child(2) { transform: rotate(2deg); }
.polaroid:hover { transform: rotate(0) scale(1.05); z-index: 5; }
.photo-frame { height: 200px; background: #eee; margin-bottom: 15px; display: flex; align-items: center; justify-content: center; }
.fake-img { font-size: 4rem; }
.caption p { font-family: 'Comic Sans MS', 'Chalkboard SE', sans-serif; font-size: 0.95rem; color: #555; margin-bottom: 10px; }
.caption span { display: block; text-align: right; font-weight: bold; color: var(--color-blue); }

/* --- Contact --- */
.contact-card { background-color: var(--color-white); padding: 50px; border-radius: var(--radius); box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; }
.card-left h2 { font-family: var(--font-head); color: var(--color-blue); font-size: 2.5rem; margin-bottom: 15px; }
.info-bubbles { margin-top: 30px; }
.bubble { background: var(--color-light); padding: 10px 20px; border-radius: 20px; margin-bottom: 10px; font-weight: bold; color: var(--color-orange); display: inline-block; }

.fresh-form .form-row { margin-bottom: 20px; }
.fresh-form label { display: block; font-weight: bold; margin-bottom: 5px; color: var(--color-text); }
.fresh-form input, .fresh-form select, .fresh-form textarea { width: 100%; padding: 12px; border: 2px solid #eee; border-radius: 10px; font-family: var(--font-body); font-size: 1rem; }
.fresh-form input:focus, .fresh-form select:focus, .fresh-form textarea:focus { border-color: var(--color-green); outline: none; }
.btn-submit { width: 100%; background-color: var(--color-blue); color: var(--color-white); padding: 15px; border: none; font-family: var(--font-head); font-weight: bold; font-size: 1.1rem; border-radius: 10px; cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background-color: var(--color-blue-dark); }

/* --- Legal --- */
.guide-content { max-width: 800px; margin: 0 auto; background: var(--color-white); padding: 50px; border-radius: var(--radius); box-shadow: var(--shadow); }
.guide-content h1 { font-family: var(--font-head); color: var(--color-blue); text-align: center; }
.guide-content h3 { color: var(--color-orange); margin-top: 30px; margin-bottom: 10px; }

/* --- Footer --- */
.med-footer { background-color: var(--color-blue); color: var(--color-white); padding: 50px 0; margin-top: auto; text-align: center; }
.f-brand { font-family: var(--font-head); font-size: 2rem; margin-bottom: 15px; }
.f-brand p { font-family: var(--font-body); font-size: 1rem; opacity: 0.8; margin: 0; }
.links a { color: var(--color-white); margin: 0 15px; font-weight: bold; }
.copyright { margin-top: 30px; font-size: 0.8rem; opacity: 0.6; }

@media (max-width: 992px) {
    .sunny-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero-content h1 { font-size: 3rem; }
    .banner-flex { flex-direction: column; text-align: center; }
    .route-card { flex-direction: column; }
    .contact-card, .polaroid-grid { grid-template-columns: 1fr; }
}