:root {
    --primary: #000000;
    --secondary: #1a1a1a;
    --accent: #f026ab;
    --text: #D3CCD7;
    /*--text-light: #f8f3eb;*/
    --text-light: #ffffff;
    --section: #312535;
    --info-box: #1d181f;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    font-size: 1.2rem;
    line-height: 1.6;
    background: #000000;
}

h1 {
    color: var(--text-light);
}

h2 {
    color: var(--text-light);
}

h3 {
    color: var(--accent);
}

header {
    background: #000000;
    /*
background: #000020;
background: -webkit-linear-gradient(135deg, rgba(0, 0, 32, 1) 0%, rgba(0, 0, 0, 1) 20%);
background: -moz-linear-gradient(135deg, rgba(0, 0, 32, 1) 0%, rgba(0, 0, 0, 1) 20%);
background: linear-gradient(135deg, rgba(0, 0, 32, 1) 0%, rgba(0, 0, 0, 1) 20%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000020", endColorstr="#000000", GradientType=0);   
*/
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /*border-bottom: 1px solid var(--secondary);*/
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    color: #a32076;
    text-decoration: underline;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

nav {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1rem;
}

nav a {
    color: var(--text);
    text-decoration: none;
    margin: 0.5rem 1rem;
    font-weight: 500;
    border-bottom: 3px solid #000000;
    border-radius: 3px;
    padding-bottom: 10px;
}

nav a:hover {
    color: var(--text-light);
    border-bottom: 3px solid var(--accent);
    border-radius: 3px;
    padding-bottom: 10px;
    text-decoration: none;
}

nav a:active {
    color: var(--text-light);
    border-bottom: 3px solid var(--accent);
    border-radius: 3px;
    padding-bottom: 10px;
    text-decoration: none;
}

nav a.active {
    color: var(--text-light);
    border-bottom: 3px solid var(--accent);
    border-radius: 3px;
    padding-bottom: 10px;
    text-decoration: none;
}

.container {
    padding: 4rem 2rem;
    max-width: 1040px;
    margin: 0 auto;
}

.hero {
    position: relative;
    padding: 2rem 0;
    text-align: center;
    overflow: hidden;
    min-height: 40vh;
    display: flex;
    align-items: center; /* Vertical centering */
    justify-content: center; /* Horizontal centering */
    flex-direction: column; /* Stack elements vertically */
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/back_hero.jpg') no-repeat center center;
    background-size: contain;
    opacity: 0.7;
    z-index: 0;
    /*box-shadow:
        inset 0 -20px 30px -10px #000000,
        inset 0 20px 30px -10px #000000;*/

}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 3.0rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 1040px;
    margin: 0 auto;
}

.cta-button {
    margin-top: 2rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.8rem 2rem;
    font-size: 1.25rem;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    box-shadow: 0 0 15px white;
    /*transform: scale(1.05);*/
    cursor: pointer;
}

.cta-button-pink {
    margin-top: 2rem;
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1.25rem;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button-pink:hover {
    box-shadow: 0 0 15px var(--accent);
    /*transform: scale(1.05);*/
    cursor: pointer;
}

.section {
    padding: 4rem 2rem;
    text-align: center;
}

.section h2 {
    color: var(--text-light);
}

.section h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section p {
    max-width: 1040px;
    margin: 0 auto;
    color: var(--text);
}

.obfuscated {
    unicode-bidi: bidi-override;
    direction: rtl;
}

footer {
    color: #999;
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

#cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #312535;
    color: #f8f3eb;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    z-index: 1000;
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.cookie-button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-button:hover {
    box-shadow: 0 0 15px var(--accent);
    /*transform: scale(1.05);*/
    cursor: pointer;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        margin-top: 1rem;
        justify-content: flex-start;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p,
    .section p {
        font-size: 1rem;
    }

    .cta-button {
        width: 100%;
        max-width: 250px;
    }
}

.info-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 20px 0;
}

.box {
    background-color: #1e1e1e;
    color: var(--text);
    padding: 20px;
    border-radius: 16px;
    box-sizing: border-box;
    border: 1px solid #333;
    margin-bottom: 30px;
}

.info-box {
    background-color: var(--info-box);
    color: var(--text);
    padding: 20px;
    border-radius: 16px;
    flex: 1 1 300px;
    max-width: 480px;
    box-sizing: border-box;
    border: 1px solid #333;
    /* optional visual aid */
}

.info-box h2 {
    color: var(--text-light);
}
