/*
Reference: THQCDU-98391557020438272
Non Commercial
Confidential
Dimension: 14th Tishri 5786
Private Property of THQ Travel Unincorporated
Version 0.1 
*/

/* -------------------- General Styles -------------------- */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* -------------------- Header & Navigation -------------------- */
header {
    background-color: #1a1a1a; /* solid dark background */
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* subtle shadow */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-height: 60px;
    display: block;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 0;
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #ff5a5f;
    border-bottom: 2px solid #ff5a5f;
}

/* -------------------- Hero Section -------------------- */
.hero {
    background: url('https://images.unsplash.com/photo-1526772662000-3f88f10405ff?auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.hero .btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff5a5f;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.hero .btn:hover {
    background-color: #e14c50;
}

/* -------------------- Services Section -------------------- */
.services {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 60px 0;
    background-color: #fff;
}

.service-card {
    flex: 1 1 300px;
    margin: 15px;
    padding: 25px;
    background-color: #eaeaea;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.service-card h3 {
    margin-top: 0;
    font-size: 1.5em;
}

/* -------------------- Hotel / Transfer Listings -------------------- */
.hotel-card, .transfer-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.hotel-card h3, .transfer-card h3 {
    margin-top: 0;
    font-size: 1.3em;
}

.hotel-card p, .transfer-card p {
    margin: 5px 0;
}

.hotel-card .btn, .transfer-card .btn {
    margin-top: 10px;
}

/* -------------------- Footer -------------------- */
footer {
    text-align: center;
    padding: 25px 0;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 0.9em;
}

footer p {
    margin: 5px 0;
}

footer .payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 5px;
}

footer .payment-icons img {
    height: 24px;
    width: auto;
    vertical-align: middle;
    filter: brightness(1.2);
    transition: transform 0.3s;
}

footer .payment-icons img:hover {
    transform: scale(1.1);
}

footer .footer-links {
    margin: 10px 0;
    font-size: 0.9em;
}

footer .footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s;
}

footer .footer-links a:hover {
    color: #ff5a5f;
}

/* -------------------- Buttons -------------------- */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff5a5f;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #e14c50;
}

/* -------------------- Responsive -------------------- */
@media (max-width: 1024px) {
    .services {
        flex-direction: column;
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        margin-top: 10px;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hero {
        padding: 80px 20px;
    }

    .hero h2 {
        font-size: 2em;
    }
}

/* -------------------- Contact Form -------------------- */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1em;
}

.contact-form button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #ff5a5f;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #e14c50;
}

/* -------------------- Mobile Navigation -------------------- */

/* Hamburger toggle */
.menu-toggle {
    display: none;
    font-size: 1.8em;
    cursor: pointer;
    color: #fff;
    user-select: none;
    position: relative;
    z-index: 1002; /* above menu */
}

/* Mobile menu dropdown */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        position: absolute;
        top: 100%;           /* directly below header */
        left: 0;
        width: 100%;
        background-color: #1a1a1a;
        flex-direction: column;
        overflow: hidden;
        max-height: 0;       /* collapsed */
        transition: max-height 0.3s ease;
        z-index: 1001;
    }

    nav ul.show {
        max-height: 400px;   /* adjust to number of links */
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    nav ul li a {
        font-size: 1em;      /* normal size */
    }

    nav ul li a.active {
        pointer-events: none; /* prevent reload */
        opacity: 0.7;         /* subtle visual cue */
    }
}

