:root {
    /* Colors */
    --main-pink: #FF9EBB;
    --sub-blue: #A0D8EF;
    --sub-green: #A9DF85;
    --text-color: #5c4d4d;
    --bg-color: #FFFDFD;
    --white: #ffffff;
    
    /* Layout */
    --max-width: 1100px;
    --border-radius: 16px;
    --box-shadow: 0 4px 15px rgba(255, 158, 187, 0.15);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--main-pink);
    font-weight: 700;
}

/* Utility Classes */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 60px 0;
}

.small-text {
    font-size: 0.8rem;
    font-weight: normal;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.btn-primary {
    background-color: var(--main-pink);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #ff85a8;
}

/* ==================
   Header Styles
   ================== */
.site-header {
    background-color: var(--white);
    /* box-shadowは .global-nav の方で出します */
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.site-logo-img {
    height: 55px;
    width: auto;
    display: block;
}

.logo-area a {
    display: flex;
    align-items: center;
}

.contact-cards {
    display: flex;
    gap: 15px;
}

.contact-card {
    background: var(--white);
    border: 2px solid;
    border-radius: var(--border-radius);
    padding: 10px 15px;
    text-align: center;
    font-size: 0.9rem;
}

.contact-card.border-pink { border-color: var(--main-pink); }
.contact-card.border-blue { border-color: var(--sub-blue); }
.contact-card.border-green { border-color: var(--sub-green); }

.contact-card h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.contact-card h3 .small-text {
    font-size: 1rem;
    font-weight: 500;
}

.tel-link {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--main-pink);
    display: inline-block;
}
.border-blue .tel-link { color: var(--sub-blue); }
.border-green .tel-link { color: var(--sub-green); }

.reception-time {
    font-size: 0.8rem;
    color: #888;
}

/* Global Navigation */
.global-nav {
    background-color: var(--main-pink);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    width: 100%;
}

.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    max-width: var(--max-width);
    margin: 0 auto;
    flex-wrap: wrap;
}

.nav-list li a {
    display: block;
    color: var(--white);
    padding: 15px 20px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.nav-list li a i {
    margin-right: 5px;
}

.nav-list li a:hover {
    background-color: rgba(255,255,255,0.2);
}

/* Hamburger Menu (SP setup) */
.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background-color: var(--main-pink);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 15px;
    right: 20px;
}

.menu-toggle.is-open {
    background-color: #d32f2f; /* Darker or different color when open */
}

.menu-toggle .menu-text {
    display: inline;
}

/* ==================
   Footer Styles
   ================== */
.site-footer {
    background-color: var(--white);
    text-align: center;
    border-top: 5px solid var(--sub-blue);
    position: relative;
    padding-top: 40px;
}

.footer-heading {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--sub-blue);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.footer-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.footer-card {
    border: 3px solid;
    border-radius: var(--border-radius);
    padding: 20px;
    background: var(--white);
    box-shadow: var(--box-shadow);
}

.footer-card.border-pink { border-color: var(--main-pink); }
.footer-card.border-blue { border-color: var(--sub-blue); }
.footer-card.border-green { border-color: var(--sub-green); }

.footer-card h3 {
    margin-bottom: 10px;
    color: var(--text-color);
}

