/* Model Hero Section */
.modelhero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: black; /* Optional, to ensure contrast with content */
}

/* Hero Image/Video */
.modelhero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Additional Info Above Hero Section */
.additional-info {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    color: white;
    text-align: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    animation: fadeIn 2s ease-in-out;
}

/* Bold Labels in Additional Info */
.bold {
    font-weight: bold;
}

/* Model Name and Measurements Container */
.model-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 100%;
    color: white;
    animation: fadeIn 2s ease-in-out;
}

/* Model Name */
.model-info h1 {
    font-family: 'Arial Black', sans-serif;
    font-size: 5rem; /* Adjust size as necessary */
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8); /* Adds depth for better contrast */
    margin: 0;
    animation: slideUp 2s ease-in-out;
}

/* Model Measurements */
.model-info h2 {
    font-family: Arial, sans-serif;
    font-size: 1rem; /* Adjust size for subtitles */
    font-weight: 100;
    margin-top: 20px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
    animation: slideUp 2s ease-in-out 1s;
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Make text responsive on smaller screens */
@media (max-width: 768px) {
    .additional-info p {
        font-size: 1rem;
    }

    .model-info h1 {
        font-size: 3rem;
    }

    .model-info h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .additional-info p {
        font-size: 0.9rem;
    }

    .model-info h1 {
        font-size: 2rem;
    }

    .model-info h2 {
        font-size: 1rem;
    }
}


/* Scroll Down Button */
.scroll-down {
    position: absolute;
    bottom: 30px; /* Adjust if needed */
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 100;
}

.scroll-down i {
    transition: color 0.3s ease;
}

.scroll-down:hover i {
    color: #ccc; /* Hover effect */
}

/* Bounce Animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}



/*shows */
.book-section h2 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    color: #333;
}

.scroll-row {
    display: flex; /* Flexbox for horizontal layout */
    overflow-x: auto; /* Enable horizontal scrolling */
    padding: 20px; /* Padding around the row */
    gap: 10px; /* Space between items */
}

.scroll-row img,
.scroll-row video {
    max-width: auto; /* Set to auto to fit container */
    height: 850px; /* Set the height to maintain a consistent look */
    border-radius: 0px;
    object-fit: contain; /* Fit the content inside the container while maintaining aspect ratio */
}

.showsscroll-row {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
}

.show-item {
    position: relative;
    flex-shrink: 0;
    width: auto; /* Auto width to fit the content */
    height: 675px; /* Adjust this height as needed */
}

.show-video {
    width: 100%; /* Full width of the parent container */
    height: 100%;
    object-fit: contain; /* Ensures the video fits without cropping */
}

.mute-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
}

.mute-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


/* Digital Row (3 images per row, 2 rows)*/
.digital-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 20px; /* Space between images */
    padding: 20px;
}

.digital-row img {
    width: 100%; /* Full width of the column */
    height: auto; /* Maintain aspect ratio */
    max-width: 1080px; /* Ensure maximum width of 1080px */
    max-height: 1080px; /* Ensure maximum height of 1080px */
    object-fit: cover; /* Crops and fits the image neatly within the box */
    border-radius: 0px; /* Optional: Adjust if you want rounded corners */
}

/* Responsive Design */
@media (max-width: 768px) {
    .model-info h1 {
        font-size: 2rem;
    }

    .model-info h2 {
        font-size: 1rem;
    }

    .scroll-row img {
        width: auto;
        height: 337.5px;
    }

    .show-item {
        max-width: 360px;
		max-height: 640;
    }

}

