:root {
    --bg-color: #121212;
    --text-color: #e0e0e0;
    --accent-color: #ff6f00;
    /* Fire Orange */
    --secondary-bg: #1e1e1e;
    --charcoal-bg: #252525;
    --nav-bg: rgba(18, 18, 18, 0.95);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1,
h2,
h3,
.logo {
    font-family: 'Cinzel', serif;
    color: #ffffff;
}

/* Navbar */
.navbar {
    background-color: var(--nav-bg);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
}

.btn-nav {
    border: 1px solid var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    color: var(--accent-color) !important;
}

.btn-nav:hover {
    background-color: var(--accent-color);
    color: #fff !important;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #121212;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(255, 111, 0, 0.3);
}

.subtitle {
    font-size: 1.4rem;
    color: #bbbbbb;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image img {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 111, 0, 0.4);
}

.btn-primary:hover {
    background-color: #ff8f00;
    box-shadow: 0 0 25px rgba(255, 111, 0, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid #fff;
    color: #fff;
    margin-left: 1rem;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
}

/* Sections */
.section {
    padding: 80px 0;
}

.container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.container h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 1rem auto;
}

.dark-section {
    background-color: var(--bg-color);
}

.charcoal-section {
    background-color: var(--charcoal-bg);
}

.text-block p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.quote {
    font-style: italic;
    font-size: 1.3rem;
    text-align: center;
    color: var(--accent-color);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.extract-box {
    background-color: var(--secondary-bg);
    padding: 3rem;
    border-left: 4px solid var(--accent-color);
    border-radius: 0 8px 8px 0;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.extract-box p {
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #333;
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.reviewer {
    display: block;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('Ultimo giorno di sole.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent, #000);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.5rem 3rem;
    margin-top: 2rem;
}

/* Footer */
footer {
    background-color: #000;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #333;
}

footer p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        display: none;
        /* Simple hide for mobile for now */
    }

    .hero-content {
        flex-direction: column-reverse;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .cta-group {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .btn-secondary {
        margin-left: 0;
    }
}