:root {
    --primary: #FF5722; /* Vivid Orange */
    --dark: #121212;
    --light: #F8F9FA;
    --grey: #B0BEC5;
    --text: #212121;
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text);
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 80px 0;
}

.text-center { text-align: center; }
.text-white { color: white; }
.bg-light { background-color: var(--light); }
.bg-dark { background-color: var(--dark); }
.bg-accent { background-color: var(--primary); color: white; }

.btn {
    display: inline-block;
    padding: 15px 35px;
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: #E64A19;
    transform: translateY(-2px);
}

.btn-black {
    background-color: var(--dark);
    color: white;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
    background: var(--primary);
    color: white;
}

/* Header */
.site-header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.highlight { color: var(--primary); }

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

.nav-links a {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero */
.hero-section {
    height: 100vh;
    min-height: 600px;
    background: url('../img/hero.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
}

.hero-content h1 {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.text-outline {
    -webkit-text-stroke: 2px white;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Feature Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.section-title {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto 0;
}

.feature-card {
    background: white;
    padding: 40px;
    border: 2px solid var(--dark);
    transition: 0.3s;
}

.feature-card:hover {
    background: var(--dark);
    color: white;
    border-color: var(--dark);
}

.feature-card h3 {
    font-family: var(--font-head);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Testimonials */
.review-card {
    background: var(--light);
    padding: 30px;
    position: relative;
}

.review-card::before {
    content: '"';
    font-size: 4rem;
    font-family: serif;
    color: var(--primary);
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
}

.reviewer strong {
    display: block;
    font-family: var(--font-head);
}

.reviewer span {
    font-size: 0.8rem;
    color: #666;
}

/* Blog */
.blog-card {
    background: var(--dark);
    border: 1px solid #333;
}

.blog-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.3s;
}

.blog-card:hover img {
    filter: grayscale(0%);
}

.card-body {
    padding: 25px;
}

.card-body h3 {
    margin-bottom: 10px;
    color: white;
}

.card-body p {
    font-size: 0.9rem;
    color: #bbb;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

/* FAQ */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

details {
    background: white;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

summary {
    padding: 20px;
    cursor: pointer;
    font-family: var(--font-head);
    font-weight: 600;
    list-style: none; /* Hide default arrow */
    position: relative;
}

summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    font-weight: 300;
}

details[open] summary::after {
    content: '-';
}

details p {
    padding: 0 20px 20px;
    color: #555;
}

/* Form */
.subscribe-form {
    max-width: 500px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.subscribe-form input[type="email"] {
    padding: 15px;
    border: none;
    font-family: var(--font-body);
}

.gdpr-check {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    text-align: left;
}

.gdpr-check a { text-decoration: underline; }

/* Footer */
.site-footer {
    background: #000;
    color: white;
    padding: 60px 0 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #888;
    font-size: 0.9rem;
}

.footer-links a:hover { color: white; }

.socials-clean {
    margin-bottom: 30px;
}

.socials-clean a {
    display: inline-block;
    color: white;
    border: 1px solid white;
    padding: 10px;
    width: 50px;
    margin: 0 5px;
    font-weight: 700;
}

.socials-clean a:hover {
    background: white;
    color: black;
}

.disclaimer {
    font-size: 0.7rem;
    color: #444;
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    border-top: 4px solid var(--primary);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 9999;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    
    .nav-links {
        position: fixed;
        background: white;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: 0.3s;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }
    
    .mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}
