/* Base Styles */
body {
    font-family: var(--font-primary);
    color: var(--text-body);
    /* background: var(--gradient-primary); */
    min-height: 100vh;
    background-attachment: fixed;
}



/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Layout Components */
.section {
    position: relative;
    padding: var(--section-padding);
    margin: var(--section-margin);
    border-radius: var(--section-radius);
    background: var(--primary-color);
    box-shadow: var(--default-shadow);
}

/* Navigation */
.navbar {
    backdrop-filter: blur(10px);
    border-radius: var(--section-radius);
    position: sticky;
}

.navbar-brand {
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

/* Footer */
.footer {
    background: var(--bg-ascent) !important;
    color: var(--text-light);
    padding: 4rem 0 0;
    border-radius: var(--section-radius);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Utility Classes */
.text-primary { color: var(--primary-color) !important; }
.text-accent { color: var(--accent-color) !important; }
.text-light { color: var(--text-light) !important; }
.text-dark { color: var(--text-dark) !important; }
.text-muted { color: var(--text-muted) !important; }

.bg-primary { background-color: var(--primary-color) !important; }
.bg-accent { background-color: var(--accent-color) !important; }
.bg-light { background-color: var(--bg-light) !important; }

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-ascent);
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: var(--card-radius);
    box-shadow: var(--default-shadow);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 90%;
    width: auto;
}

.cookie-consent p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-consent a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-consent button {
    white-space: nowrap;
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: var(--card-radius);
    cursor: pointer;
    transition: var(--default-transition);
}

.cookie-consent button:hover {
    background: var(--accent-dark);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .section {
        padding: 3rem 25px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 2rem 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
