/* Basic Style Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background: #f4f4f4;
    line-height: 1.6;
}

/* Container */
.container {
    width: 85%;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
}

/* Header */
header {
    background: #000;
    color: #fff;
    padding: 1em 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 1.5em;
    font-weight: bold;
}

header nav {
    display: flex;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
}

header nav ul li a:hover {
    text-decoration: underline;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
}

.menu-toggle .menu-icon,
.menu-toggle .menu-icon::before,
.menu-toggle .menu-icon::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s;
    position: absolute;
}

.menu-toggle .menu-icon {
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle .menu-icon::before {
    top: -10px;
}

.menu-toggle .menu-icon::after {
    top: 10px;
}

.menu-toggle.open .menu-icon {
    background: transparent;
}

.menu-toggle.open .menu-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.open .menu-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

.menu-toggle.open .menu-icon {
    visibility: visible;
}

.menu-toggle.open .menu-icon::before,
.menu-toggle.open .menu-icon::after {
    background: #fff;
}


/* 배너 블러 처리 */
#main-banner.loading video {
    filter: blur(10px);
}

/* 배너 로딩 중일 때 로딩 이미지 표시 */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(133, 133, 133, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#loading-overlay img {
    width: 90px; /* 로딩 이미지 크기 조정 */
}

/* 로딩 중 페이지 스크롤 방지 */
body.loading {
    overflow: hidden;


}
@media (max-width: 600px) {

    #loading-overlay img {
    width: 60px; /* 로딩 이미지 크기 조정 */
}

}

/* Main Banner Section */
#main-banner {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#main-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

#main-banner .banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em; /* Add gap to create space between elements */
    padding: 1em; /* Add padding for better spacing */
}

#main-banner .banner-content h1,
#main-banner .banner-content p {
    background: rgba(0, 0, 0, 0.5);
    display: inline-block;
    padding: 0.5em 1em;
    margin: 0; /* Ensure no extra margin */
}

#main-banner .banner-content h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

#main-banner .banner-content p {
    font-size: 1.5em;
    margin-bottom: 1em;
}

#main-banner .btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

#main-banner .btn-container .btn {
    padding: 0.75em 2em;
    background: #ff6f61;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
}

#main-banner .btn-container .btn:hover {
    background: #ff4f41;
}

/* Mobile-specific adjustments */
@media (max-width: 600px) {
    #main-banner .banner-content h1 {
        font-size: 2em; /* Adjust font size for mobile */
    }

    #main-banner .banner-content p {
        font-size: 1em; /* Adjust font size for mobile */
    }

    #main-banner .btn-container .btn {
        font-size: 1em; /* Adjust button font size for mobile */
        padding: 0.5em 1.5em; /* Adjust button padding for mobile */
    }
}



/* Other Sections Matching Main Banner Height */
section {
    height: 100vh; /* Each section takes up the full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Special Handling for Contact Section */
#contact {
    height: auto; /* Contact section can have its own height */
    padding: 5em 0;
}


/*------------------------*/

.banner-content {
    z-index: 1;
    max-width: 80%;
    text-align: center;
}

.banner-content h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
    background: rgba(0, 0, 0, 0.5);
    display: inline-block;
    padding: 0.5em 1em;
}

.banner-content p {
    font-size: 1.5em;
    margin-bottom: 1em;
    background: rgba(0, 0, 0, 0.5);
    display: inline-block;
    padding: 0.5em 1em;
}

.banner-content .btn {
    padding: 0.75em 2em;
    background: #e60012;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
}

.banner-content .btn:hover {
    background: #c20010;
}




/* Section Styles */
/* General section styling */
section {
    padding: 5em 0;
    background: #fff;
    text-align: center;
    scroll-snap-align: center; /* Optional: for scroll snapping in supported browsers */
    scroll-margin-top: 50vh; /* Adjust based on your layout */
}


section h2 {
    font-size: 2.5em;
    margin-bottom: 1em;
}

section p {
    font-size: 1.2em;
    margin-bottom: 1em;
}

/* Activity List */
.activity-list-scrollable {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
}

.activity-item {
    flex: 1;
    min-width: 300px;
    background: #f4f4f4;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.activity-item h3 {
    font-size: 1.8em;
    margin-bottom: 0.5em;
}

.activity-item p {
    font-size: 1em;
}

.activity-item video {
    width: 100%;
    margin-top: 1em;
    border-radius: 10px;
}

/* Activity Section Styles */
.activity-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden; /* Ensure the container does not overflow */
}

.activity-list-scrollable {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px; /* Adjust padding to prevent clipping on the sides */
    align-items: stretch; /* Ensures all activity items are of equal height */
    box-sizing: border-box; /* Include padding in the element's width/height */
}

