/* Global Styles & Resets */
html {
    scroll-behavior: smooth; /* Smooth scrolling for anchor links */
}

body {
    background-color: #FF0004; /* EXACT original body background color */
    padding: 0;
    margin: 0;
    font-family: "Josefin Sans", sans-serif;
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    color: #e0e0e0; /* Default text color for general content */
}

/* --- Navigation Bar --- */
.main-header {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent dark background */
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: sticky; /* Makes the header stick to the top */
    top: 0;
    z-index: 1000; /* Ensure it's above other content */
}

.navbar {
    display: flex; /* Desktop navigation */
    justify-content: space-around; /* Distribute links evenly */
    align-items: center;
    max-width: 1200px; /* Limit width for desktop */
    width: 90%; /* From original nav */
    margin: 30px auto; /* From original nav */
    padding: 0; /* Override default padding */
    border: 1px solid white; /* Border from original nav */
    border-radius: 80px; /* Rounded corners */
    font-size: 150%; /* From original nav */
    font-family: "Kodchasan", sans-serif; /* From original nav */
}

.nav-link {
    padding: 1rem; /* From original nav */
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
    text-transform: uppercase; /* Ensure consistency */
    letter-spacing: 0.05em; /* Ensure consistency */
}

.nav-link:hover {
    color: black; /* Text color changes to black on hover */
}

/* Hamburger menu for mobile (initially hidden) */
.hamburger-menu {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.8em;
    cursor: pointer;
    padding: 10px;
    z-index: 1001; /* Ensure it's above other elements */
}

/* Mobile Menu (initially hidden, slides down) */
.mobile-menu {
    display: none; /* Hidden by default */
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.9); /* Darker background for mobile menu */
    position: fixed; /* Use fixed for full viewport overlay */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Full height overlay */
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    transform: translateX(-100%); /* Start off-screen */
    transition: transform 0.3s ease-in-out;
    z-index: 999;
    justify-content: center; /* Center links vertically */
    align-items: center; /* Center links horizontally */
}

.mobile-menu.active {
    transform: translateX(0); /* Slide in when active */
    display: flex; /* Show when active */
}

.mobile-nav-link {
    font-family: 'Kodchasan', sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2em; /* Slightly larger for mobile menu */
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 80%; /* Make links wider for touch targets */
}

.mobile-nav-link:last-child {
    border-bottom: none; /* No border for the last link */
}

.mobile-nav-link:hover {
    background-color: rgba(160, 0, 0, 0.3); /* Red tint on hover */
    color: #a00000;
}

/* Main Content Area Styling */
.main-content-area {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1; /* Allows it to take up available vertical space */
}

