html {
    margin: 0;
    padding: 0;
    
    color:white;
}

h1{
    text-align: center;
    font-size: 70px;

}
/*
nav{
    margin-top: -20px;
    display: flex;
    justify-content: center;
    /* border: blue,10px,solid; 
}
nav ul{
    display: flex;
    text-decoration: none;
    list-style-type: none;/*removed dot from list


}
nav li{
    font-size: 20px;

    /* border: 10px,black,solid; 
}
nav li:hover{
    background-color: white;
    color:#FF0055;
}
li{
    padding: 20px;

}
a{
    text-decoration: none;
    color: white;
}
a:hover{
    text-decoration: none;
    color: #FF0055;
}
*/

.logo{

    width: 100px;
    height: 100px;
    /* border: black,10px,solid; */
}
.logoBox{
    /* border: black,10px,solid; */
    display: flex;
    justify-content: center;
     align-items: center;
}


/*Signup form*/
.title{
    display: flex;
    justify-content: center;
    align-items: center;

}
.container{
    /*height: 100%;*/
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
}
.userOutput{
    font-size: 30px;
}



.title{
        align-items: center;
        justify-content: center;
        display: flex;

}
.main{
        display:inline-flex;

        width: 100%;
        height: 50%;
        align-items: center;
        justify-content: center;
        gap: 20px;


}

.picture{
        width: 150px;
        height: 150px;
        border: 2px,solid black;
        overflow: hidden;
        background-color: black;


}
.picture img{
        height: 100%;
        width: 100%;
        object-fit: contain;

}
.words{
        display: flex;
        flex-direction: column;
        align-items: center;      /* horizontal centering */
        justify-content: center;  /* vertical centering */
        text-align: center;

        height: 150px;
}
.space{
        width: 50px;
}



.Announcements{
        margin-left: auto;
        margin-right: auto;
        width: 35%;
        /*border: blue, 10px, solid;*/
        display: flex; /*this must be here before the center*/
        justify-content: center;/*Center the main div */

}
.imageLeft{
        border: black, 5px, solid;

}

.description{
        padding: 10px;
        border: black, 5px, solid;
        text-align: center;
       
        color: white;
}

.containerBox{

        padding: 20px;
        display: flex;
        background-image: url(./pictures/src_gym_image.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        border: black,10px,solid;
}

.childBox{
        font-size: 40px;
        width: 50%;
    float: left;
    padding: 20px;
    color:black;
}
/*review later */


/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #111;
    color: #eee;
     margin: 0;
    padding: 0;
}

/* Hero Header */
.hero {
    background: linear-gradient(135deg, #8b0000, #000);
    padding: 50px 20px;
    text-align: center;
}

.hero-logo {
    height: 80px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 36px;
    color: #fff;
}

.hero p {
    color: #ff4d4d;
    font-size: 18px;
}

/* Layout */
.layout {
    display: flex;
    min-height: calc(100vh - 200px);
}

/* Sidebar */
.sidebar {
    width: 220px;
    background-color: #000;
    padding: 30px 15px;
}

.sidebar nav a {
    display: block;
    color: #ccc;
    text-decoration: none;
    padding: 12px;
    margin-bottom: 8px;
    border-left: 4px solid transparent;
}

.sidebar nav a:hover,
.sidebar nav a.active {
    color: #fff;
    background-color: #1a1a1a;
    border-left: 4px solid #b30000;
}

/* Content */
.content {
    flex: 1;
    padding: 40px;
}

.content h2 {
    margin-bottom: 30px;
    font-size: 28px;
    color: #ff4d4d;
}

/* Panels */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.panel {
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.6);
}

.panel h3 {
    margin-bottom: 15px;
    color: #ff4d4d;
}

/* Buttons */
.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.button-group button {
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    background-color: #b30000;
    color: white;
    font-size: 15px;
    cursor: pointer;
}

.button-group button:hover {
    background-color: #ff4d4d;
    color: black;
}

.button-group .clear {
    background-color: #444;
}

/* Table */
.gym-hours-table {
    width: 100%;
    border-collapse: collapse;
}