.activity-item {
    flex: 0 0 auto;
    width: calc(50% - 20px); /* Adjust width based on padding to prevent overflow */
    margin: 0 10px; /* Center items and prevent cutting off */
    background: #f4f4f4;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.activity-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.activity-nav.prev-activity {
    left: 10px;
}

.activity-nav.next-activity {
    right: 10px;
}

@media (max-width: 768px) {
    .activity-item {
        width: calc(100% - 20px); /* Full width for mobile, with padding adjustment */
        margin: 0 10px;
    }

    .activity-wrapper {
        padding: 0 10px; /* Adjust for mobile view */
    }

    .activity-nav {
        font-size: 1.5rem;
    }
}





/* 갤러리 그리드 설정*/

/* Gallery Section */
.gallery-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    width: 100%;
}

.gallery-item {
    scroll-snap-align: start;
    flex: 0 0 auto;
    width: 300px; /* Adjust width as needed */
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center; /* Center the image vertically */
}

.gallery-item img {
    width: 100%;
    height: auto;
    max-height: 100%; /* Ensure images do not exceed container height */
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.gallery-nav.prev {
    left: 10px;
}

.gallery-nav.next {
    right: 10px;
}

/* 이미지 다운로드 방지 Disable user actions like dragging and selecting for images */
img {
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    user-select: none;
}



/* 갤러리 이미지 확대css */
/* Ensures a smooth transition when images are scaled */
.gallery-item img {
    transition: transform 0.3s ease-in-out;
}

/* Scales the image up when hovered over */
.gallery-item img:hover {
    transform: scale(1.5); /* Adjust the scale as necessary */
    z-index: 10; /* Ensures the image stays above other content */
}

/* Rental Section Styling */
/* #rental {
    padding: 50px 0;
    scroll-snap-align: none; /* 기존의 center 대신 none */
    /* background-color: #f9f9f9;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
} */

#rental {
    height: auto; /* Let the height adjust automatically based on content */
    min-height: unset; /* Remove any minimum height constraint */
    box-sizing: border-box; /* Ensure padding and border are included in the size calculation */
    overflow: visible; /* Ensure any overflowing content is visible */
}

#rental-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#rental-form label {
    margin-top: 10px;
    display: block;
    font-weight: bold;
    color: #333;
}

#rental-form input,
#rental-form select,
#rental-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

#rental-form input[type="date"] {
    width: 48%;
    display: inline-block;
}

#rental-form input[type="date"]:first-child {
    margin-right: 4%;
}

#rental-form textarea {
    resize: vertical;
}

#rental-form button {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#rental-form button:hover {
    background-color: #0056b3;
}

/* Additional styling */
#rental-form input[type="text"],
#rental-form input[type="number"],
#rental-form select {
    transition: border-color 0.3s;
}

#rental-form input[type="text"]:focus,
#rental-form input[type="number"]:focus,
#rental-form select:focus,
#rental-form textarea:focus {
    border-color: #007BFF;
    outline: none;
}

/* #rental-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="gray"><polygon points="0,0 20,0 10,10"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    padding-right: 30px;
} */



/* Contact Form */
/* #contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f4f4f4;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
} */

/* 위에있는 것은 옛날 배경, 칙칙해서 변경 */

#contact-form {
    max-width: 600px;
        margin: 0 auto;
        padding: 20px;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

#contact-form input, #contact-form textarea, #contact-form select {
    width: 100%;
    padding: 1em;
    margin-bottom: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contact-form fieldset {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 1em;
    margin-bottom: 1em;
}

#contact-form legend {
    padding: 0 10px;
    font-weight: bold;
}

/* Main Contact Form Button */
#contact-form .submit-btn {
    width: 100%;
    padding: 1em;
    background: #e60012;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
}

#contact-form .submit-btn:hover {
    background: #c20010;
}

/* Interests Group */
.interests-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1em;
}

.interest-btn {
    background-color: #f0f0f0; /* Light grey background for default state */
    border: 1px solid #ccc; /* Light grey border */
    color: #333; /* Dark text */
    padding: 8px 16px;
    margin: 5px;
    cursor: pointer;
    flex: 1 0 calc(50% - 20px); /* Two columns */
    text-align: center;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
    font-size: 0.9em; /* Smaller font size */
}

.interest-btn.selected {
    background-color: #333; /* Dark background for selected state */
    color: #fff; /* White text for selected state */
}

.other-container {
    margin-top: 10px;
}

.other-container input {
    margin-top: 10px;
    width: calc(100% - 20px);
    padding: 10px;
    margin-left: 5px;
}


/* Interests Group */
.interests-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1em;
}

