﻿/* Basic reset for margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8c6d4; /* Lingerie-inspired pink */
    min-height: 100vh;
}

/* Set up the grid layout */
.container {
    display: grid;
    grid-template-columns: 200px 1fr; /* Left sidebar is 200px wide, rest fills the space */
    grid-template-rows: 80px 1fr 40px; /* Header is 80px high, content fills the rest, bottom bar is 50px */
    grid-template-areas: 
        "sidebar header"
        "sidebar content"
        "sidebar footer"; /* Footer added to grid layout */
    width: 100%;
    height: 100vh; /* Full viewport height */
    z-index: 1; /* To place content above the watermark */
}

/* Sidebar styling */
.sidebar {
	grid-area: sidebar;
	background-color: #77003C;
	padding: 20px 0;
	color: #FFFFFF;
	height: 100%;
	z-index: 1; /* To place content above the watermark */
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    margin-bottom: 15px;
}

.sidebar ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    font-size: 1.1em;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap; /* Prevent text from wrapping */
}

/* Hover effect for the buttons */
.sidebar ul li a:hover {
    background-color: #e91e63; /* Bright pink on hover */
    transform: translateY(-5px); /* Lift effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Drop shadow on hover */
}

/* Header styling */
.header {
    grid-area: header;
    background-color: #fff;
    padding: 10px 20px;
    border-bottom: 2px solid #e91e63;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;  /* To place content above the watermark */
}

.header h1 {
    font-size: 2.5em;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Main content styling */
.content {
    grid-area: content;
    padding: 20px;
    color: #333;
    z-index: 1; /* To place content above the watermark */
}

/* Footer styling */
.footer {
    grid-area: footer;
    background-color: #fff;
    border-top: 2px solid #e91e63; /* Top border for separation */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px; /* Fixed height for footer */
    z-index: 10; /* To place content above the watermark */
    overflow: hidden; /* Prevent scrollbars */
    scrolling: "no"; /* For older browsers */
}

/* Footer iframe styling */
.footer-iframe {
    grid-area: footer;
    border: none;
    background-color: #fff;
    /*border-top: 2px solid #e91e63;*/ /* Top border for separation */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px; /* Fixed height for footer */
    z-index: 20; /* To place content above the watermark */
    width: 100%;
    overflow: hidden; /* Prevent scrollbars */
    scrolling: "no"; /* For older browsers */
}

/* Watermark image */
body::before {
    content: "";
    background-size: cover; /* Cover the entire body area */
    position: fixed; /* Use fixed positioning to cover entire viewport */
    top: 0;
    left: 0;
    opacity: 0.3; /* Adjust opacity as needed */
    width: 100%;
    height: 100%;
    z-index: 0; /* Keep the watermark behind everything */
}


/* Mobile Styles */
@media (max-width: 768px) {
    /* Make the sidebar collapse to the top of the screen */
    .container {
        grid-template-columns: 1fr; /* Single column layout */
        grid-template-rows: auto 50px 1fr auto; /* Adjust layout to stack header, sidebar, content, and footer */
        grid-template-areas:
            "header"
            "sidebar"
            "content"
            "footer";
    }

    /* Sidebar styling for mobile */
    .sidebar {
        grid-area: sidebar;
        background-color: #77003C;
        color:white;
        width: 100%;
        padding: 10px;
        display: flex;
        flex-direction: row;
        overflow-x: auto; /* Enable horizontal scroll if the menu is too wide */
    }

    .sidebar ul {
        display: flex;
        gap: 10px;
    }

    .sidebar ul li {
        margin-bottom: 0;
	white-space: nowrap; /* Prevent text from wrapping */
    }

    /* Header styling for mobile */
    .header h1 {
        font-size: 1.5em; /* Adjust font size */
        text-align: center;
    }

    /* Content styling */
    .content {
        padding: 15px; /* Reduce padding */
        font-size: 0.9em; /* Slightly smaller font size */
    }

    /* Footer styling */
    .footer-iframe {
        height: 50px; /* Ensure footer remains small */
    }
}

/* Extra small devices (e.g., Pixel 8) */
@media (max-width: 480px) {
    .header h1 {
        font-size: 1.2em;
    }

    .sidebar {
        font-size: 0.9em;
        background-color: #77003C;
        color:white
    }

    .content {
        font-size: 0.8em;
    }

    .footer p {
        font-size: 0.8em; /* Reduce footer font size */
    }
}
.SubTitle1 {
	font-weight: bold;
}
.Text {
}
