/* --- Global Styles & Variables --- */
:root {
    --primary-color: #e50914; /* Rebel Red */
    --dark-color: #141414;
    --light-color: #f4f4f4;
    --grey-color: #222; 
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Style for the particles container */
#tsparticles {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1; /* Puts it in the background */
}

body {
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    background: var(--dark-color);
    color: var(--light-color);
    line-height: 1.6;
}

.container {
    max-width: 1100px; 
    margin: auto;
    overflow: hidden;
    padding: 0 2rem;
}

h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin: 1rem 0;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

/* --- Header --- */
.header {
    background: #000;
    padding: 0.5rem 0;
    border-bottom: 3px solid var(--primary-color);
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo {
    height: 70px;
    width: auto;
}

/* --- Banner Section --- */
.banner {
    height: 55vh; 
    max-height: 500px; 
    background: #000 url('../img/background.png') no-repeat center center;
    background-size: cover; 
}

/* --- New Community Info Section --- */
.community-info {
    background: transparent;
    padding: 4rem 1rem;
}

.info-grid {
    display: flex;
    gap: 2rem; 
    align-items: stretch;
}

.info-column {
    flex: 1; 
    background: var(--dark-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); 
    display: flex; 
    flex-direction: column; 
}

.cta-column {
    /* Styles are inherited from .info-column */
}

.cta-column .btn {
    margin-top: auto;
}

.info-column h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 0.5rem;
}

.info-column h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--light-color);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 0.5rem;
}

.info-column p {
    font-size: 1.1rem;
    margin: 1rem auto;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
    background: #ff0a16;
}

/* --- Styles for About Section Tags --- */
.tags-container {
    margin-top: 1rem; /* Adjusted margin */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background-color: #333;
    color: #ccc;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    border: 1px solid #444;
}

/* Style for the added text */
.adults-only-text {
    font-style: italic;
    color: #999;
    margin-top: 2rem; /* Adjusted margin */
    margin-bottom: 0;
    font-size: 1rem;
}

/* --- Footer --- */
.footer {
    padding: 2rem;
    text-align: center;
    background: #000;
    color: #666;
    border-top: 1px solid #333;
}

/* --- Responsive Design --- */
@media(max-width: 920px) {
    .info-grid {
        flex-direction: column; 
    }
}

@media(max-width: 768px) {
    .banner {
        height: 35vh; 
    }

    .info-column h2,
    .info-column h3 {
        font-size: 1.8rem;
    }

    .header-logo {
        height: 60px;
    }
}