/* FOR THE WHOLE DOCUMENT */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* HEADER */
header {
    background-color: white;
    padding: 10px 60px;
}

.navbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

.logo {
    display: block;
    color: white;
    font-size: 20px;
}

.navlinks {
    display: flex;
    gap: 40px;
    list-style: none;
    justify-content: center;
}

.navlinks a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 16px;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 90vh;

    background:
        url("Images/pexels-pixabay-221471.jpg") no-repeat center center/cover;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}
.hero-content h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background: #b11226;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    transition: 0.3s;
}

.btn:hover {
    background: #8f0d1f;
}

/* POPULAR DESTINATIONS */
.destinations {
    padding: 80px 80px;
    /* increase side spacing */
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    /* centers everything */
    padding: 0 20px;
    /* small side spacing */
}

/* Section Heading */
.destinations h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
}

.destination-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 cards per row */
    gap: 30px;
}

.destination-card {
    width: 100%;
    /* auto fit grid */
    border-radius: 10px;
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    margin: 10px 0;
    font-size: 22px;
}

.card-content p {
    font-size: 14px;
    margin-bottom: 20px;
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.explore-btn {
    background-color: #0d47a1;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

.explore-btn:hover {
    background-color: #154fa3;
}

.explore-more {
    text-align: center;
    margin-top: 30px;
    /* space above button */
    margin-bottom: 20px;
}

.explore-more-btn {
    display: inline-block;
    padding: 16px 45px;
    background-color: #b11226;
    /* your brand red */
    color: white;
    text-decoration: none;
    font-size: 17px;
    border-radius: 5px;
    transition: 0.3s;
}

.explore-more-btn:hover {
    background-color: #8f0d1f;
}

@media (max-width: 1024px) {
    .destination-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .destination-container {
        grid-template-columns: 1fr;
    }
}

/* ABOUT */
.about {
    padding: 100px 0;
    background-color: #ffffff;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Image */
.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
}

/* Content */
.about-content {
    max-width: 500px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #555;
}

/* Button */
.about-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 28px;
    background-color: #b11226;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.about-btn:hover {
    background-color: #8f0d1f;
}

/* CONTACT US */
.contact-page {
    padding: 80px 100px;
}

.contact-page h1 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
}

.contact-container {
    display: flex;
    gap: 40px;
}

.contact-form,
.contact-map {
    flex: 1;
}

.contact-form h2 {
    margin-bottom: 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}

.contact-form textarea {
    height: 140px;
    resize: vertical;
}

.contact-form button {
    background: #b11226;
    color: white;
    border: none;
    padding: 14px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 16px;
}

.contact-form button:hover {
    background: #8f0d1f;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.info-card {
    width: 300px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-card i {
    font-size: 28px;
    color: #b11226;
    margin-bottom: 15px;
}

.info-card h3 {
    margin-bottom: 15px;
}

/* GUEST BOOK */
.guestbook-hero {
    background:
        linear-gradient(rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)),
        url("Images/pexels-pixabay-221471.jpg") no-repeat center center;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    text-align: center;
    color: white;

    padding: 140px 20px;
}

.guestbook-hero h1 {
    font-size: 56px;
    margin-bottom: 15px;
}

.guestbook-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: auto;
}

.testimonials {
    padding: 100px 20px;
    background-color: #f9f9f9;
}

.testimonials h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);

    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #f4b400;
    font-size: 22px;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-card h3 {
    margin-bottom: 5px;
}

.testimonial-card span {
    color: #777;
    font-size: 14px;
}

.review-source {
    display: inline-block;
    margin-top: 8px;

    background-color: #e8f0fe;
    color: #1967d2;

    font-size: 12px;
    font-weight: 600;

    padding: 5px 10px;
    border-radius: 20px;
}

.google-review-btn {
    text-align: center;
    margin-top: 50px;
}

.google-review-btn a {
    display: inline-block;
    padding: 14px 30px;
    background-color: #4285F4;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.google-review-btn a:hover {
    background-color: #3367d6;
}

/*FOOTER*/
.footer {
    background-color: #07013c;
    color: #fff;
    padding: 50px 60px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #aaa;
}

/* ICONS */
.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    margin-right: 15px;
    font-size: 18px;
    color: white;
    background-color: #333;
    padding: 8px 10px;
    border-radius: 6px;
    transition: 0.3s;
}

.social-icons a:hover {
    background-color: #154fa3;
}

/* DOMESTIC PACKAGES */

.dom_pack {
    display: flex;
    gap: 20px;
}

.dom_pic {
    display: block;
    color: white;
}

#dom1 {
    background-image: url(Andaman1.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    height: 150px;
    width: 150px;
}

#dom2 {
    background-image: url(Ayodhya1.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    height: 100px;
    width: 150px;
}

#dom3 {
    background-image: url(Goa1.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    height: 100px;
    width: 150px;
}

#dom4 {
    background-image: url(Gujarat1.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    height: 150px;
    width: 150px;
}

#dom5 {
    background-image: url(Himachal.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    height: 150px;
    width: 150px;
}

#dom6 {
    background-image: url(Kerala1.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    height: 150px;
    width: 150px;
}

#dom7 {
    background-image: url(Ladakh.webp);
    background-size: contain;
    background-repeat: no-repeat;
    height: 100px;
    width: 150px;
}

#dom8 {
    background-image: url(Rajasthan1.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    height: 100px;
    width: 150px;
}

#dom9 {
    background-image: url(Sikkim1.avif);
    background-size: contain;
    background-repeat: no-repeat;
    height: 100px;
    width: 150px;
}