nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background-color: rgba(255, 229, 180, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.left-menu, .right-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.left-menu {
    justify-content: flex-end;
    margin-right: 2rem;
}

.right-menu {
    justify-content: flex-start;
    margin-left: 2rem;
}

nav .logo {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #FF7F50;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }
    
    .left-menu, .right-menu {
        flex-direction: column;
        align-items: center;
        margin: 1rem 0;
    }
    
    nav ul li {
        margin: 0.5rem 0;
    }
    
    nav .logo {
        order: -1;
        margin-bottom: 1rem;
    }
}

body {
    background-color: #FFE5B4;  
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    position: relative;
    overflow-x: hidden;
    line-height: 1.6; 
}

/* Leaf animation */
@keyframes float-leaf {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-50px) rotate(20deg);
    }
    100% {
        transform: translateY(0) rotate(-20deg);
    }
}

.leaf {
    position: fixed;
    width: 50px;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M25 5 L40 25 L25 45 L10 25 Z" fill="%23FF7F50"/></svg>') no-repeat;
    background-size: contain;
    opacity: 0.7;
    z-index: -1;
    animation: float-leaf 5s infinite ease-in-out;
}

@keyframes float-balloon {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-100px) translateX(50px);
    }
    100% {
        transform: translateY(0) translateX(-50px);
    }
}

.balloon {
    position: fixed;
    width: 80px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    animation: float-balloon 15s infinite ease-in-out;
    opacity: 0.7;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.text-column {
    flex: 1;
    text-align: left; 
    padding-left: 1rem; 
}

.text-column p {
    font-size: 16px; 
    margin-bottom: 1rem; 
    text-align: left;
}

.text-column h3 {
    font-size: 1.5rem; 
    color: #444;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

.text-column h4 {
    font-size: 1.25rem; 
    color: #555;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.text-column h2 {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.image-column {
    flex: 1;
}

.image-column img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}

#entertainment .image-column img {
    max-height: 300px;  
    width: 100%;
    object-fit: cover;  
    margin-bottom: 1rem;  
    border-radius: 8px;  
}

.lahome-logo {
    max-width: 150px;  
    height: auto;      
    display: block;
    margin: 10px 0;
}

.call-now-container {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.call-now-btn, .map-link-btn, .facebook-link-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: white;
}

.call-now-btn {
    background-color: #4CAF50;
}

.map-link-btn {
    background-color: #2196F3;
}

.facebook-link-btn {
    background-color: #3b5998;
}

.call-now-btn:hover {
    background-color: #45a049;
}

.map-link-btn:hover {
    background-color: #1976D2;
}

.facebook-link-btn:hover {
    background-color: #2d4373;
}

.call-now-btn svg, .map-link-btn svg, .facebook-link-btn svg {
    margin-right: 10px;
    stroke: white;
    color: white;
}

.outdoor-activities-image {
    display: none;
}

.activity-item img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .split-layout {
        flex-direction: column;
    }
    .call-now-btn, .map-link-btn, .facebook-link-btn {
        width: 100%;
        justify-content: center;
    }
    #entertainment .image-column img {
        max-height: 250px;  
    }
    
    .outdoor-activities-image {
        max-height: 250px;
    }
}

.section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #333;
    margin: 2rem 0;
    position: relative;
    padding-bottom: 1rem;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #FF7F50;
    border-radius: 2px;
}

.lahome-details {
    margin-top: 2rem;
}

.floor-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.floor-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.floor-list li::before {
    content: '🏠';
    position: absolute;
    left: 0;
    top: 2px;
}

.check-times {
    background-color: #fff3e6;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.check-times p {
    margin: 0.5rem 0;
}

.amenities {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.amenities-column {
    flex: 1;
}

.amenities h4 {
    color: #FF7F50;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #FFE5B4;
}

.amenities ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.amenities li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.amenities li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
}

@media (max-width: 768px) {
    .amenities {
        flex-direction: column;
        gap: 1rem;
    }
}

.thanks-message {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background-color: rgba(255, 229, 180, 0.5);
}

.thanks-message h1 {
    font-size: 3rem;
    color: #FF7F50;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.home-button-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    padding-bottom: 1rem;
}

.home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #FF7F50;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.home-button:hover {
    background-color: #FF6347;
    transform: scale(1.05);
}

.home-button svg {
    margin-right: 10px;
    stroke: white;
}

.why-choose-lahome {
    background-color: #FFF3E6;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.why-choose-lahome h3 {
    text-align: center;
    color: #FF7F50;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.why-choose-lahome h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #FF7F50;
    border-radius: 2px;
}

.reasons-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.reason-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.reason-item h4 {
    margin-bottom: 0.75rem;
    color: #333;
    font-size: 1.2rem;
}

.reason-item p {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .reasons-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reasons-list {
        grid-template-columns: 1fr;
    }
}

.book-now-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

.book-now-btn:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

.book-now-btn svg {
    margin-right: 10px;
    stroke: white;
}

.book-now-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.book-now-modal.show {
    display: flex;
    opacity: 1;
}

.book-now-container {
    background-color: white;
    border-radius: 15px;
    display: flex;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.book-now-qr {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
    padding: 2rem;
}

.zalo-qr-image {
    max-width: 250px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.book-now-form {
    flex: 2;
    padding: 2rem;
}

.book-now-form h3 {
    text-align: center;
    color: #333;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.submit-booking, .close-modal {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-booking {
    background-color: #4CAF50;
    color: white;
}

.close-modal {
    background-color: #f44336;
    color: white;
}

@media (max-width: 768px) {
    .book-now-container {
        flex-direction: column;
        width: 95%;
    }
    
    .book-now-qr, .book-now-form {
        flex: auto;
    }
}

.logo-slogan {
    font-size: 1.2rem;  
    color: #2ecc71;     
    margin-top: 0.5rem;
    font-style: italic;
}