body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #0f0f0f;
    color: white;
}

/* NAVIGATION */
nav {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    z-index: 1000;
}

.logo {
    font-size: 26px;
    color: #ff2e63;
    font-weight: 600;
}

.menu a {
    color: white;
    margin-left: 30px;
    text-decoration: none;
    font-size: 16px;
}

.menu a:hover {
    color: #ff2e63;
}

/* HOME */
.home {
    height: 100vh;
    background: url('images/main.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.home-content {
    background: rgba(0,0,0,0.5);
    padding: 50px;
}

.home-content h1 {
    font-size: 70px;
}

/* SECTIONS */
.section {
    padding: 120px 40px;
    text-align: center;
    margin-top: 60px;
}

h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

/* BUTTON */
.button {
    display: inline-block;
    padding: 15px 30px;
    background: #ff2e63;
    color: white;
    text-decoration: none;
    margin-top: 20px;
    border-radius: 5px;
}

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    width: 80%;
    margin: auto;
}

.gallery img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    cursor: pointer;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* TABLE */
table {
    width: 60%;
    margin: auto;
    border-collapse: collapse;
}

td, th {
    padding: 14px;
    border-bottom: 1px solid #444;
}

th {
    background: #ff2e63;
}

/* WHATSAPP BUTTON */
.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25D366;
    color: white;
    padding: 15px 22px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
}

/* TAXI TEXT */
.taxi {
    margin-top: 20px;
    font-size: 18px;
    color: #ccc;
}

/* TABLET */
@media (max-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        width: 90%;
    }

    table {
        width: 85%;
    }

    .home-content h1 {
        font-size: 50px;
    }

    nav {
        padding: 15px 20px;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    nav {
        flex-direction: column;
        padding: 10px;
    }

    .menu {
        margin-top: 10px;
        text-align: center;
    }

    .menu a {
        margin: 5px 10px;
        font-size: 14px;
        display: inline-block;
    }

    .home {
        height: 90vh;
    }

    .home-content {
        padding: 20px;
    }

    .home-content h1 {
        font-size: 36px;
    }

    .section {
        padding: 80px 20px;
    }

    .gallery {
        grid-template-columns: 1fr;
        width: 95%;
    }

    .gallery img {
        height: auto;
    }

    table {
        width: 95%;
        font-size: 14px;
    }

    .whatsapp {
        right: 15px;
        bottom: 15px;
        padding: 12px 18px;
        font-size: 14px;
    }

    h2 {
        font-size: 26px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

    .logo {
        font-size: 20px;
    }

    .home-content h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 22px;
    }

    .button {
        padding: 12px 20px;
        font-size: 14px;
    }

}