:root {
    --noir: #0f1115;
    --gris: #1c1f26;
    --or: #c9a24d;
    --blanc: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background: var(--noir);
    color: var(--blanc);
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 15px 40px;
}

header img {
    width: 200px;
    height: auto;
}

@media (max-width: 768px) {
    header img {
        width: 120px;
    }
}

nav a {
    color: var(--blanc);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
}

nav a:hover {
    color: var(--or);
}

/* HERO */
.hero {
    height: 80vh;
    background:
        linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .65)),
        url("../img/hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 40px;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    text-shadow: 0px 7px 5px rgba(63, 63, 63, 0.5);
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #ddd;
    text-shadow: 0px 7px 5px rgba(63, 63, 63, 0.5);
}

.hero a {
    background: var(--or);
    color: black;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
}

.hero a:hover {
    opacity: 0.9;
}

/* SERVICES */
.services {
    padding: 80px 40px;
    background: var(--gris);
}

.services h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: #111;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card h3 {
    margin-bottom: 10px;
}

.card p {
    color: #ccc;
    font-size: 15px;
}

.card button {
    margin-top: 15px;
    background: none;
    border: 1px solid var(--or);
    color: var(--or);
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
}

.card button:hover {
    background: var(--or);
    color: black;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    border: 1px solid var(--or);
    color: var(--or);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: var(--or);
    color: black;
}

/* SOCIALS */
.socials {
    background: #111;
    padding: 70px 40px;
    text-align: center;
}

.socials h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.socials p {
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 16px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.social-btn {
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
    color: white;
}

.social-btn.insta {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.socials small {
    color: #888;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 600px) {
    .social-buttons {
        flex-direction: column;
    }
}


/* CONTACT */
.contact {
    padding: 80px 40px;
    background: #0b0c10;
    text-align: center;
}

.contact h2 {
    margin-bottom: 25px;
    font-size: 32px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.info {
    background: #111;
    padding: 20px 30px;
    border-radius: 6px;
    min-width: 220px;
}

.info span, .info a {
    display: block;
    margin-top: 5px;
    color: #ccc;
}

.info a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}


.info a:hover {
    opacity: 1;
}



/* FOOTER */
footer {
    background: black;
    padding: 20px;
    text-align: center;
    color: #777;
    font-size: 14px;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .hero h1 {
        font-size: 32px;
    }

    header {
        padding: 15px 10px;
    }

}