/*
Theme Name: NouLive
Author: NouLive
Version: 1.0
*/

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #000;
    color: #fff;
}

/* HEADER */
.site-header {
    width: 100%;
    height: 100px;
    padding: 0 60px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.site-title {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
}

/* NAVIGATION */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-navigation a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}

.main-navigation a:hover {
    color: #e50914;
}

/* CONTENT */
.site-content {
    min-height: calc(100vh - 180px);
    padding: 80px 60px;
}

/* FOOTER */
.site-footer {
    height: 80px;
    background: #000;
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}
body {
   
}