:root {
    --gold: #d4af37;
    --bg: #0b0b0b;
    --text: #f2f2f2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    background-color: var(--bg);
    color: var(--text);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    padding: 15px 50px;
    z-index: 1000;
}

header h1 {
    font-family: "Playfair Display", serif;
    color: var(--gold);
    font-size: 1.5rem;
    letter-spacing: 1px;
}

nav a {
    margin-left: 25px;
    font-weight: 500;
    color: var(--text);
    transition: color 0.3s;
}

nav a:hover {
    color: var(--gold);
}

#lang-select {
    margin-left: 20px;
    background: none;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 5px;
    padding: 5px 10px;
}

/* SLIDER */
.swiper {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.swiper-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.slide-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.3rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.slide-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.swiper-pagination-bullet-active {
    background: var(--gold);
}

section {
    padding: 100px 20px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

section h2 {
    font-family: "Playfair Display", serif;
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 20px;
}

section p {
    line-height: 1.6;
    font-size: 1rem;
    opacity: 0.9;
}

.contact-icons a {
    display: inline-block;
    margin: 10px;
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s, color 0.3s;
}

.contact-icons a:hover {
    transform: scale(1.2);
    color: #fff;
}

footer {
    text-align: center;
    padding: 40px 20px;
    font-size: 0.9rem;
    color: #aaa;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    header {
        padding: 10px 20px;
        flex-wrap: wrap;
    }

    header h1 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .slide-content h2 {
        font-size: 1.6rem;
    }
}