/*
* This section contains styles specifically for the Shop Page (shop.html).
* It maintains the dark, unscrollable style of the home page.
*/

html, body {
    /* KEY CHANGE: Ensure the body and html take up the full viewport height */
    height: 100%;
    /* KEY CHANGE: Hide scrollbars */
    overflow: hidden; 
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0; 
    overflow-x: hidden; 
    overflow-y: hidden; 
    display: flex; 
    flex-direction: column; 
    
    background-image: url('img/soon.png'); 
    background-size: cover; 
    background-position: center center; 
    background-repeat: no-repeat; 
    background-attachment: fixed; 

    opacity: 0; 
    transition: opacity 1s ease-in-out; 
}

.page-content-wrapper {
    width: 100%;
    /* KEY CHANGE: Make wrapper take full viewport height */
    height: 100vh; 
    display: flex;
    flex-direction: column;
}

/* --- Shared Header & Footer Styles --- */

.header-about-page {
    background-color: rgba(0, 0, 0, 0.7); 
    position: relative; 
    top: 0;
    left: 0;
    right: 0;
    z-index: 10; 
    width: 100%;
    border-bottom: none; 
    flex-shrink: 0; 
    height: 60px; 
    box-sizing: border-box;
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.header-about-page .container {
    max-width: none; 
    width: 100%; 
    margin: 0; 
    padding: 0 1rem; 
    height: 100%; 
    display: flex;
    justify-content: center; /* Ensures the button is centered */
    align-items: center;
}

/* Nav links are simplified or replaced by the "Back" button on this page */

.footer-about-page {
    background-color: #000;
    color: #fff;
    padding: 1rem 1.5rem; 
    text-align: center;
    position: relative; 
    bottom: 0; 
    left: 0;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0; 
    z-index: 10; 
}

.copyright-about-page {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
}

/* --- Shop Specific Content Styles --- */

.main-content-shop-page {
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    text-align: center;
    padding: 2rem;
}

.coming-soon-text {
    font-family: "Impact", sans-serif;
    font-size: 5rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Back Button Styling (Updated to match original .nav-item style) */
.back-button {
    color: #fff; /* White text */
    text-decoration: none;
    font-weight: bold;
    font-family: "Impact", sans-serif; 
    padding: 1rem 1.5rem; /* Large padding like the original nav buttons */
    display: flex; 
    align-items: center; 
    height: 100%; /* Important for vertical alignment */
    transition: all 0.3s ease; 
    border-radius: 0; 
    text-transform: uppercase; 
    font-size: 1.3rem; /* Large font size */
    text-shadow: none; 
    background-color: transparent; /* Transparent background by default */
    border: 1px solid transparent; /* Transparent border by default */
    cursor: pointer;
}

.back-button:hover {
    color: #000; 
    background-color: #fff; 
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8); /* Stronger hover glow */
    transform: translateY(-2px); /* Slight lift on hover */
    border: 1px solid #fff; 
}


/* --- Page Transition Classes (FOR ALL PAGES) --- */
body.page-active { 
    opacity: 1;
}

body.page-fade-out {
    opacity: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .coming-soon-text {
        font-size: 3.5rem;
    }
    
    .back-button {
        font-size: 1rem;
        padding: 0.5rem 0.5rem; 
        height: auto; /* Allow header to collapse if needed */
    }
}