/* --- Home Section (Original main-page, space, about-page text, blu-ray, button, blank-space) --- */
.home-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.home-main-page-content {
    width: 100%;
    height: 130vh; /* Original height */
    background-color: black;
    background-image: url("Images/Screenshot 2025-07-27 073022.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-space-section {
    width: 100%;
    height: 10vh; /* Original height */
    background-color: black;
    background-image: url("Images/Screenshot 2025-07-27 073308.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.home-about-text-section {
    width: 100%;
    height: 130vh; /* Original height */
    background-color: black; /* Original background color */
    background-image: url("images/Screenshot 2025-07-27 074017.png"); /* Original background image */
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: row; /* Original flex-direction */
    /* Adjusted alignment to push content to the bottom-right area */
    align-items: flex-end; /* Aligns items to the bottom of the container */
    justify-content: flex-end; /* Aligns items to the right of the container */
    padding: 0 20px; /* Add padding to prevent text touching edges */
    box-sizing: border-box;
}

.about-text-wrapper-home { /* Specific wrapper for text on home page */
    width: 45%; /* Original width */
    /* Removed margin-left: auto; as justify-content handles horizontal alignment */
    margin-right: 0;
    padding: 25px; /* Original padding */
    background-color: transparent; /* Added slight background for readability */
    border: 1px solid transparent;
    border-radius: 8px; /* Added rounded corners */
}

.about-text-wrapper-home h3 {
    text-align: justify;
    font-size: 1em; /* Original font size */
    color: white;
    margin-bottom: 1.5em;
    line-height: 1.7;
    font-weight: normal;
}

.home-blu-ray-section {
    width: 100%;
    height: 150vh; /* Original height */
    background-color: black;
    background-image: url("images/Screenshot 2025-07-27 074846.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    padding: 20px;
    box-sizing: border-box;
}

.blu-ray-button-container {
    text-align: center;
    padding: 30px 0;
    margin-top: 30px; /* Original margin-top */
    margin-bottom: 50px; /* Original margin-bottom */
}

.blu-ray-button {
    font-family: "League Gothic", sans-serif;
    padding: 20px 50px;
    font-size: 100px; /* Large font size */
    font-weight: 200;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid red;
    border-radius: 100px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    color: red;
    background-image: linear-gradient(to right, #fff 50%, #000 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    transition: background-position 0.4s ease-in-out, color 0.4s ease-in-out, transform 0.3s ease-in-out;
}

.blu-ray-button:hover {
    color: #000;
    background-position: 0 0;
    transform: scale(1.05);
}

.home-blank-space-section {
    height: 20vh; /* Original height */
    background-color: red; /* Original background color */
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
    padding: 0;
}


/* --- Abouts Section (Original red-space, about-page, black-space, slideshow) --- */
.abouts-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.abouts-red-space-content {
    height: 30vh; /* Original height */
    background-color: black;
    background-image: url("images/Screenshot 2025-07-27 080810.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    margin: 0;
    padding: 0;
}

.abouts-main-about-content {
    height: 150vh; /* Original height */
    background-color: black;
    background-image: url("images/Screenshot 2025-07-27 074017.png"); /* This is the same as home-about-text-section background */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: row; /* Original flex-direction */
    /* Adjusted alignment to push content to the bottom-right area */
    align-items: flex-end; /* Aligns items to the bottom of the container */
    justify-content: flex-end; /* Aligns items to the right of the container */
    padding: 0 20px; /* Add padding to prevent text touching edges */
    box-sizing: border-box;
    width: 100%;
    margin: 0;
}

.about-text-wrapper-abouts { /* Specific wrapper for text on abouts page */
    width: 45%; /* Original width */
    margin-left: auto; /* Push to the right */
    margin-right: 0;
    padding: 25px; /* Original padding */
    background-color: transparent;
    border: 1px solid transparent;
}

.about-text-wrapper-abouts h3 {
    text-align: justify;
    font-size: 1em;
    color: white;
    margin-bottom: 1.5em;
    line-height: 1.7;
    font-weight: normal;
}

.abouts-black-space-content {
    height: 36vh; /* Original height */
    background-color: black;
    background-image: url("images/Screenshot 2025-07-27 083316.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* --- Slideshow Section within Abouts --- */
.abouts-slideshow-wrapper { /* Renamed for clarity within abouts section */
    background-image: url("Images/Screenshot 2025-07-27 083245.png"); /* Original slideshow background */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: black; /* Original background color */
    color: #fff;
    padding: 50px 20px;
    text-align: center;
    font-family: "League Gothic", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 2.5rem; /* Base font size for this section */
    width: 100%; /* Take full width of parent */
    box-sizing: border-box;
}

.slideshow-header h2 {
    font-size: 2.5em; /* Relative to parent font-size */
    font-weight: bold;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.slideshow-header p {
    font-size: 1.1em;
    margin-top: 10px;
}

.slideshow-container {
    max-width: 600px; /* Max width for the slideshow images */
    position: relative;
    margin: 50px auto;
    overflow: hidden; /* Hides extra slides */
    aspect-ratio: 16 / 9; /* Maintains consistent aspect ratio */
    border: 2px solid white; /* Frame around slideshow */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.slides-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out; /* Animation for sliding */
}

.mySlides {
    flex-shrink: 0; /* Prevents slides from shrinking */
    width: 100%;
    height: 100%;
}

.mySlides img {
    vertical-align: middle;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the area */
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 2em;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: 1px solid transparent /* Semi-transparent background */
}

/* Fix for left arrow positioning */
.prev {
    left: 0; /* Position at the very left edge of the container */
    border-radius: 0 3px 3px 0; /* Keep original border-radius for left arrow */
}

.next {
    right: 0; /* Position at the very right edge of the container */
    border-radius: 3px 0 0 3px; /* Keep original border-radius for right arrow */
}

/* Play button (if it's an overlay for a video) */
.play-button-container {
    margin-top: 20px;
    position: relative; /* For positioning the play button icon */
    display: inline-block; /* To contain the pseudo-element */
}

.play-button {
    display: block;
    width: 80px; /* Size of the play button area */
    height: 80px;
    background-color: #a00000; /* Red background for the play button */
    border-radius: 50%; /* Circular button */
    margin: 0 auto;
    position: relative;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.play-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%; /* Adjust for triangle shape */
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 30px solid white; /* White triangle */
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 0, 0, 1);
}


/* --- Reviews Section --- */
.reviews-section {
    width: 100%;
    padding: 40px 0; /* Vertical padding for the whole section */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: red; /* Background for the reviews section */
}

.reviews-bigtitle-section-bg { /* This div will hold the background image for the title area */
    height: 110vh; /* Original height from reviews.html's review-bigtitle */
    background-color: black;
    background-image: url("images/Screenshot 2025-07-27 101230.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    margin: 0;
    padding: 0;
}

.reviews-header {
    width: 100%;
    text-align: center;
    padding-bottom: 30px; /* Space below header */
}

.reviews-header h1 {
    font-family: 'Jersey 25', cursive;
    font-size: clamp(2.5em, 8vw, 6em);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    padding: 10px 20px;
    border: 2px solid #a00000;
    display: inline-block;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.3);
}

/* Main content wrapper for review blocks */
.reviews-content-wrapper {
    width: 100%;
    max-width: 1200px; /* Max width for content */
    padding: 0 20px; /* Horizontal padding for content */
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    justify-content: center; /* Center flex items within the wrapper */
    gap: 30px; /* Space between flex items */
    box-sizing: border-box;
    margin: 0 auto 40px auto; /* Centered horizontally with bottom margin */
}

/* Styling for individual review blocks */
.review-block {
    background-color: rgba(30, 30, 30, 0.85);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px 30px; /* Vertical and horizontal padding */
    display: flex; /* Use flexbox to arrange content horizontally */
    align-items: center; /* Vertically align items in the center */
    justify-content: space-between; /* Distribute space between items */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    width: 100%; /* Take full width of its container */
    box-sizing: border-box;
}

.review-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

/* Styling for the large initial letters */
.review-initial-left,
.review-initial-right {
    background-color: #a00000; /* Dark red background */
    color: #ffffff;
    font-family: 'League Gothic', sans-serif;
    font-size: 4em; /* Large font size */
    width: 100px; /* Fixed width for the circle */
    height: 100px; /* Fixed height for the circle */
    border-radius: 50%; /* Make it a perfect circle */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0; /* Prevent from shrinking */
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

/* Styling for the main text content of the review */
.review-text-content {
    flex-grow: 1; /* Allow text content to take up available space */
    padding: 0 30px; /* Space between initial letters and text */
    text-align: left; /* Align text to the left */
}

/* Styling for the review title */
.review-title {
    font-family: 'Kodchasan', sans-serif;
    font-size: 1.6em;
    font-weight: 600;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Styling for the review paragraph */
.review-paragraph {
    font-size: 1em;
    line-height: 1.6;
    color: #c0c0c0;
    margin-bottom: 15px;
}

/* Styling for the reviewer information */
.reviewer-info {
    font-size: 0.9em;
    color: #888888;
    font-style: italic;
    text-align: right; /* Align reviewer info to the right */
    margin-top: 10px;
}


/* --- Contacts Section --- */
.contacts-section {
    width: 100%;
    height: 100vh; /* Original height */
    background-image: url("images/Screenshot 2025-07-27 101807.png"); /* Original background */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0 20px; /* Add padding to prevent content touching edges */
}

.contact-content-wrapper {
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.contact-heading {
    font-family: 'Jersey 25', cursive;
    font-size: clamp(3em, 10vw, 7em);
    color: #a00000;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
    line-height: 1;
}

.contact-paragraph {
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(1em, 2.5vw, 1.3em);
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 40px;
    padding: 0 20px;
}

.contact-button {
    font-family: 'Kodchasan', sans-serif;
    font-size: clamp(1.2em, 3vw, 1.8em);
    font-weight: 500;
    color: #ffffff;
    background-color: transparent;
    border: 2px solid #ffffff;
    padding: 15px 40px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-button:hover {
    background-color: #a00000;
    border-color: #a00000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.7), 0 0 30px rgba(255, 0, 0, 0.5);
    transform: translateY(-3px) scale(1.05);
}

/* --- Tour Section --- */
.tour-section {
    width: 100%;
    height: 300vh; /* Original height */
    background-color: black;
    background-image: url("images/Screenshot 2025-07-27 103653.png"); /* Original background */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column; /* Stack content vertically */
    align-items: center;
    justify-content: center; /* Center content vertically */
    box-sizing: border-box;
    padding: 40px 20px; /* Padding for the section */
}

.tour-title {
    font-family: 'Jersey 25', cursive;
    font-size: clamp(2.5em, 8vw, 5em);
    color: #a00000;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
    line-height: 1;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.tour-title::before,
.tour-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 2px;
    background-color: #a00000;
    transition: width 0.3s ease-in-out;
}

.tour-title::before {
    left: 0;
    width: 30%;
}

.tour-title::after {
    right: 0;
    width: 30%;
}

.tour-list {
    width: 100%;
    max-width: 700px; /* Limit width for readability */
    margin-bottom: 40px;
}

.tour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tour-item:last-child {
    border-bottom: none;
}

.tour-date {
    font-family: 'Jersey 25', cursive;
    font-size: 2em;
    font-weight: 400;
    color: #ffffff;
    flex-shrink: 0;
    text-align: left;
    padding-right: 20px;
}

.tour-date.coming-soon {
    color: #888888;
    font-style: italic;
}

.tour-location {
    font-family: 'Jersey 25', cursive;
    font-size: 2em;
    font-weight: 500;
    color: #ffffff;
    text-align: right;
    line-height: 1.4;
}

.rsvp-button {
    font-family: 'Kodchasan', sans-serif;
    font-size: clamp(1.2em, 3vw, 1.8em);
    font-weight: 500;
    color: #ffffff;
    background-color: transparent;
    border: 2px solid #ffffff;
    padding: 15px 40px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 20px;
}

.rsvp-button:hover {
    background-color: #a00000;
    border-color: #a00000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.7), 0 0 30px rgba(255, 0, 0, 0.5);
    transform: translateY(-3px) scale(1.05);
}

/* --- Main Footer --- */
.main-footer {
    background-color: #000;
    color: #fff;
    padding: 50px 20px;
    font-family: "Kodchasan", sans-serif;
    font-weight: 300;
    font-style: normal;
    text-align: center;
    width: 100%; /* Ensure footer spans full width */
    box-sizing: border-box;
    
}

.footer-top-section {

}

.footer-title {
    font-family: "League Gothic", sans-serif;
    font-size: clamp(2.5em, 8vw, 7em); /* Original font size, made responsive */
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2px;
    color: black;
    text-shadow:
        -2px -2px 0 #fff,
         2px -2px 0 #fff,
        -2px  2px 0 #fff,
         2px  2px 0 #fff;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    gap: 30px;
}

.social-icon img {
    width: 110px; /* Original size */
    height: 130px;
    transition: transform 0.3s ease;
}

.social-icon img:hover {
    transform: scale(1.1);
}

.footer-columns-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border-top: 1px solid #333;
    padding-top: 40px;
    margin: 0 auto;
    max-width: 1200px;
}

.footer-column {
    flex: 1;
    min-width: 250px; /* Original min-width */
    margin-bottom: 30px;
    padding: 0 30px;
    text-align: center;
    box-sizing: border-box;
}

.footer-columns-container .footer-column:nth-child(n+2) {
    border-left: 1px solid #333;
}

.footer-column h4 {
    font-size: 1.2em;
    font-weight: bold;
    margin: 0 0 15px 0;
}

.footer-column a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 0.9em;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #8a8a8a;
}

.footer-credits-img {
    width: 100%;
    max-width: 300px; /* Original max-width */
    margin-top: 20px;
    height: auto;
    opacity: 0.8;
}

/* --- Responsive Adjustments (Media Queries) --- */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    /* Navigation */
    .navbar {
        justify-content: space-between;
        padding: 0 15px;
    }
    .nav-link {
        font-size: 1.1em;
        padding: 8px 15px;
    }

    /* Home Section */
    .home-main-page-content {
        height: 100vh; /* Adjust height for tablet */
    }
    .home-space-section {
        height: 8vh;
    }
    .home-about-text-section {
        height: 100vh;
    }
    .about-text-wrapper-home {
        width: 60%; /* Make paragraphs wider on tablet */
        padding: 20px;
    }
    .home-blu-ray-section {
        height: 120vh;
    }
    .blu-ray-button {
        font-size: 80px;
        padding: 15px 40px;
    }
    .home-blank-space-section {
        height: 15vh; /* Adjusted for tablet */
    }

    /* Abouts Section */
    .abouts-red-space-content {
        height: 20vh;
    }
    .abouts-main-about-content {
        height: 100vh;
    }
    .about-text-wrapper-abouts {
        width: 60%; /* Make paragraphs wider on tablet */
        padding: 20px;
    }
    .abouts-black-space-content {
        height: 25vh; /* Adjusted for tablet */
    }
    .abouts-slideshow-wrapper {
        padding: 40px 15px;
    }
    .slideshow-header h2 {
        font-size: 1.8em;
    }
    .slideshow-header p {
        font-size: 1em;
    }
    .slideshow-container {
        margin: 30px auto;
    }
    .prev, .next {
        font-size: 1.5em;
        padding: 10px;
        margin-top: -15px;
    }
    .play-button {
        width: 70px;
        height: 70px;
    }
    .play-button::before {
        border-top: 18px solid transparent;
        border-bottom: 18px solid transparent;
        border-left: 25px solid white;
    }

    /* Reviews Section */
    .reviews-bigtitle-section-bg {
        height: 80vh; /* Adjusted for tablet */
        margin-bottom: 20px;
    }
    .reviews-header h1 {
        font-size: clamp(2em, 8vw, 5em);
    }
    .reviews-content-wrapper {
        max-width: 900px;
        padding: 0 15px;
    }
    .review-block {
        padding: 15px 20px;
    }
    .review-initial-left,
    .review-initial-right {
        width: 80px;
        height: 80px;
        font-size: 3em;
    }
    .review-text-content {
        padding: 0 20px;
    }
    .review-title {
        font-size: 1.4em;
    }
    .review-paragraph {
        font-size: 0.9em;
    }
    .reviewer-info {
        font-size: 0.8em;
    }

    /* Contacts Section */
    .contacts-section {
        height: 80vh; /* Adjusted for tablet */
        padding: 0 15px;
    }
    .contact-heading {
        font-size: clamp(2.5em, 10vw, 6em);
    }
    .contact-paragraph {
        font-size: clamp(0.9em, 2.5vw, 1.2em);
    }
    .contact-button {
        padding: 12px 30px;
        font-size: clamp(1em, 3vw, 1.6em);
    }

    /* Tour Section */
    .tour-section {
        height: 80vh; /* Adjusted for tablet */
        padding: 30px 15px;
    }
    .tour-title {
        font-size: clamp(2em, 7vw, 4em);
    }
    .tour-date,
    .tour-location {
        font-size: 1em;
    }

    /* Footer */
    .footer-columns-container {
        flex-direction: column;
        align-items: center;
        padding-top: 30px;
    }
    .footer-column {
        min-width: 100%;
        border-left: none;
        padding: 0 20px;
        margin-bottom: 20px;
    }
    .footer-columns-container .footer-column:not(:first-child) {
        border-top: 1px solid #333;
        padding-top: 20px;
    }
    .footer-credits-img {
        max-width: 250px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        flex-wrap: wrap;
        padding: 0 10px;
        border-radius: 0;
        border: none;
    }
    .nav-link {
        display: none; /* Hide desktop nav links */
    }
    .hamburger-menu {
        display: block; /* Show hamburger icon */
        margin-left: auto; /* Push hamburger to the right */
    }
    .main-header {
        padding: 15px 0;
    }

    /* Mobile Menu */
    .mobile-menu {
        padding-top: 80px; /* Adjust for sticky header */
    }
    .mobile-nav-link {
        font-size: 1.2em;
        padding: 20px;
    }

    /* Home Section */
    .home-main-page-content {
        height: 70vh; /* Further reduced height for mobile */
    }
    .home-space-section {
        height: 5vh;
    }
    .home-about-text-section {
        height: 50vh;
        flex-direction: column; /* Stack text vertically */
        align-items: center; /* Center text when stacked */
        padding: 20px;
    }
    .about-text-wrapper-home {
        width: 50%; /* Full width on mobile */
        text-align: left; /* Align left for better readability */
        padding: 0;
        margin: 0;
    }
    .about-text-wrapper-home h3 {
        font-size: 0.5em;
        margin-bottom: 1em;
    }
    .home-blu-ray-section {
        height: 100vh;
    }
    .blu-ray-button {
        font-size: 50px;
        padding: 12px 25px;
    }
    .home-blank-space-section {
        height: 10vh; /* Adjusted for mobile */
    }

    /* Abouts Section */
    .abouts-red-space-content {
        height: 15vh;
    }
    .abouts-main-about-content {
        height: 70vh;
        flex-direction: column; /* Stack text vertically */
        align-items: center; /* Center text when stacked */
        padding: 20px;
    }
    .about-text-wrapper-abouts {
        width: 100%; /* Full width on mobile */
        text-align: left; /* Align left for better readability */
        padding: 0;
        margin: 0;
    }
    .about-text-wrapper-abouts h3 {
        font-size: 0.95em;
        margin-bottom: 1em;
    }
    .abouts-black-space-content {
        height: 20vh; /* Adjusted for mobile */
    }
    .abouts-slideshow-wrapper {
        padding: 30px 15px;
        font-size: 1.8rem;
    }
    .slideshow-header h2 {
        font-size: 1.8em;
    }
    .slideshow-header p {
        font-size: 1em;
    }
    .slideshow-container {
        margin: 30px auto;
    }
    .prev, .next {
        font-size: 1.5em;
        padding: 10px;
        margin-top: -15px;
    }
    .play-button {
        width: 60px;
        height: 60px;
    }
    .play-button::before {
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
        border-left: 20px solid white;
    }

    /* Reviews Section */
    .reviews-bigtitle-section-bg {
        height: 60vh; /* Adjusted for mobile */
        margin-bottom: 15px;
    }
    .reviews-header h1 {
        font-size: clamp(2em, 10vw, 4em);
        padding: 8px 15px;
    }
    .reviews-content-wrapper {
        padding: 0 10px;
        gap: 20px;
    }
    .review-block {
        flex-direction: column; /* Stack initial and text vertically on small screens */
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    .review-initial-left,
    .review-initial-right {
        width: 70px;
        height: 70px;
        font-size: 2.5em;
        margin-bottom: 15px;
    }
    .review-initial-right {
        display: none; /* Hide the right initial on mobile if it's just for symmetry */
    }
    .review-text-content {
        padding: 0;
    }
    .reviewer-info {
        text-align: center;
    }

    /* Contacts Section */
    .contacts-section {
        height: 70vh; /* Adjusted for mobile */
        padding: 0 10px;
    }
    .contact-heading {
        font-size: clamp(2em, 12vw, 5em);
    }
    .contact-paragraph {
        font-size: clamp(0.9em, 3vw, 1.1em);
        padding: 0 10px;
    }
    .contact-button {
        padding: 12px 30px;
        font-size: clamp(1em, 4vw, 1.5em);
    }

    /* Tour Section */
    .tour-section {
        height: 70vh; /* Adjusted for mobile */
        padding: 30px 15px;
    }
    .tour-title {
        font-size: clamp(2em, 10vw, 4em);
        margin-bottom: 30px;
    }
    .tour-date,
    .tour-location {
        font-size: 1em;
    }
    .tour-item {
        flex-direction: column; /* Stack date and location vertically */
        align-items: flex-start;
        padding: 10px 0;
    }
    .tour-date {
        margin-bottom: 5px;
        padding-right: 0;
    }
    .tour-location {
        text-align: left;
    }
    .rsvp-button {
        padding: 12px 30px;
        font-size: clamp(1em, 4vw, 1.5em);
    }

    /* Footer */
    .main-footer {
        padding: 30px 10px;
    }
    .footer-title {
        font-size: clamp(2em, 8vw, 4em);
    }
    .footer-social-icons {
        gap: 20px;
    }
    .social-icon img {
        width: 30px;
        height: 30px;
    }
    .footer-column {
        padding: 0 10px;
    }
    .footer-column h4 {
        font-size: 1.1em;
    }
    .footer-column a {
        font-size: 0.85em;
    }
    .footer-credits-img {
        max-width: 200px;
    }
}

/* Very Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .main-header {
        padding: 10px 0;
    }
    .hamburger-menu {
        font-size: 1.5em;
    }
    .mobile-nav-link {
        font-size: 1em;
        padding: 10px 12px;
    }

    .home-main-page-content {
        height: 60vh;
    }
    .home-space-section {
        height: 3vh;
    }
    .home-about-text-section {
        height: 60vh;
    }
    .about-text-wrapper-home h3 {
        font-size: 0.85em;
    }
    .home-blu-ray-section {
        height: 80vh;
    }
    .blu-ray-button {
        font-size: 40px;
        padding: 10px 20px;
    }
    .home-blank-space-section {
        height: 5vh;
    }

    /* Abouts Section */
    .abouts-red-space-content {
        height: 10vh;
    }
    .abouts-main-about-content {
        height: 60vh;
    }
    .about-text-wrapper-abouts h3 {
        font-size: 0.5em;
    }
    .abouts-black-space-content {
        height: 15vh;
    }
    .abouts-slideshow-wrapper {
        padding: 20px 10px;
        font-size: 1.5rem;
    }
    .slideshow-header h2 {
        font-size: 1.5em;
    }
    .slideshow-header p {
        font-size: 0.9em;
    }
    .slideshow-container {
        margin: 20px auto;
    }
    .prev, .next {
        font-size: 1.2em;
        padding: 8px;
    }
    .play-button {
        width: 50px;
        height: 50px;
    }
    .play-button::before {
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        border-left: 18px solid white;
    }

    /* Reviews Section */
    .reviews-bigtitle-section-bg {
        height: 40vh;
        margin-bottom: 10px;
    }
    .reviews-header h1 {
        font-size: clamp(1.8em, 15vw, 3.5em);
    }
    .reviews-content-wrapper {
        padding: 0 5px;
        gap: 15px;
    }
    .review-block {
        padding: 15px;
    }
    .review-initial-left,
    .review-initial-right {
        width: 60px;
        height: 60px;
        font-size: 2em;
    }
    .review-title {
        font-size: 1.2em;
    }
    .review-paragraph {
        font-size: 0.9em;
    }
    .reviewer-info {
        font-size: 0.8em;
    }

    /* Contacts Section */
    .contacts-section {
        height: 60vh;
        padding: 0 10px;
    }
    .contact-heading {
        font-size: clamp(1.8em, 15vw, 4em);
    }
    .contact-paragraph {
        font-size: 0.85em;
    }
    .contact-button {
        padding: 10px 25px;
        font-size: clamp(0.9em, 4vw, 1.2em);
    }

    /* Tour Section */
    .tour-section {
        height: 60vh;
        padding: 20px 10px;
    }
    .tour-title {
        font-size: clamp(1.8em, 15vw, 3.5em);
    }
    .tour-date,
    .tour-location {
        font-size: 1em;
    }
    .rsvp-button {
        padding: 10px 25px;
        font-size: clamp(0.9em, 4vw, 1.2em);
    }

    /* Footer */
    .main-footer {
        padding: 30px 10px;
    }
    .footer-title {
        font-size: clamp(2em, 8vw, 4em);
    }
    .footer-social-icons {
        gap: 20px;
    }
    .social-icon img {
        width: 30px;
        height: 30px;
    }
    .footer-column {
        padding: 0 10px;
    }
    .footer-column h4 {
        font-size: 1.1em;
    }
    .footer-column a {
        font-size: 0.85em;
    }
    .footer-credits-img {
        max-width: 200px;
    }
}
