
/* Base Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.7;
}

/* Container Layout */
.container {
    max-width: 1080px;
    margin: auto;
    padding: 0 1.5rem;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #000;
    flex-wrap: wrap;
    animation: slideDown 1s ease forwards;
}
header img {
    height: 60px;
}
.nav-center {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex: 1;
}
.nav-center a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}
.nav-center a:hover {
    color: crimson;
}
.socials {
    display: flex;
    gap: 1rem;
}
.socials img {
    width: 32px;
    height: 32px;
    object-fit: cover;
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    overflow: hidden;
}
.hero img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    display: block;
    animation: fadeIn 2s ease forwards;
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.65);
    padding: 2rem;
    border-radius: 12px;
    animation: fadeInUp 1s ease forwards;
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}
.hero-content a button {
    background: crimson;
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: bold;
    border-radius: 6px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s;
}
.hero-content a button:hover {
    transform: scale(1.05);
}

/* Sections */
section {
    padding: 4rem 0;
    border-bottom: 1px solid #222;
}

/* Split Layout */
.split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}
.split .text {
    flex: 1 1 55%;
    animation: fadeInLeft 1s ease forwards;
}
.split .text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}
.split .text p {
    font-size: 1.1rem;
    color: #ccc;
}
.split img, .split video {
    flex: 1 1 40%;
    max-width: 360px;
    width: 100%;
    border-radius: 12px;
    margin: auto;
    animation: fadeInRight 1s ease forwards;
}

/* Buttons */
.menu-button {
    margin-top: 1.5rem;
    display: inline-block;
    background: crimson;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}
.menu-button:hover {
    background: #ff3c3c;
}

/* Map */
.map iframe {
    width: 100%;
    height: 300px;
    border: none;
    margin-top: 1rem;
    animation: fadeIn 1.5s ease forwards;
}

/* Footer */
footer {
    background-color: #000;
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: #999;
    animation: fadeIn 2s ease forwards;
}
footer .socials {
    margin-top: 1rem;
}
footer .socials img {
    width: 26px;
    margin: 0 8px;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero img {
        height: auto;
        max-height: 400px;
    }
    .hero-content {
        width: 90%;
        padding: 1rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content a button {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    .split {
        flex-direction: column;
    }
    .split .text, .split img, .split video {
        flex: 1 1 100%;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    0% { opacity: 0; transform: translateX(-40px); }
    100% { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    0% { opacity: 0; transform: translateX(40px); }
    100% { opacity: 1; transform: translateX(0); }
}
@keyframes slideDown {
    0% { transform: translateY(-100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}
