/* Custom Styles for Blox Robux Head Website */

body {
    background-color: #192440;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-container {
    background-image: url('../img/banner-bk.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.main-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(25, 36, 64, 0.85);
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

header {
    margin-bottom: 2rem;
}

.navbar-brand img {
    filter: brightness(0) invert(1);
}

.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5rem 0;
}

h1, .display-3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.button-group {
    margin-top: 2rem;
}

.btn-outline-primary {
    color: #ffffff;
    border-color: #ffffff;
    margin: 0 0.5rem;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: #ffffff;
}

footer {
    margin-top: auto;
    padding-top: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Policy Pages Styling */
.content-area {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.content-area h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.policy-content {
    text-align: left;
}

.policy-content h2 {
    color: #ffffff;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.policy-content p, .policy-content li {
    color: #e0e0e0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.policy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .main-content {
        margin: 3rem 0;
    }
    
    .display-3 {
        font-size: 3rem;
    }
    
    .lead {
        font-size: 1.2rem;
    }
    
    .button-group .btn {
        display: block;
        width: 80%;
        margin: 0.5rem auto;
    }
    
    .content-area {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .display-3 {
        font-size: 2.5rem;
    }
}