.footer-card h3 .small-text {
    font-size: 1.1rem;
    font-weight: 500;
}
.footer-card p {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.footer-contact-area {
    margin: 40px 0;
    padding: 30px;
    background-color: #fce4ec; /* light pink */
    border-radius: var(--border-radius);
}

.footer-contact-area p {
    font-weight: bold;
    color: var(--main-pink);
    margin-bottom: 15px;
}

.btn-contact {
    font-size: 1.2rem;
    padding: 15px 40px;
}

.footer-bottom {
    background-color: var(--main-pink);
    color: var(--white);
    padding: 20px 0;
}

/* Page Top Button */
.page-top-btn {
    position: fixed;
    right: 20px;
    bottom: -100px;
    width: 80px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 999;
}

.page-top-btn.is-active {
    bottom: 20px;
    opacity: 1;
}

.page-top-btn:hover {
    transform: translateY(-5px);
    opacity: 1;
}


/* ==================
   Top Page Styles
   ================== */
/* Slideshow */
.top-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 300px;
    overflow: hidden;
    margin-bottom: 40px;
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slideshow img.active {
    opacity: 1;
}

/* Slideshow Controls */
.slide-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    color: var(--main-pink);
    cursor: pointer;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.slide-control:hover {
    background: rgba(255, 255, 255, 0.9);
}

.slide-control.prev {
    left: 20px;
}

.slide-control.next {
    right: 20px;
}

.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.indicator.active {
    background: var(--white);
    transform: scale(1.2);
}

.hero-slogan {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 1200px;
    z-index: 10;
    pointer-events: none;
}

.hero-slogan img {
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

/* Intro Text */
.intro-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}
.intro-text {
    width: 100%;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}
.intro-image {
    width: 100%;
    max-width: 800px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Quick Navigation */
.quick-nav-section {
    margin-bottom: 60px;
    padding: 0 15px; /* optional buffer */
}
.quick-nav-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.quick-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    min-width: 200px;
}
.quick-nav-facility {
    background-color: var(--sub-green);
}
.quick-nav-facility:hover {
    background-color: #7ab95e; /* slightly darker green */
}
.quick-nav-news {
    background-color: #FFB300; /* nice warm yellow/orange */
}
.quick-nav-news:hover {
    background-color: #F39C12;
}
.quick-nav-ig {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.quick-nav-ig:hover {
    filter: brightness(1.1);
}
.quick-nav-contact {
    background-color: var(--sub-blue);
}
.quick-nav-contact:hover {
    background-color: #5bb2e6; /* slightly darker blue */
}
.quick-nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Facility Grid */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.facility-link img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
    width: 100%;
}
.facility-link:hover img {
    transform: translateY(-5px);
}

/* News Section */
.news-section {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 60px;
}
.news-list {
    list-style: none;
    margin-top: 20px;
}
.news-item {
    border-bottom: 1px dashed #ccc;
    padding: 15px 0;
    display: flex;
    gap: 20px;
}
.news-date {
    font-weight: bold;
    color: var(--sub-blue);
    min-width: 100px;
}
.news-title {
    color: var(--text-color);
}

/* Extra Section */
.extra-section {
    text-align: center;
    margin-bottom: 60px;
}
.extra-slogan {
    width: 100%;
    margin: 0 auto 30px;
}

/* Instagram Section */
.instagram-section h2 {
    text-align: center;
    margin-bottom: 30px;
}
.ig-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.ig-block {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.ig-block h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    text-align: center;
}
.ig-btn-wrapper {
    margin-top: auto !important;
}

/* ==================
   About Page Styles
   ================== */
.page-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--main-pink);
    margin: 40px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--sub-blue);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title img {
    height: 40px;
}

/* Philosophy Section */
.philosophy-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.philosophy-images img {
    max-width: 30%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Policy Section */
.policy-box {
    display: flex;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
    align-items: stretch;
}
.policy-box:nth-child(even) {
    flex-direction: row-reverse;
}
.policy-text {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.policy-text h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--main-pink);
    border-bottom: 2px dashed var(--main-pink);
    padding-bottom: 10px;
    display: inline-block;
}
.policy-img {
    flex: 1;
}
.policy-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Flow Section */
.flow-step-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.flow-step {
    background: var(--white);
    border: 3px solid var(--sub-green);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(169,223,133,0.3);
}
.flow-step h4 {
    color: var(--sub-green);
    font-size: 1.4rem;
    margin-bottom: 15px;
}
.flow-arrow {
    text-align: center;
    margin-bottom: 20px;
}

/* Marquee Slideshow */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: #fffafa;
    padding: 40px 0;
    margin-top: 60px;
}
.marquee-inner {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}
.marquee-inner img {
    height: 250px;
    width: auto;
    margin-right: 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==================
   Facility Page Styles
   ================== */
.facility-hero {
    text-align: center;
    margin-bottom: 40px;
}
.facility-hero img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 100%;
}
.service-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.service-item {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    border-top: 5px solid var(--sub-blue);
}
.service-item.komono-style { border-top-color: var(--main-pink); }
.service-item.yokkaichi-style { border-top-color: var(--sub-blue); }
.service-item.kawagoe-style { border-top-color: var(--sub-green); }

.service-item h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-color);
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}
.service-content {
    display: flex;
    gap: 20px;
}
.service-text {
    flex: 1;
}
.service-photos {
    flex: 1;
    display: flex;
    gap: 10px;
}
.service-photos img {
    width: 50%;
    object-fit: cover;
    border-radius: 10px;
}
.schedule-img {
    text-align: center;
    margin: 40px 0;
}
.schedule-img img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
.calendar-wrapper {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 60px;
}
.calendar-event {
    border-bottom: 1px dashed #ccc;
    padding: 10px 0;
}
.calendar-date {
    font-weight: bold;
    color: var(--main-pink);
    margin-right: 15px;
}

/* ==================
   Moe & Company Styles
   ================== */
.moe-hero {
    text-align: center;
    margin-bottom: 20px;
}
.moe-hero img {
    border-radius: var(--border-radius);
    max-width: 100%;
    box-shadow: var(--box-shadow);
}
.moe-intro-box {
    background: #fffafa;
    border: 2px dashed var(--main-pink);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}
.feature-list {
    list-style: none;
    margin-bottom: 40px;
}
.feature-list li {
    background: var(--white);
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid var(--sub-green);
    border-radius: 4px var(--border-radius) var(--border-radius) 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.capacity-box {
    margin-bottom: 30px;
}
.capacity-box h4 {
    color: var(--sub-blue);
    font-size: 1.2rem;
    margin-bottom: 10px;
    border-left: 4px solid var(--sub-blue);
    padding-left: 10px;
}

/* Tables */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background: var(--white);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}
.info-table th, .info-table td {
    padding: 15px;
    border: 1px solid #eee;
}
.info-table th {
    background-color: #fce4ec;
    color: var(--text-color);
    width: 30%;
    text-align: left;
}

