/* Occitones - Simple, Lightweight CSS */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    padding: 15px 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
}

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

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #FFD800;
}

.nav-cta {
    background: #C1000A;
    padding: 8px 20px;
    border-radius: 4px;
}

.nav-cta:hover {
    background: #9a0008;
    color: #fff !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 150px 0 100px;
    text-align: center;
}

.hero-logo {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.btn-primary {
    background: #C1000A;
    color: #fff;
}

.btn-primary:hover {
    background: #9a0008;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #FFD800;
}

.btn-secondary:hover {
    background: #FFD800;
    color: #1a1a1a;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid #888;
    color: #fff;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-dark {
    background: #1a1a1a;
    color: #fff;
}

.section-accent {
    background: #C1000A;
    color: #fff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 12px;
}

.section-dark .card,
.section-accent .card {
    background: rgba(255, 255, 255, 0.1);
}

.card.featured {
    background: #1a1a1a;
    color: #fff;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.card p {
    margin-bottom: 10px;
}

.badge {
    display: inline-block;
    background: #C1000A;
    color: #fff;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.badge-past {
    background: #666;
}

.highlight {
    background: rgba(255, 216, 0, 0.2);
    padding: 10px 15px;
    border-radius: 6px;
    margin: 15px 0;
}

.callout {
    background: rgba(193, 0, 10, 0.3);
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
}

.callout p {
    margin: 5px 0 0;
    font-size: 0.9rem;
}

/* Two Columns */
.two-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-box {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-dark .info-box h3 {
    color: #FFD800;
    margin-bottom: 15px;
}

.info-box ul li {
    padding: 8px 0;
}

/* Benefits */
.benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.benefits span {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 8px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD800;
}

.form-group select option {
    background: #1a1a1a;
}

.contact-form .btn {
    width: 100%;
    background: #FFD800;
    color: #1a1a1a;
}

.contact-form .btn:hover {
    background: #fff;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 0 30px;
}

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

.footer-logo {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.footer strong {
    color: #FFD800;
    display: block;
    margin-bottom: 15px;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer a:hover {
    color: #FFD800;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 15px 20px;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    z-index: 1000;
    border-top: 2px solid #FFD800;
}

.cookie-banner>div {
    display: flex;
    gap: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
}