/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: #b8860b;
}

header .main-nav {
    display: flex;
}

header nav a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.side-menu {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    padding-top: 4rem;
}

.side-menu a {
    display: block;
    padding: 1rem 2rem;
    text-decoration: none;
    color: #333;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: #333;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* Hero Section (Image Banner) */
.hero-image {
    background: url('../images/hero.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    background-color: rgba(0,0,0,0.5);
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-buttons a {
    background-color: #b8860b;
    color: #fff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    margin: 0.5rem;
}


/* Sections */
section {
    padding: 4rem 2rem;
}

section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

/* About Us */
.about-us {
    background-color: #fff;
}

.about-us p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
}

/* Taxi Packages */
.package-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.1);
}

.card h3 {
    margin: 1rem 0;
}

.card p {
    margin-bottom: 1rem;
}

.card .price {
    font-weight: bold;
    color: #b8860b;
}

.card .book-now {
    background-color: #000080;
    color: #fff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
    border-radius: 5px;
}


/* Our Vehicles */
.vehicle-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.vehicle-item {
    text-align: center;
}

.vehicle-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 10px;
}


/* Why Choose Us */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: center;
}


.feature i {
    font-size: 2rem;
    color: #b8860b;
    margin-bottom: 0.5rem;
}

/* Rameswaram Places */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.place-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}


.place-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.place-card:hover img {
    transform: scale(1.1);
}

.place-card h3 {
    padding: 1rem;
    margin: 0;
}

.place-card p {
    padding: 0 1rem 1rem;
    margin: 0;
}


/* Footer */
footer {
    background-color: #000080;
    color: #fff;
    padding: 2rem;
    text-align: center;
    background-image: url('https://www.transparenttextures.com/patterns/mandala.png');
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-content a {
    color: #fff;
    text-decoration: none;
}

.social-icons a {
    margin: 0 0.5rem;
    font-size: 1.5rem;
}

.copyright {
    margin-top: 1rem;
    border-top: solid 1px #928fda;
    padding-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    header .main-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons a {
        margin-bottom: 0.5rem;
        width: 50%;
    }

    .footer-content {
        flex-direction: column;
        align-items: baseline;
    }
}

.contact-info{
    text-align: left;
}

.contact-info p{
    margin: 5px 0;
}