/* ===========================
   GLOBAL
=========================== */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #000;
    color: #e6e6e6;
    line-height: 1.6;

    opacity: 0;
    animation: fadePage 1.2s ease forwards;
}

@keyframes fadePage {
    to { opacity: 1; }
}

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

/* ===========================
   HEADER
=========================== */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #111;
    transition: 0.3s ease;
}

.header.scrolled {
    background: rgba(0,0,0,0.95);
    border-bottom-color: #222;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 0.5px;
}

/* ===========================
   LANGUAGE SWITCH
=========================== */

.lang-switch {
    display: flex;
    gap: 8px;
}

.lang-switch button {
    padding: 6px 12px;
    background: #111;
    border: 1px solid #333;
    border-radius: 6px;
    color: #ccc;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s ease;
}

.lang-switch button:hover {
    border-color: #d4af37;
    color: #d4af37;
}

/* ===========================
   BURGER
=========================== */

.burger {
    width: 30px;
    height: 22px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    background: none;
    border: none;
}

.burger span {
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

.burger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ===========================
   NAV
=========================== */

.nav {
    display: flex;
    justify-content: center;
    gap: 26px;
    margin-top: 10px;
}

.nav a {
    color: #ccc;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s ease;
}

.nav a:hover {
    color: #d4af37;
}

/* ===========================
   HERO
=========================== */

.hero {
    min-height: 100vh;
    background:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.85)),
        url('images/bg.jpg') center/cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.hero-inner {
    max-width: 700px;
    text-align: center;
    padding: 40px 30px;
    background: rgba(0,0,0,0.55);
    border: 1px solid #222;
    border-radius: 14px;
    box-shadow: 0 0 40px rgba(0,0,0,0.6);

    opacity: 0;
    animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 12px;
}

.hero p {
    font-size: 1.2rem;
    color: #d4af37;
    margin-bottom: 30px;
}

/* ===========================
   BUTTONS
=========================== */

.buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    padding: 12px 26px;
    background: #d4af37;
    color: #000;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn:hover {
    background: #b8922c;
    transform: translateY(-3px);
}

/* ===========================
   SECTIONS
=========================== */

.section {
    padding: 80px 20px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #d4af37;
}

/* ===========================
   CARDS
=========================== */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.card {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: 0.3s ease;

    opacity: 0;
    transform: translateY(25px);
}

.card.visible {
    opacity: 1;
    transform: translateY(0);
}

.card:hover {
    transform: translateY(-6px);
    border-color: #444;
    box-shadow: 0 18px 36px rgba(0,0,0,0.5);
}

.card h3 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.card p {
    color: #ccc;
    font-size: 0.95rem;
}

/* ===========================
   GALLERY
=========================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.photo {
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    transition: 0.3s ease;
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease;
}

.photo:hover img {
    transform: scale(1.05);
    opacity: 0.85;
}

/* ===========================
   ABOUT
=========================== */

.about p {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #ccc;
    font-size: 1.1rem;
}

/* ===========================
   CONTACT FORM
=========================== */

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #222;
    background: #111;
    color: #fff;
    font-size: 1rem;
    transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #d4af37;
    outline: none;
}

.contact-form textarea {
    min-height: 120px;
}

.contact-form button {
    background: #d4af37;
    color: #000;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form button:hover {
    background: #b8922c;
}

/* ===========================
   FOOTER
=========================== */

.footer {
    background: #000;
    padding: 30px;
    text-align: center;
    color: #777;
    border-top: 1px solid #111;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav {
        display: none;
        flex-direction: column;
        background: #000;
        padding: 20px;
        border-radius: 8px;
        gap: 16px;
    }

    .nav.open {
        display: flex;
    }
}
.lcp-hero {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
}
.icon {
    font-size: 46px;
    line-height: 1;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
}
