
.inhale-exhale-section {
    /* background-color: #f5ecd7; */
    padding: 5rem 2%; 
    background-color: #fff8e6;
    position: relative;
    overflow: hidden;
    text-align: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
}

.inhale-exhale-section::before,
.inhale-exhale-section::after {
    content: '✧';
    position: absolute;
    font-size: 4rem;
    color: #d3cbb3;
    opacity: 0.2;
}

.inhale-exhale-section::before { top: 10%; left: 5%; }
.inhale-exhale-section::after { bottom: 10%; right: 5%; }

.inhale-wrapper {
    display: flex;
    /* flex-direction: column;
    align-items: center; */
    justify-content: space-between;
    /* gap: 3rem; */
}

.about-content {
    flex: 3;
}
.inhale-title {
    font-size: 1.8rem;
    font-weight: bold;
    font-style: italic;
    color: #695c34;
    text-align: center;
    max-width: 90%;
    position: relative;
    padding-bottom: 0.5rem;
    word-wrap: break-word;
    margin: 0 auto;
}

.inhale-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #d3cbb3;
}

.inhale-text {
    font-size: 1.1rem;
    max-width: 700px;
    margin-bottom: 1.5rem;
    /* text-align: center; */
    line-height: 1.8;
}

.inhale-stats {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 1rem; 
    margin-top: 1.5rem;
    flex-wrap: nowrap; /* Prevents wrapping */
    overflow: hidden;
}

/* Ensure each stat is centered and balanced */
.inhale-stat {
    display: flex;
    flex-direction: column; /* Number on top, text below */
    text-align: center;
    min-width: 140px; /* Prevents shrinking */
    flex-grow: 1;
}

/* Number Styling */
.inhale-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #695c34;
}

/* Label Styling */
.inhale-label {
    font-size: 1.1rem;
    color: #4a3d2f;
    font-weight: 500;
    opacity: 0.9;
}

/* 📱 Mobile Optimization */
@media (max-width: 768px) {
    .inhale-stats {
        gap: 1.5rem; /* Reduce gap on smaller screens */
    }

    .inhale-number {
        font-size: 2rem;
    }

    .inhale-label {
        font-size: 1rem;
    }
}

/* 🖥️ Large Screens - Bigger & More Spacing */
@media (min-width: 1200px) {
    .inhale-stats {
        gap: 5rem; /* More spacing on big screens */
    }

    .inhale-number {
        font-size: 3rem;
    }

    .inhale-label {
        font-size: 1.2rem;
    }
}

/* Guest Widget */
.guest-widget {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 90vw; /* Allow it to take up more space on mobile */
    width: auto;
    margin: 1rem;
    padding: 12px 18px;
    font-size: 1rem;
    color: #695c34;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease-in-out;
}

/* Medium Screens - Slightly Bigger */
@media (min-width: 768px) {
    .guest-widget {
        max-width: 600px;
        font-size: 1.2rem;
        padding: 15px 22px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }
}

/* Large Screens - Bigger and More Prominent */
@media (min-width: 1024px) {
    .guest-widget {
        max-width: 700px;
        font-size: 1.4rem;
        padding: 18px 26px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    }
}

.guest-images {
    display: flex;
    align-items: center;
}

.guest-images img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff8e6;
    margin-left: -12px;
    transition: transform 0.3s ease;
}

.guest-images img:first-child { margin-left: 0; }
.guest-images img:hover { transform: scale(1.1); }

.guest-text {
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

/* Image Slider */
.inhale-image-container {
    width: 100vw;
    overflow: hidden;
}

.image-slider {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
    width: max-content;
    animation: scrollGallery 15s linear infinite;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.image-slider img {
    width: 400px;
    border-radius: 15px;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .inhale-title { font-size: 1.6rem; }
    /* .guest-text { font-size: 0.65rem; } */
    .image-slider img { width: 300px; }
}

@media (max-width: 768px) {
    .image-slider img { width: 250px; }
    .guest-widget { width: 90%; font-size: 0.75rem; }
}
