/* Variables & Responsive Setup */
:root {
    --sunset-orange: #FF7E5F;
    --ocean-blue: #2193b0;
    --text-dark: #333333;
    --soft-white: #f9f9f9;
    --glass-bg: rgba(255, 255, 255, 0.9);
    
    --font-heading: 'Josefin Sans', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--soft-white);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 80px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; border-radius: 10px; }

/* Header */
.vista-header {
    background: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-dark);
}
.sun-icon { color: var(--sunset-orange); font-size: 2rem; }
.gradient-text {
    background: linear-gradient(to right, var(--sunset-orange), var(--ocean-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Nav */
.resort-nav { display: none; } /* Hidden on mobile */
.resort-nav a {
    margin-left: 20px;
    font-weight: 600;
    color: #555;
    font-size: 0.95rem;
    text-transform: uppercase;
}
.resort-nav a:hover, .resort-nav a.active { color: var(--ocean-blue); }

.btn-gradient {
    background: linear-gradient(to right, var(--sunset-orange), var(--ocean-blue));
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(33, 147, 176, 0.3);
}
.btn-gradient:hover { transform: translateY(-2px); opacity: 0.9; }

/* Mobile Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}
.bar { width: 25px; height: 3px; background: var(--text-dark); border-radius: 2px; }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease-in-out;
}
.mobile-menu.active { right: 0; }
.close-menu { position: absolute; top: 20px; right: 20px; border: none; background: none; font-size: 2rem; cursor: pointer; }
.mobile-menu a { font-family: var(--font-heading); font-size: 2rem; margin: 15px 0; color: var(--text-dark); }

@media (min-width: 900px) {
    .mobile-toggle { display: none; }
    .resort-nav { display: block; }
}

/* Hero */
.hero-vista {
    height: 85vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.glass-overlay {
    background: rgba(255, 255, 255, 0.7);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    max-width: 800px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.badge-summer { background: var(--sunset-orange); color: #fff; padding: 5px 15px; border-radius: 20px; font-weight: 600; font-size: 0.8rem; display: inline-block; margin-bottom: 15px; }
.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--sunset-orange), var(--ocean-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-content p { font-size: 1.1rem; color: #555; margin-bottom: 30px; }

/* Search Box */
.search-box form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.input-wrap { text-align: left; flex: 1; min-width: 150px; }
.input-wrap label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 5px; color: #555; }
.input-wrap input, .input-wrap select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: var(--font-body);
}
.btn-search {
    background: var(--ocean-blue);
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: auto;
    height: 45px;
}

/* Highlights */
.section-head { text-align: center; margin-bottom: 50px; }
.section-head h2 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--text-dark); margin-bottom: 10px; }
.sunset-line { width: 80px; height: 4px; background: linear-gradient(to right, var(--sunset-orange), var(--ocean-blue)); margin: 0 auto; border-radius: 2px; }
.sunset-line.left { margin: 20px 0; }

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.v-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.v-card:hover { transform: translateY(-10px); }
.v-card img { width: 100%; height: 250px; object-fit: cover; border-radius: 15px 15px 0 0; }
.v-info { padding: 25px; text-align: center; }
.v-info h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--ocean-blue); margin-bottom: 10px; }
.v-info p { color: #666; font-size: 0.95rem; }

/* About & Contact Layouts */
.about-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}
.about-text h1 { font-family: var(--font-heading); font-size: 2.5rem; line-height: 1.2; }
.amenity-list { list-style: none; margin-top: 20px; }
.amenity-list li { margin-bottom: 10px; font-weight: 600; color: #555; }

.contact-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.info-panel h2 { font-family: var(--font-heading); color: var(--ocean-blue); margin-bottom: 15px; }
.contact-data p { margin-bottom: 10px; font-weight: 600; color: #555; }

.vista-form .form-group { margin-bottom: 20px; }
.vista-form input, .vista-form select, .vista-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    background: var(--soft-white);
    border-radius: 10px;
    font-family: var(--font-body);
}
.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--text-dark);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

@media (min-width: 900px) {
    .about-layout { grid-template-columns: 1fr 1fr; }
    .contact-box { grid-template-columns: 1fr 1.5fr; }
}

/* Reviews & Legal */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #eee;
}
.review-card.highlight { border-top: 4px solid var(--ocean-blue); box-shadow: 0 10px 30px rgba(33, 147, 176, 0.1); }
.stars { color: #FFC107; margin-bottom: 15px; display: block; font-size: 1.2rem; }
.review-card p { font-style: italic; color: #555; margin-bottom: 20px; }
.author strong { display: block; color: var(--text-dark); }
.author span { font-size: 0.85rem; color: #999; }

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
}
.policy-container h1 { font-family: var(--font-heading); color: var(--text-dark); }
.policy-container h3 { color: var(--ocean-blue); margin-top: 30px; margin-bottom: 10px; font-family: var(--font-heading); font-size: 1.5rem; }

/* Footer */
.vista-footer { background: #fff; padding: 60px 0 20px; margin-top: 80px; }
.footer-content { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; margin-bottom: 30px; }
.f-brand h4 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 5px; background: linear-gradient(to right, var(--sunset-orange), var(--ocean-blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.f-social a { margin: 0 10px; color: #666; font-weight: 600; }
.f-social a:hover { color: var(--ocean-blue); }
.copyright { text-align: center; font-size: 0.85rem; color: #aaa; }

@media (min-width: 768px) {
    .footer-content { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* Cookie */
.cookie-glass {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 9999;
    max-width: 500px;
    margin: 0 auto;
    display: none;
}
.cookie-glass.active { display: flex; animation: popUp 0.5s; }
.cookie-glass button { background: var(--text-dark); color: #fff; border: none; padding: 8px 20px; border-radius: 20px; font-weight: 600; cursor: pointer; }

@keyframes popUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }