/* ==============================
   GLOBAL STYLES
============================== */
body {
    background-color: #121212;
    color: #f0f0f0;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

a { text-decoration: none; }



/* ==============================
   HERO SECTION
============================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 80px;
    background: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0)),
                url('images/home.png') no-repeat center center;
    background-size: cover;
    position: relative;
    flex-direction: row;
}

.hero-content {
    max-width: 45%;
    position: relative;
    z-index: 1;
}

.hero-content h5 {
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #ddd;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    color: #fcbf49;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content .tagline-headline {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: -10px;
    margin-bottom: 30px;
}

.btn-locations {
    background-color: transparent;
    border: 2px solid #fcbf49;
    color: #fcbf49;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-locations:hover {
    background-color: #fcbf49;
    color: #1c1b1b;
}

/* HERO RESPONSIVE */
@media (max-width: 1199px) { .hero-content h1 { font-size: 80px; } }
@media (max-width: 991px) {
    .hero-section { flex-direction: column; text-align: center; padding: 120px 20px 0; }
    .hero-content { max-width: 100%; margin-bottom: 250px; padding-top: 30px; }
    .btn-locations { margin-top: 15px; }
    .hero-content h1 { font-size: 60px; }
}
@media (max-width: 576px) {
    .hero-content h1 { font-size: 48px; }
    .btn-locations { width: 100%; margin: 10px 0; }
    .hero-section {
        padding: 100px 20px 0;
        background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.85) 100%), 
                    url('images/home.png') center/cover no-repeat;
    }
}

