/* --- 1. SETTINGS & VARIABLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sand: #D8C3A5;
    --warm-grey: #8E8D8A;
    --charcoal: #333333;
    --linen: #F2F0EB;
    --bg-creme: #F9F7F2;
    --white: #FFFFFF;
    --slate: #4A4E51;
    --accent-coral: #ff5a5f; /* Modern accent for buttons/links */
    --primary-teal: #008080;
}

body {
    font-family: 'Tenor Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #e6cfae; /* Your specific bisque/tan brand color */
    color: var(--slate);
    line-height: 1.8;
    overflow-x: hidden;
}

/* --- 2. HEADER & LOGO --- */
.brand-symbol {
    text-align: center;
    padding: 30px 0;
    background-color: var(--white);
}

.brand-symbol a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.v-emblem {
    background: var(--charcoal);
    color: var(--linen);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bodoni Moda', serif;
    font-size: 32px;
    font-style: italic;
    transition: 0.3s ease;
}

.brand-symbol a:hover .v-emblem {
    background: var(--warm-grey);
    transform: rotate(-5deg);
}

.pg-tag {
    font-size: 18px;
    color: var(--warm-grey);
    margin-left: 10px;
    border-left: 1px solid var(--sand);
    padding-left: 10px;
}

/* --- 3. NAVIGATION --- */
.navbar {
    background-color: #ddd6c2;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 15px 0;
    margin: 0;
    gap: 30px;
}

.navbar a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}

.navbar a:hover {
    color: var(--accent-coral);
    font-style: italic;
}

/* --- 4. HERO SECTION --- */
.hero-section {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('ahmed.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

/* --- 5. ROOMS & AMENITIES GRID --- */
.rooms-grid, .doodle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 10%;
}

.room-card, .doodle-card {
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.room-card:hover { transform: translateY(-10px); }

.room-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

/* --- 6. BUTTONS --- */
.cta-button, .book-now-btn, .send-btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.4s;
    cursor: pointer;
    border: none;
    font-size: 12px;
    letter-spacing: 1px;
}

.cta-button, .send-btn { background: var(--accent-coral); color: white; }
.book-now-btn { background: #25D366; color: white; }

.cta-button:hover, .send-btn:hover {
    background: var(--charcoal);
    transform: translateY(-3px);
}

/* --- 7. LOCATION & MAP --- */
.location-section { padding: 80px 10%; background-color: var(--linen); }

.map-container {
    position: relative;
    height: 500px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

#viva-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) invert(5%) contrast(90%);
    transition: 0.8s ease;
}

.map-container:hover iframe { filter: none; }

/* --- 8. CONTACT FORM --- */
.contact-container {
    max-width: 1100px;
    margin: 50px auto;
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.contact-info { flex: 1; background: #2c3e50; color: white; padding: 50px; }
.contact-form-wrapper { flex: 1.5; padding: 50px; }

/* --- 9. FOOTER --- */
.viva-footer {
    background-color: #ddd6c2;
    padding: 80px 10% 40px;
    border-top: 1px solid var(--sand);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-bottom {
    margin-top: 50px;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--warm-grey);
}

/* --- 10. MOBILE FIXES --- */
@media (max-width: 768px) {
    .navbar ul { gap: 15px; }
    .footer-container, .contact-container {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    .hero-content h1 { font-size: 2.2rem; }
}

/* This tames the massive images in your cards */
.doodle-img, .doodle-item img, .doodle-wrapper img {
    width: 80px;            /* Forces a specific width */
    height: 80px;           /* Forces a specific height */
    object-fit: contain;    /* Prevents stretching */
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* This ensures the cards themselves stay organized */
.doodle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 40px 10%;
    justify-items: center;
}

.doodle-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    width: 100%;            /* Makes sure it fits the grid column */
    max-width: 280px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    text-align: center;
}