.interest-btn {
    background-color: #f0f0f0; /* Light grey background for default state */
    border: 1px solid #ccc; /* Light grey border */
    color: #333; /* Dark text */
    padding: 8px 16px;
    margin: 5px;
    cursor: pointer;
    flex: 1 0 calc(50% - 20px); /* Two columns */
    text-align: center;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
    font-size: 0.9em; /* Smaller font size */
}

.interest-btn.selected {
    background-color: #333; /* Dark background for selected state */
    color: #fff; /* White text for selected state */
}

.other-container {
    margin-top: 10px;
}

.other-container input {
    margin-top: 10px;
    width: calc(100% - 20px);
    padding: 10px;
    margin-left: 5px;
}



/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 1em 0;
    text-align: center;  /* Ensure text within footer is centered */
    display: flex;  /* Use flexbox for alignment */
    flex-direction: column;  /* Align content vertically */
    align-items: center;  /* Center items horizontally */
    justify-content: center;  /* Center items vertically */
}

footer .social-links {
    display: flex;  /* Flexbox for horizontal alignment of social links */
    justify-content: center;  /* Center the social links horizontally */
    align-items: center;  /* Center the social links vertically */
}

footer .social-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

footer .social-links a:hover {
    text-decoration: underline;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    transition: background 0.3s ease;
}



/* Social Media Section */
#social-media {
    padding: 5em 0;
    background: #fff;
    text-align: center;  /* Center the text and social icons within the section */
}

#social-media .social-icons {
    display: flex;
    justify-content: center;  /* Center the icons horizontally */
    flex-wrap: wrap;  /* Allow icons to wrap to the next line if needed */
    gap: 20px;  /* Space between icons */
    margin-top: 2em;  /* Space above the icons */
}

#social-media .social-icons a {
    display: flex;
    flex-direction: column;  /* Arrange icon and text vertically */
    align-items: center;  /* Center icon and text horizontally */
    color: #333;  /* Link color */
    text-decoration: none;  /* Remove underline */
    margin: 1em;  /* Margin around the link */
}

#social-media .social-icons a img {
    width: 64px;  /* Width of the icon */
    height: 64px;  /* Height of the icon */
    margin-bottom: 0.5em;  /* Space between icon and text */
    object-fit: contain;  /* Ensure the icon maintains its aspect ratio */
}

#social-media .social-icons a span {
    display: block;  /* Ensure text is displayed as a block */
    text-align: center;  /* Center text horizontally under the icon */
    font-weight: 600;  /* Make the text slightly bolder 추가수정함 */
}





/* Other Container */
.other-container {
    display: flex;
    align-items: center; /* Align items in a single line */
    background: #f4f4f4;
    padding: 0.5em 1em;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
    margin-top: 10px;
    width: 100%;
}

.other-container label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    white-space: nowrap;
}

.other-container input[type="text"] {
    margin-left: 0.5em;
    padding: 0.5em;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 200px; /* Same width as other labels */
    box-sizing: border-box;
    font-size: 1em;
}


/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Dark semi-transparent background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

/* Popup Content */
.popup-content {
    background: #fff;
    padding: 2em;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); /* Slight shadow for depth */
    max-width: 500px;
    width: 90%;
}

.popup-content h2 {
    margin-bottom: 1em;
    font-size: 1.5em;
    color: #e60012; /* Bright red for attention */
}

.popup-content p {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 1.5em;
}

/* Close Button */
.popup-btn {
    background-color: #e60012;
    color: #fff;
    padding: 0.75em 2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.3s ease;
}

.popup-btn:hover {
    background-color: #c20010;
}

/* Optional: Hide popup initially */
#popup {
    display: none;
}

/* Popup Options */
.popup-options {
    margin: 1em 0;
    font-size: 0.9em;
    color: #333;
    text-align: left;
}

.popup-options input[type="checkbox"] {
    margin-right: 0.5em;
    transform: scale(1.2); /* Increase checkbox size for better usability */
}


/* Floating arrow button */
/* Floating arrow button */
.floating-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.arrow-btn {
    font-size: 24px;
    background: #333;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-buttons.show {
    opacity: 1;
    transform: translateY(-70px);
    pointer-events: auto;
}

.menu-btn {
    width: 50px;
    height: 50px;
    background-color: #fff;
    color: #333;
    border: 2px solid #333;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.menu-btn img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    pointer-events: none; /* 이미지가 클릭되지 않도록 설정 */
}

.menu-btn:hover {
    background-color: #333;
    color: #fff;
}

.menu-btn:hover img {
    filter: brightness(0) invert(1); /* Hover 시 이미지 색 반전 */
}

