:root {
    --primary-color: #1F1F4E;  
    --accent-color: #CBB88B;   
    --background-color: #FFFFFF;
    --text-color: #1F1F4E;
    --hover-beige: rgb(232, 225, 208); 
}


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

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    color: white;
}


.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}
.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background: transparent;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}


nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
nav ul li a {
    text-decoration: none;
    color: var(--accent-color);
    font-weight: bold;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: var(--hover-beige);
}


.center-content {
    position: absolute;
    top: 25%; 
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.center-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    text-shadow: 
        3px 3px 12px rgba(0, 0, 0, 0.85),  
        0px 0px 8px rgba(0, 0, 0, 0.75);  
}


.login-section {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
}


.login-btn {
    background-color: var(--primary-color); 
    color: var(--accent-color); 
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

.login-btn:hover {
    background-color: var(--hover-beige);
    color: var(--primary-color);
}


footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
}
footer a {
    color: var(--accent-color);
    text-decoration: none;
    margin: 0 10px;
}
footer a:hover {
    text-decoration: underline;
}
