* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(145deg, #0a0a0a 0%, #14100a 100%);
    color: #f0ebe3;
}

:root {
    --black: #0b0b0b;
    --rich-black: #000000;
    --deep-red: #9e2a2a;
    --crimson: #ba2c2c;
    --gold: #d4af37;
    --gold-light: #f3e5ab;
    --gray-dark: #1f1f1f;
    --card-bg: rgba(25, 25, 30, 0.92);
    --coral: #ff6b4a;
    --teal: #2a9d8f;
}

.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1000;
}
header { display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: black;
    box-shadow: #141413;
}
.logoimg {
     display: block;
    height: 50px;
    width: 50px;
    border-radius: 50%;
}
.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
}

.logo i {
    color: var(--crimson);
    margin-right: 8px;
}
.p1 {
    text-align: center;
    padding: 30px;
    font-size: larger;
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #e0e0e0;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 4px;
}

.hero {
    background-image: url('./background.jpeg');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 0 0 40px 40px;
    margin-bottom: 2rem;
    max-width: 100%; height: auto;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
    width: 100%;
    padding: 3rem;
    border-radius: 0 0 40px 40px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
}

.gold-text {
    color: var(--gold);
}

.hero-content p {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    margin: 0 5px;
}

.btn-primary {
    background: var(--deep-red);
    color: white;
}

.btn-primary:hover {
    background: var(--gold);
    color: black;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: black;
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
}

.btn-small {
    background: var(--deep-red);
    border: none;
    padding: 6px 14px;
    border-radius: 30px;
    color: white;
    cursor: pointer;
    font-size: 0.8rem;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.section-title {
    font-size: 2rem;
    border-left: 5px solid var(--gold);
    padding-left: 1rem;
    margin: 2rem 0 1.5rem;
}

.featured-grid,
.hotels-grid,
.transport-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    overflow: hidden;
    width: 300px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: 0.25s;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
}

.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gold);
}

.card-content {
    padding: 1.3rem;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.price {
    color: var(--gold);
    font-weight: 700;
    margin: 10px 0;
    font-size: 1.2rem;
}

.book-btn {
    background: var(--deep-red);
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.book-btn:hover {
    background: var(--gold);
    color: black;
}

.page-header {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
}

.page-header h1 {
    font-size: 2.2rem;
}

.custom-booking-form {
    background: var(--card-bg);
    border-radius: 28px;
    padding: 1.8rem;
    margin: 2rem 0;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

input, select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background: #2a2a2a;
    border: 1px solid #444;
    color: white;
    border-radius: 40px;
    outline: none;
}

input:focus, select:focus {
    border-color: var(--gold);
}

.booking-summary {
    background: #111;
    border-radius: 28px;
    padding: 1.5rem;
    margin-top: 2rem;
    border-left: 4px solid var(--gold);
}

.booking-summary h3 {
    margin-bottom: 1rem;
}

#bookingList, #transportBookingList {
    background: #1e1e1e;
    border-radius: 20px;
    padding: 1rem;
    margin: 1rem 0;
    min-height: 80px;
}

.booking-item {
    border-bottom: 1px solid #333;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.image-guide {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
    border: 1px dashed var(--gold);
}

.image-guide code {
    background: #2a2a2a;
    padding: 4px 8px;
    border-radius: 8px;
    color: var(--gold);
}

footer {
    background: #030303;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #2a2a2a;
    margin-top: 3rem;
    color: #aaa;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .card {
        width: 90%;
    }
}
#hotel {
  background-image: url(/hotel3.jpeg);
  background-color: #f5deb3;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  max-width: 100%; height: auto;
}
#discount {
    background: var(--deep-red);
    width: 40%;
    padding: 10px;
    border: none;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}