/* Base Styles */
body, html {
    margin: 0;
    padding: 0;
    font-size: 16px;
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* Wellness Section */
.wellness-section {
    margin-top: -70px !important;
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

.wellness-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('../images/dine/Thaproban-Restaurant-indoor-restaurant.webp') center/cover no-repeat;
    z-index: 0;
}

.wellness-content {
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    box-sizing: border-box;
}

.wellness-tagline {
    color: rgba(255,255,255,0.9);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 4px;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    max-width: 500px;
}

.wellness-title {
    font-family: 'Marcellus', serif;
    font-size: 4.8rem !important;
    color: white !important;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    font-weight: 300;
    max-width: 800px;
    text-align: center;
}

.wellness-description {
    font-family: 'Montserrat', sans-serif;
    max-width: 800px;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.2px;
}

/* Restaurant Section */
#restaurant {
    padding: 100px 0;
    background: #F3F3F0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 50px;
    min-height: 600px;
}

.image-column {
    flex: 1;
    position: relative;
    height: 500px;
    min-width: 300px;
}

.content-column {
    flex: 1;
    min-width: 300px;
}

.restaurant-images {
    display: none; /* Hidden by default */
}

/* Restaurant Info Strip Section */
.restaurant-info-strip {
    position: relative;
    height: auto;
    min-height: 300px;
    width: 100%;
    overflow: hidden;
}

.info-strip-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    width: 100%;
}

.info-card {
    text-align: center;
    color: white;
    padding: 30px 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4E9B82, #4E9B82);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 8px 32px rgba(201, 169, 110, 0.3);
}

.info-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: white;
    text-transform: uppercase;
}

.info-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

/* Dine Overview Section */
.dine-overview {
    padding: 80px 0;
    background: #F3F3F0;
    position: relative;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .wellness-title {
        font-size: 4rem !important;
    }
}

@media (max-width: 992px) {
    .wellness-title {
        font-size: 3.5rem !important;
    }
    
    .container {
        flex-direction: column;
        min-height: auto;
    }
    
    .image-column {
        display: none;
    }
    
    .restaurant-images {
        display: flex;
        gap: 20px;
        margin-top: 40px;
        width: 100%;
    }
    
    .restaurant-images img {
        width: 50%;
        height: 300px;
        object-fit: cover;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .info-grid {
        gap: 30px;
        padding: 0 15px;
    }
    
    .info-card {
        padding: 25px 15px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .info-icon i {
        font-size: 1.5rem;
    }
    
    .info-card h3 {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .info-card p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .wellness-tagline {
        font-size: 0.8rem !important;
        letter-spacing: 3px;
        max-width: 90%;
    }
    
    .wellness-title {
        font-size: 2.8rem !important;
        max-width: 90%;
    }
    
    .wellness-description {
        font-size: 1rem !important;
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    .wellness-title {
        font-size: 2rem !important;
    }
    
    .restaurant-images {
        flex-direction: column;
        gap: 20px;
    }
    
    .restaurant-images img {
        width: 100%;
        height: 250px;
    }
    
    .info-strip-content {
        padding: 40px 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .info-card {
        padding: 20px 15px;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
    }
    
    .info-card h3 {
        font-size: 0.75rem;
    }
    
    .info-card p {
        font-size: 0.75rem;
    }
}

@media (max-width: 400px) {
    .wellness-title {
        font-size: 1.8rem !important;
    }
    
    .wellness-tagline {
        font-size: 0.7rem !important;
        letter-spacing: 2px;
    }
}