:root {
    --ege-blue: #0077BE;
    --light-blue: #E0F7FA;
    --sand: #FDFBF7;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-sans);
    background-color: var(--sand);
    color: var(--text-dark);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }

/* Header */
.hotel-header { padding: 20px 0; background: var(--white); box-shadow: 0 5px 20px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: var(--text-dark); letter-spacing: 1px; }
.blue { color: var(--ege-blue); }

.hotel-nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
.hotel-nav a { font-size: 0.9rem; text-transform: uppercase; color: var(--text-light); letter-spacing: 1px; }
.hotel-nav a:hover, .hotel-nav a.active { color: var(--ege-blue); }

.btn-book { background: var(--ege-blue); color: var(--white) !important; padding: 10px 25px; border-radius: 0; font-weight: bold; }
.btn-book:hover { background: #005a9e; }

/* Mobile Menu */
.mobile-toggle { display: none; cursor: pointer; flex-direction: column; gap: 6px; }
.mobile-toggle span { width: 30px; height: 2px; background: var(--ege-blue); }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 250px; height: 100%; background: var(--white); z-index: 2000; padding: 40px; display: flex; flex-direction: column; transition: 0.4s; box-shadow: -5px 0 20px rgba(0,0,0,0.1); }
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; background: none; border: none; font-size: 1.5rem; cursor: pointer; margin-bottom: 20px; }
.menu-links a { display: block; padding: 15px 0; border-bottom: 1px solid #eee; font-family: var(--font-serif); color: var(--ege-blue); font-size: 1.1rem; }

/* Hero */
.hero-resort { height: 80vh; background-size: cover; background-position: center; position: relative; }
.hero-overlay { width: 100%; height: 100%; background: rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center; }
.hero-content { text-align: center; color: var(--white); max-width: 800px; padding: 0 20px; }
.welcome-text { font-family: var(--font-sans); letter-spacing: 3px; font-size: 0.9rem; text-transform: uppercase; display: block; margin-bottom: 10px; }
.hero-content h1 { font-family: var(--font-serif); font-size: 4.5rem; line-height: 1.1; margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; }

.booking-widget { background: var(--white); padding: 30px; border-radius: 5px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); display: inline-block; width: 100%; }
#checkinForm { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; align-items: flex-end; }
.input-group { text-align: left; flex: 1; min-width: 150px; }
.input-group label { display: block; font-size: 0.8rem; color: var(--text-light); margin-bottom: 5px; font-weight: bold; }
.input-group input, .input-group select { width: 100%; padding: 10px; border: 1px solid #ddd; color: var(--text-dark); font-family: var(--font-sans); }
.btn-check { background: var(--ege-blue); color: var(--white); border: none; padding: 12px 30px; font-weight: bold; cursor: pointer; height: 45px; }
.btn-check:hover { background: #005a9e; }

/* Rooms */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-family: var(--font-serif); font-size: 2.5rem; color: var(--ege-blue); }
.wave-line { color: var(--ege-blue); font-size: 1.5rem; letter-spacing: 5px; margin-top: 10px; }

.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.room-card { background: var(--white); box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; }
.room-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.room-card img { width: 100%; height: 250px; object-fit: cover; }
.room-info { padding: 25px; text-align: center; }
.room-info h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 10px; color: var(--text-dark); }
.price { display: block; color: var(--ege-blue); font-weight: bold; margin: 15px 0; font-size: 1.1rem; }
.link-details { text-decoration: underline; color: var(--text-light); font-size: 0.9rem; }

/* About & Contact */
.page-header { background: var(--ege-blue); color: var(--white); padding: 60px 0; text-align: center; }
.page-header h1 { font-family: var(--font-serif); font-size: 3rem; }

.about-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.text-col h2 { font-family: var(--font-serif); font-size: 2.2rem; color: var(--ege-blue); margin-bottom: 20px; }
.amenities { list-style: none; margin-top: 20px; columns: 2; }
.amenities li { margin-bottom: 10px; color: var(--text-light); font-weight: 600; }
.img-col img { width: 100%; border: 10px solid var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.contact-card { display: flex; background: var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.05); max-width: 900px; margin: 0 auto; }
.info-side { flex: 1; background: var(--ege-blue); color: var(--white); padding: 50px; }
.info-side h2 { font-family: var(--font-serif); margin-bottom: 20px; }
.details { margin-top: 30px; font-size: 1.1rem; }
.details p { margin-bottom: 15px; }
.hotel-form { flex: 1.5; padding: 50px; }
.form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.hotel-form input, .hotel-form select, .hotel-form textarea { width: 100%; padding: 12px; border: 1px solid #ddd; font-family: var(--font-sans); }
.hotel-form textarea { margin-bottom: 20px; }
.btn-submit { background: var(--ege-blue); color: var(--white); padding: 12px 30px; border: none; cursor: pointer; font-weight: bold; width: 100%; }

/* Testimonials */
.reviews-container { display: flex; flex-direction: column; gap: 30px; max-width: 800px; margin: 0 auto; }
.review-box { background: var(--white); padding: 40px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.stars { color: gold; margin-bottom: 15px; letter-spacing: 3px; }
.review-box p { font-family: var(--font-serif); font-style: italic; font-size: 1.2rem; margin-bottom: 20px; color: var(--text-dark); }
.review-box strong { color: var(--ege-blue); font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; }

/* Legal */
.policy-content { max-width: 800px; margin: 0 auto; background: var(--white); padding: 60px; }
.policy-content h1 { font-family: var(--font-serif); color: var(--ege-blue); text-align: center; }
.policy-content .wave-line { text-align: center; margin-bottom: 40px; }
.policy-content h3 { color: var(--text-dark); margin-top: 30px; margin-bottom: 10px; font-family: var(--font-serif); }

/* Footer */
.hotel-footer { background: var(--white); border-top: 1px solid #eee; padding: 60px 0 20px; margin-top: 80px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; padding-bottom: 40px; border-bottom: 1px solid #f0f0f0; }
.f-brand h4 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--ege-blue); margin-bottom: 5px; }
.f-links a { margin-left: 20px; color: var(--text-light); }
.f-links a:hover { color: var(--ege-blue); }
.copyright { text-align: center; margin-top: 20px; font-size: 0.8rem; color: #999; }

/* Cookie Banner */
.cookie-bar { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); background: var(--white); padding: 15px 30px; box-shadow: 0 5px 20px rgba(0,0,0,0.2); border-radius: 50px; display: none; align-items: center; gap: 20px; z-index: 9999; border: 1px solid var(--ege-blue); width: max-content; }
.cookie-bar.active { display: flex; animation: fadeUp 0.5s; }
.cookie-bar button { background: var(--ege-blue); color: var(--white); border: none; padding: 8px 20px; border-radius: 20px; cursor: pointer; font-weight: bold; }

@keyframes fadeUp { from { transform: translate(-50%, 100px); } to { transform: translate(-50%, 0); } }

@media (max-width: 900px) {
    .hotel-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero-content h1 { font-size: 3rem; }
    .rooms-grid, .about-flex, .contact-card, .form-row { grid-template-columns: 1fr; flex-direction: column; }
    .booking-widget form { flex-direction: column; }
}