.gym-hours-table td {
    padding: 10px;
    border-bottom: 1px solid #333;
}


/* Image */
.imageGymTime img {
    max-width: 100%;
    border-radius: 8px;
    border: 2px solid #b30000;
}

/* Footer */
.footer {
    text-align: center;
    padding: 15px;
    background-color: #000;
    color: #aaa;
}


/* Events */
.event-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.event-image {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #b30000;
    flex-shrink: 0;
}

.event-text h3 {
    margin-bottom: 5px;
    color: #ff4d4d;
}

.event-text p {
    color: #ccc;
    font-size: 15px;
}




/* Global Buttons */
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    padding: 12px;
    margin-top: 10px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #b30000, #ff4d4d);
    color: white;
    font-size: 10px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(179, 0, 0, 0.6);
    transition: all 0.25s ease;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover {
    background: linear-gradient(135deg, #ff4d4d, #ff8080);
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 77, 77, 0.8);
}

button:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(179, 0, 0, 0.5);
}


/* =====================================
   SIGN UP PAGE — FORCE MATCH HOME THEME
   (CSS ONLY — NO HTML CHANGES)
===================================== */

/* =====================================
   RESTORE NAV AS SIDEBAR (SIGNUP PAGE)
===================================== */

/* Re-enable nav */
nav {
    display: block;
}

/* Sidebar container */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 220px;
    height: 100vh;
    background-color: #000;
    padding: 30px 15px;
    z-index: 1000;
}

/* Remove list styling */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Sidebar links */
nav ul li {
    padding: 0;
    margin-bottom: 8px;
}

nav ul li a {
    display: block;
    color: #ccc;
    text-decoration: none;
    padding: 12px;
    border-left: 4px solid transparent;
    transition: all 0.25s ease;
}

/* Hover + active feel */
nav ul li a:hover {
    color: #fff;
    background-color: #1a1a1a;
    border-left: 4px solid #b30000;
}

/* Push page content right so sidebar doesn't overlap */
.title,
.container {
    margin-left: 220px;
}



/* Hide legacy header/nav used on old pages */
.logoBox,
hr,


/* Match global dark background */
body {
    background-color: #111;
    color: #eee;
    margin: 0;
    padding: 0;
}

/* Recreate HERO header */
.title {
    background: linear-gradient(135deg, #8b0000, #000);
    padding: 50px 20px;
    margin-bottom: 40px;
}

.title h1 {
    font-size: 36px;
    color: white;
    text-align: center;
}

/* Center content like main.content */
.container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 100%;
}

/* Form becomes a PANEL */
.container form {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.6);
    font-size: 18px;
}

/* Labels (your text like "Enter your firstname:") */
.container form {
    line-height: 1.8;
}

/* Inputs */
.container input[type="text"],
.container input[type="email"],
.container input[type="password"],
.container input[type="number"] {
    width: 100%;
    margin-top: 6px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #333;
    background-color: #111;
    color: #eee;
    font-size: 16px;
}

/* Placeholder color */
.container input::placeholder {
    color: #888;
}

/* Input focus */
.container input:focus {
    outline: none;
    border-color: #ff4d4d;
    box-shadow: 0 0 6px rgba(255, 77, 77, 0.6);
}

/* Validation text */
.userOutput2,
.userOutput3,
.userOutput4,
.userOutput5,
.userOutput6,
.userOutput7 {
    color: #4dff88 !important;
    font-size: 18px;
}

.errorOutput,
.errorOutput2,
.errorOutput3,
.errorOutput4,
.errorOutput5,
.errorOutput6,
.errorOutput7 {
    color: #ff4d4d !important;
    font-size: 14px;
}

/* Submit button — same as home page buttons */
.submitButton {
    width: 100%;
    background: linear-gradient(135deg, #b30000, #ff4d4d);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px !important;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(179, 0, 0, 0.6);
    transition: all 0.25s ease;
}

.submitButton:hover {
    background: linear-gradient(135deg, #ff4d4d, #ff8080);
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 77, 77, 0.8);
}

.submitButton:active {
    transform: translateY(0);
}

