# THE VISTA TRAVEL & TOURS (TVTT) # Luxury Royal Blue & Gold Premium Theme========================================================================css/style.css=====================================================================@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #0a1931, #16213e);
    color: #ffffff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 65px;
}

nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #f5c518;
    bottom: -5px;
    left: 0;
    transition: 0.4s;
}

nav a:hover::after {
    width: 100%;
}

.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1501785888041-af3ef285b470') center/cover;
}

.hero h1 {
    font-size: 55px;
    color: #f5c518;
}

.hero p {
    font-size: 20px;
    margin: 20px 0;
}

.btn {
    padding: 14px 35px;
    border: none;
    border-radius: 30px;
    background: #f5c518;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #ffffff;
    transform: scale(1.05);
}

.section {
    padding: 80px 60px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: 0.4s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card h3 {
    padding: 20px;
    color: #f5c518;
}

.package-card {
    padding: 25px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 25px;
    border-left: 5px solid #f5c518;
    transition: 0.3s;
}

.package-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.package-card h3 {
    color: #f5c518;
    margin-bottom: 10px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: auto;
}

input,
textarea {
    padding: 15px;
    border-radius: 8px;
    border: none;
    outline: none;
}

button {
    padding: 15px;
    border: none;
    border-radius: 30px;
    background: #f5c518;
    font-weight: 600;
    cursor: pointer;
}

button:hover {
    background: #ffffff;
}

footer {
    background: #000814;
    padding: 40px;
    text-align: center;
    margin-top: 50px;
}

.social-icons a {
    color: #f5c518;
    margin: 0 12px;
    font-size: 26px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ffffff;
}

@media(max-width:768px) {
    header {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 35px;
    }
}