/* Text labels for buttons */
.menu-btn span {
    position: absolute;
    right: 60px; /* 텍스트 박스가 버튼 바로 오른쪽에 붙도록 위치 조정 */
    white-space: nowrap;
    color: #333;
    background: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    border: 2px solid #333;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease; /* 슬라이드 효과를 위한 transition 추가 */
    font-size: 14px;
    transform: translateX(10px); /* 초기 위치를 오른쪽으로 살짝 이동 */
    pointer-events: none; /* 텍스트 박스에 클릭 이벤트 비활성화 */
}

.menu-buttons.show .menu-btn span {
    display: block;
}

.menu-btn:hover span {
    opacity: 1;
    transform: translateX(0); /* 슬라이드하여 제자리로 이동 */
}

/* Rotate the arrow when active */
.arrow-btn.active {
    transform: rotate(180deg);
}



/* QR Code Modal */
body.blur {
    overflow: hidden; /* Prevent scrolling when modal is active */
}

.qr-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.8); /* Dark overlay */
    z-index: 2000;
}

.qr-modal.show {
    display: flex; /* Show the modal */
}

.qr-content {
    position: relative;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    z-index: 1001;
    background: linear-gradient(45deg, rgba(255, 255, 153, 0.9), rgba(204, 229, 255, 0.9), rgba(255, 204, 255, 0.9));
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.qr-content img {
    width: 200px;
    height: 200px;
}

.qr-content .menu-btn {
    width: 150px;
    height: 50px;
    background-color: #333;
    color: #fff;
    border: 2px solid #333;
    border-radius: 10px;
    cursor: pointer;
    display: block;
    margin: 20px auto 0 auto; /* Adjust margin to maintain the gap */
    transition: background-color 0.3s, color 0.3s;
}

.qr-content .menu-btn:hover {
    background-color: #fff;
    color: #333;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .arrow-btn, .menu-btn {
        width: 40px;
        height: 40px;
    }

    .menu-btn img {
        width: 20px;
        height: 20px;
    }

    .menu-btn span {
        font-size: 12px;
    }

    .qr-content img {
        max-height: 200px;
    }
}




/* Mobile Navigation */
@media (max-width: 768px) {
    header nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #000;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
    }

    header nav ul {
        flex-direction: column;
        gap: 10px;
    }

    header nav.open {
        height: 33vh; /* One-third of the viewport height */
    }

    .menu-toggle {
        display: flex;
    }
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
    .activity-item {
        min-width: 90%;
    }
}

/* General Mobile Adjustments */
@media (max-width: 768px) {
    body {
        font-size: 14px; /* Slightly smaller font size */
    }

    /* Container Adjustments */
    .container {
        width: 95%; /* Increase width to reduce padding on the sides */
    }

    /* Header */
    header .logo {
        font-size: 1.2em; /* Smaller logo text */
    }

    /* Adjust section padding and text alignment */
    section {
        padding: 3em 0; /* Reduce padding for smaller screens */
    }

    section h2 {
        font-size: 2em; /* Reduce the size of section headings */
    }

    section p {
        font-size: 1em; /* Adjust paragraph text size */
    }

    /* Adjust Video Containers */
    .activity-item video {
        width: 100%; /* Ensure full width video on mobile */
        max-height: 50vh; /* Limit height to ensure videos don't overflow */
    }

    /* Gallery Image Container Adjustments */
    .gallery-item {
        width: calc(100% - 20px); /* Full width minus margin */
        margin: 10px 0; /* Vertical margin */
    }

    .gallery-item img {
        object-fit: contain; /* Ensure images fit well within their containers */
    }

    /* Interest Buttons (for form) */
    /* .interest-btn {
        flex: 1 0 calc(100% - 20px);
    } */

    /* Social Media Section Adjustments */
    #social-media .social-icons a {
        margin: 0.5em 0; /* Smaller margins for vertical alignment */
        font-size: 0.9em; /* Slightly smaller font size */
    }

    #social-media .social-icons a img {
        width: 48px; /* Smaller icon size */
        height: 48px;
        margin-bottom: 0.25em; /* Adjust spacing between icon and text */
    }

    #social-media .social-icons a span {
        font-size: 0.9em; /* Smaller text below the icons */
    }

    /* Gallery and Activity Navigation Buttons */
    .gallery-nav, .activity-nav {
        padding: 5px 10px; /* Smaller buttons for mobile */
        font-size: 1.2em; /* Reduce font size for icons or text */
        width: 30px; /* Adjust width for better usability */
        height: 30px; /* Adjust height for better usability */
    }

    /* Footer Adjustments */
    footer {
        padding: 2em 0; /* Reduce footer padding */
    }
}