/* Photo Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.photo-item {
    text-align: center;
}
.photo-item img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 10px;
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}
.photo-item img:hover {
    transform: scale(1.03);
}
.photo-item p {
    font-weight: bold;
    color: var(--main-pink);
}

/* Company */
.greeting-section {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}
.ceo-photo {
    flex: 0 0 320px;
}
.ceo-photo img {
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    max-width: 100%;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.ceo-profile {
    text-align: left;
    background: #fffafa;
    padding: 20px;
    border-radius: 10px;
    font-size: 0.95rem;
}
.greeting-text {
    flex: 1;
    line-height: 1.8;
}
.pdf-list {
    list-style: none;
    margin-bottom: 60px;
}
.pdf-list li {
    margin-bottom: 15px;
}
.pdf-list a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d32f2f;
    font-weight: bold;
    text-decoration: none;
    background: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.pdf-list a:hover {
    background: #fce4ec;
}

/* ==================
   Recruit & Contact Styles
   ================== */
.recruit-hero {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-image: url('../images/recruit1.png');
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
}
.recruit-hero img {
    max-width: 80%;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}
.desired-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.desired-box {
    background: var(--white);
    color: var(--text-color);
    padding: 30px;
    border: 3px solid var(--main-pink);
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: var(--box-shadow);
}
.requirements {
    margin-bottom: 60px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
.req-item {
    margin-bottom: 25px;
}
.req-title {
    background: #fce4ec;
    color: var(--main-pink);
    padding: 10px 20px;
    font-weight: bold;
    border-left: 5px solid var(--main-pink);
    display: inline-block;
    margin-bottom: 10px;
    border-radius: 0 20px 20px 0;
}
.req-content {
    padding-left: 20px;
}
.req-list {
    list-style: none;
}
.req-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
}
.req-list li::before {
    content: "■";
    color: var(--main-pink);
    position: absolute;
    left: 0;
}

/* Forms */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin: 0 auto 60px;
}
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--text-color);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}
.form-group textarea {
    height: 150px;
    resize: vertical;
}
.submit-btn {
    width: 100%;
    border: none;
    font-size: 1.2rem;
}

/* ==================
   Responsive Styles
   ================== */
@media (max-width: 900px) {
    .contact-cards {
        display: none; /* Hide top contact cards on small screens to save space */
    }
    
    .menu-toggle {
        display: flex;
    }
    .service-content {
        flex-direction: column;
    }
    .service-photos {
        flex-direction: column;
    }
    .service-photos img {
        width: 100%;
    }

    .header-top {
        padding: 15px 20px;
    }
    
    .site-logo-img {
        height: 40px;
    }

    .global-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 253, 253, 0.98);
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .global-nav.is-open {
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        width: 80%;
        text-align: center;
        padding-top: 60px; /* Space for close button basically */
    }

    .nav-list li a {
        color: var(--text-color);
        font-size: 1.2rem;
        padding: 15px;
        border-bottom: 1px dashed var(--main-pink);
    }

    .nav-list li a:hover {
        background-color: rgba(255, 158, 187, 0.1);
    }

    /* Menu Toggle Animation */
    .menu-toggle.is-open .menu-text::before {
        content: "閉じる";
    }
    .menu-toggle.is-open .menu-text {
        font-size: 0; /* Hide original text visually but keep structure */
    }
    .menu-toggle.is-open .menu-text::before {
        font-size: 1.1rem; /* Show new text */
    }
    
    .ig-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-images {
        flex-direction: column;
        align-items: center;
    }
    .philosophy-images img {
        max-width: 80%;
    }
    .policy-box {
        flex-direction: column !important;
    }
    .greeting-section {
        flex-direction: column;
        text-align: center;
    }
    .greeting-section .ceo-profile {
        text-align: left;
    }
    .marquee-inner img {
        height: 180px;
    }
    
    .footer-cards {
        grid-template-columns: 1fr;
    }
    
    .page-top-btn {
        width: 60px;
    }

    /* Top Slideshow adjustments for mobile */
    .top-hero {
        height: auto;
        aspect-ratio: 16 / 9; /* Ensure the image fits nicely based on browser width */
        min-height: 200px;
    }
    .slideshow img {
        object-fit: contain; /* Make sure the entire image is visible without cropping */
        background-color: #fce4ec; /* Fill empty space with a nice background if needed */
    }
    .slide-control {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .slide-control.prev {
        left: 10px;
    }
    .slide-control.next {
        right: 10px;
    }
    .indicator {
        width: 10px;
        height: 10px;
    }
    .ig-grid {
        grid-template-columns: 1fr;
    }
}
