:root {
    --black: #000000;
    --dark: #141414;
    --red: #b11226;
    --light: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background: var(--black);
    color: var(--light);
    line-height: 1.7;
}

/* ================= HEADER ================= */
header {
    background: url("images/header-banner.jpg") center/cover no-repeat;
    min-height: 230px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

header nav {
    position: relative;
    z-index: 1;
}

header nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

header nav a:hover {
    color: var(--red);
}

/* ================= HERO ================= */
.hero {
    background: url("images/logo_approx.jpeg") center/cover no-repeat;
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}*/

.hero h1 {
    position: relative;
    z-index: 1;
    font-size: 3.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    border-bottom: 4px solid var(--red);
    padding-bottom: 10px;
}

/* ================= SECTIONS ================= */
section {
    padding: 70px 20px;
    max-width: 1100px;
    margin: auto;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: var(--red);
    letter-spacing: 2px;
}

/* ================= SERVICES ================= */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.card {
    background: var(--dark);
    border: 1px solid #222;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, border 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    border-color: var(--red);
}

.card h3 {
    margin-bottom: 12px;
    color: #fff;
}

.card strong {
    color: var(--red);
    font-size: 1.2rem;
}

/* ================= CONTACT ================= */
.contact-info {
    text-align: center;
    font-size: 1.05rem;
}

/* ================= STORE-GALLERY ================= */

.store-gallery {
    background: #000;
    padding: 70px 20px;
    text-align: center;
}

.store-gallery h2 {
    color: #fff;
    margin-bottom: 40px;
    font-size: 2rem;
    border-bottom: 3px solid #c30000;
    display: inline-block;
    padding-bottom: 10px;
}

/* Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
/* Hover effect */
.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(195, 0, 0, 0.4);
}

/* ABOUT-IMAGE */
.about-image {
    background: #000;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 1100px;
    height: 450px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    transition: transform 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}
@media (max-width: 768px) {
    .about-image img {
        height: 300px;
        border-radius: 8px;
    }
}

/* ================= FOOTER ================= */
footer {
    background: #000;
    text-align: center;
    padding: 25px;
    font-size: 0.9rem;
    border-top: 2px solid var(--red);
}
.footer {
    background: #000;
    color: #aaa;
    text-align: center;
    padding: 30px 20px;
}

.social-links {
    margin-bottom: 15px;
}

.social-links a {
    color: #fff;
    margin: 0 12px;
    font-size: 1.4rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #c30000;
    transform: scale(1.2);
}

.footer p {
    font-size: 0.9rem;
}

/* ================= WHATSAPP ================= */

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--red);
    color: #ffffff;
    padding: 15px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
    z-index: 1000;
}

.whatsapp-button:hover {
    background: #e0142f;
}

/* =================MAP-SECTION================== */
.map-section{
    padding: 60px 20px;
    background: #111;
    text.align: center;
}
.map-section h2{
    color: #fff;
    margin-bottom: 30px;
    font-size: 2rem;
    border-bottom: 3px solid #c30000;
    display: inline-block;
    padding-bottom: 10px;
}
.map-container{
    max-width: 1000px;
    margin:auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* =================BOOKINGS================== */
/* 
.booking-section {
    background: #000;
    padding: 70px 20px;
    text-align: center;
}

.booking-section h2 {
    color: #fff;
    margin-bottom: 40px;
    font-size: 2rem;
    border-bottom: 3px solid #c30000;
    display: inline-block;
    padding-bottom: 10px;
}

.booking-form {
    max-width: 600px;
    margin: auto;
    background: #111;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    color: #aaa;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #333;
    background: #000;
    color: #fff;
    border-radius: 6px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #c30000;
}

.book-btn {
    width: 100%;
    padding: 14px;
    background: #c30000;
    border: none;
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
}

.book-btn:hover {
    background: #900000;
}
*/

/* ================= RESPONSIVE ================= */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.1rem;
        text-align: center;
    }

    header nav a {
        margin: 0 8px;
        font-size: 0.9rem;
    }
}
@media (max-width: 768px) {
    .hero {
        background: url("images/logo_mobile.jpeg") center/cover no-repeat;
        height: 60vh;
    }
}
@media (max-width: 1200px) {
    .hero {
        height: 60vh;
        background-position: center top;
    }
}
@media (max-width: 992px) {
    .hero {
        height: 55vh;
        background-position: top center;
    }
}
