﻿@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700&display=swap');

.taxi-background {
    min-height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.80), rgba(0,0,0,0.80)), url('/Images/TaxiBackground.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 5%;
}

.taxi-overlay {
    width: 100%;
    display: flex;
    justify-content: center;
}

.taxi-content {
    width: 100%;
    max-width: 900px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

    .taxi-content h1 {
        color: white;
        font-size: 56px;
        font-family: 'Cinzel', serif;
        text-transform: uppercase;
        letter-spacing: 4px;
        text-align: center;
        margin: 0 0 35px 0;
        padding: 0;
        background: transparent;
        text-shadow: 0 5px 15px rgba(0,0,0,0.7);
    }
/* HEADINGS */
.taxi-info h2 {
    color: #ffd369;
    font-size: 26px;
    font-family: 'Poppins', sans-serif;
    margin-top: 28px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

/* TEXT */
.taxi-info p {
    color: #f5f5f5;
    font-size: 18px;
    line-height: 1.9;
    font-family: 'Segoe UI', sans-serif;
}

/* BUTTON */
.visit-button {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 38px;
    background: #ffd369;
    color: black;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.35s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

    .visit-button:hover {
        background: white;
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.6);
    }
