@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

/* Import custom font */
@font-face {
    font-family: Arial;
    src: url('../../fonts/rainyhearts.eot');
    src: url('../../fonts/rainyhearts.eot?#iefix') format('embedded-opentype'),
         url('../../fonts/rainyhearts.woff2') format('woff2'),
         url('../../fonts/rainyhearts.woff') format('woff'),
         url('../../fonts/rainyhearts.ttf') format('truetype'),
         url('../../fonts/rainyhearts.svg#RainyHearts') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* Global Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, cursive;
    background: url('../../images/tile.jpg') repeat;
    background-attachment: fixed;
    color: #333;
    height: 100vh; /* Full height of the viewport */
    display: flex;
    justify-content: center;
    align-items: center; /* Vertically center content */
}

/* Box for Navigation Buttons */
.box1 {
    width: 100%; /* Full width */
    display: flex;
    justify-content: center; /* Center buttons horizontally */
    align-items: center;
    margin-bottom: 20px;
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    justify-content: center; /* Center buttons within the container */
    gap: 20px; /* Space between buttons */
    width: auto; /* Ensure the width fits the buttons */
}

.nav-buttons button {
    width: 200px; /* Set button width */
    background-color: #fce4ec;
    color: #6a1b9a;
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-buttons button:hover {
    background-color: #f48fb1;
    color: white;
    transform: scale(1.1); /* Slight enlargement on hover */
}

/* Outer Wrapper */
.outer-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto; /* Center the main box horizontally */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center children horizontally */
    justify-content: flex-start;
    padding-top: 100px; /* Add space for buttons above the main box */
}

/* Inner Box */
.inner-box-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.inner-box {
    width: 100%;
    max-width: 1200px;
    display: flex;
    background-color: white;
    border-radius: 10px;
    border: 2px solid #ff80ab;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    gap: 20px;
}



/* Sidebar */
.sidebar {
    width: 250px;
    background-color: #fce4ec;
    border-radius: 10px;
    padding: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar ul li a {
    display: block;
    text-decoration: none;
    color: #6a1b9a;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.sidebar ul li a:hover {
    background-color: #f48fb1;
    color: white;
}

/* Main Content */
.main-content {
    flex-grow: 1;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    margin-top: 20px;
    text-align: center;
    font-size: 0.8em;
    color: #666;
}

/* Right Bar */
.right-bar {
    background: #fce4ec;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 300px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .inner-box {
        flex-direction: column;
    }

    .sidebar, .right-bar {
        width: 100%;
    }

    .main-content {
        width: 100%;
    }

    .nav-buttons {
        flex-direction: column;
        margin-bottom: 0;
    }

    .nav-buttons button {
        width: 100%;
    }
}
