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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #000;
    --secondary: #d4af37;
}

body {
    font-family: Arial, sans-serif;
    background: #111;
    color: #fff;
    font-size: 18px;
    line-height: 1.7;
}

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

header {
    background: #000;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 22px;
    color: var(--secondary);
}

.logo img {
    height: 40px;
}

/* DESKTOP NAVIGATION */
header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

/* BURGER BUTTON */
.nav-burger {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: #fff;
}

/* ===========================
   SLIDE-IN MOBILE MENU
=========================== */

#mobileMenu {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100vh;
    background: #000;
    padding-top: 80px;
    transition: 0.3s ease;
    z-index: 2000;
}

#mobileMenu.open {
    right: 0;
}

#mobileMenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#mobileMenu ul li {
    border-bottom: 1px solid #222;
}

#mobileMenu ul li a {
    display: block;
    padding: 15px 20px;
    font-size: 20px;
    color: #fff;
}

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

.hero {
    position: relative;
    height: 60vh;
    max-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.4rem;
}

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

.section {
    padding: 40px 20px;
    max-width: 1100px;
    margin: auto;
}

.section h2 {
    font-size: 32px;
    color: var(--secondary);
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
    padding-bottom: 5px;
}

/* ===========================
   GRID
=========================== */

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    height: 120px;
}

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

footer {
    background: #000;
    padding: 25px 10px;
    text-align: center;
    font-size: 0.95rem;
    color: #aaa;
    margin-top: 40px;
}
