* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a, #000);
    color: #fff;
    overflow-x: hidden;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #d4a373;
    position: sticky;
    top: 0;
    z-index: 100;
    animation: slideDown 1s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container img {
    width: 60px;
    transition: 0.4s;
}

.logo-container img:hover {
    transform: scale(1.1) rotate(10deg);
}

.logo-container h1 {
    color: #d4a373;
    font-weight: 800;
}

/* NAV */
.nav-link {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    padding: 8px 18px;
    border-radius: 30px;
    transition: 0.4s;
}

.nav-link:hover,
.nav-link.active {
    border: 2px solid #d4a373;
    box-shadow: 0 0 15px #d4a373;
    color: #d4a373;
}

/* HERO */
.hero {
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, rgba(212,163,115,0.15), transparent);
}

.hero h2 {
    font-size: 48px;
    color: #d4a373;
}

.hero p {
    margin: 20px 0;
    font-size: 20px;
}

.btn {
    padding: 12px 30px;
    background: #d4a373;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.4s;
}

.btn:hover {
    background: #fff;
    box-shadow: 0 0 20px #d4a373;
}

/* SLIDER */
.slider-wrapper {
    padding: 40px 0;
}

.slider {
    position: relative;
    max-width: 1000px;
    height: 620px;
    margin: auto;
    overflow: hidden;
    border-radius: 20px;
    border: 2px solid #d4a373;
    box-shadow: 0 0 40px rgba(212,163,115,0.3);
    background: #000; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* SECTIONS */
section {
    padding: 80px 10%;
    text-align: center;
}

h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #d4a373;
}

.about p {
    max-width: 800px;
    margin: auto;
    line-height: 1.8;
}

/* SEO CONTENT */
.about {
    max-width: 900px;
    margin: 50px auto;
    background: rgba(255,255,255,0.04);
    padding: 50px 40px;
    border-radius: 25px;
    border: 1px solid rgba(212,163,115,0.3);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 40px rgba(212,163,115,0.15);
    text-align: left;
    transition: transform 0.4s, box-shadow 0.4s;
}

.about:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 50px rgba(212,163,115,0.25);
}

.about::before {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: #d4a373;
    margin: 0 auto 25px;
    border-radius: 12px;
}

.about h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 30px;
    color: #d4a373;
}

.about h3 {
    margin-top: 35px;
    margin-bottom: 15px;
    color: #d4a373;
    font-size: 22px;
    position: relative;
    padding-left: 25px;
}

.about h3::before {
    content: "★";
    position: absolute;
    left: 0;
    top: 0;
    color: #d4a373;
    font-size: 20px;
}

.about p {
    line-height: 1.9;
    color: #eee;
    margin-bottom: 18px;
}

.about ul {
    margin-top: 20px;
    padding-left: 25px;
}

.about li {
    margin-bottom: 12px;
    color: #fff;
    position: relative;
    padding-left: 20px;
}

.about li::marker {
    color: #d4a373;
}

/* WORKING HOURS */
.hours-container {
    max-width: 500px;
    margin: auto;
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #d4a373;
}

.day {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(212,163,115,0.3);
}

.day:last-child {
    border-bottom: none;
}

.closed span {
    color: red;
}

/* MAP */
.map-container {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #d4a373;
    box-shadow: 0 0 30px rgba(212,163,115,0.3);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FOOTER */
footer {
    background: #0d0d0d;
    padding: 25px 10%;
    text-align: center;
    border-top: 2px solid #d4a373;
}

footer p {
    color: #d4a373;
    font-size: 14px;
    margin: 3px 0;
}

footer a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

footer a:hover {
    color: #d4a373;
}

/* ========================= */
/* TABLET */
/* ========================= */
@media (max-width: 1024px) {
    .header { padding: 20px 30px; }
    .hero h2 { font-size: 36px; }
    .hero p { font-size: 18px; }
    section { padding: 60px 8%; }
    .slider { height: 400px; }
}

/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .nav-link {
        margin: 5px;
    }

    .hero {
        height: auto;
        padding: 80px 20px;
    }

    .hero h2 { font-size: 28px; }
    .hero p { font-size: 16px; }

    .slider {
        height: 350px;
        border-radius: 15px;
    }

    section { padding: 50px 6%; }
    h2 { font-size: 26px; }

     .about {
        padding: 35px 20px;
    }

    .about h2 {
        font-size: 28px;
    }

    .about h3 {
        font-size: 18px;
    }

    .about p {
        font-size: 15px;
    }


    .map-container { height: 250px; }
}

/* ========================= */
/* SMALL MOBILE */
/* ========================= */
@media (max-width: 480px) {
    .hero h2 { font-size: 22px; }
    .hero p { font-size: 14px; }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .slider { height: 250px; }
    h2 { font-size: 22px; }
        .about {
        padding: 25px 15px;
    }

    .about h2 {
        font-size: 24px;
    }

    .about h3 {
        font-size: 16px;
    }

    .about p {
        font-size: 14px;
    }
}
