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

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #1b110c, #3b2417);
    color: white;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
}

header img {
    height: 85px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 35px;
    font-size: 22px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    transition: 0.3s ease;
}

nav a:hover {
    background: #d4af37;
    color: #1b110c;
}

/* HERO SECTION */
.hero {
    padding: 120px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 4.5em;
    margin-bottom: 25px;
    color: #ffd700;
}

.hero p {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.button-main {
    display: inline-block;
    margin-top: 30px;
    padding: 18px 40px;
    background: #d4af37;
    color: #1b110c;
    font-size: 22px;
    font-weight: bold;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s ease;
}

.button-main:hover {
    transform: scale(1.05);
}

/* CONTENT */
.content {
    padding: 100px 20px;
    text-align: center;
}

.content h2 {
    font-size: 3em;
    margin-bottom: 30px;
    color: #ffd700;
}

.content p {
    font-size: 1.6em;
    max-width: 900px;
    margin: auto;
    margin-bottom: 20px;
}

/* FOOTER */
footer {
    background: rgba(0,0,0,0.5);
    padding: 40px;
    text-align: center;
    font-size: 1.2em;
    margin-top: 80px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav {
        margin-top: 20px;
    }

    nav a {
        display: block;
        margin: 10px 0;
    }

    .hero h1 {
        font-size: 2.8em;
    }

    .hero p {
        font-size: 1.3em;
    }
}
