* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f8f8;
    color: #333;
}

/* Navbar */
/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-bottom: 5px solid #a0522d;  /* Add brown line under the navbar */
}

.navbar a:is(:link, :active, :visited).active{
    color:#ae5105c8;
    background: transparent;
}
.navbar ul {
    display: flex;
    list-style: none;
}

.navbar ul li {
    margin-left: 20px;
}

.navbar ul li a {
    text-decoration: none;
    color: #010000;
    font-size: 20px;
    padding: 30px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

.navbar ul li a:hover {
    color: #f4a261;
}
/*logo */
.logo img {
    width: 50px;  /* Adjust this value as needed */
    height: auto;  /* Maintains aspect ratio */
}

/* Hero Section */
.hero {
    background: url('temple-bg.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    margin-left: 70px;
    margin-right: 70px;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-content {
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 80px;
    margin-bottom: 20px;
}

.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-bar input {
    padding: 10px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    width: 300px;
}

.search-bar button {
    background-color: #b5570ab0;
    border: none;
    padding: 10px 20px;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    margin-left: 10px;
}

.search-bar button:hover {
    background-color: #8f4e0c;
}

/* Places Section */
.places {
    display: flex;
    justify-content: flex-start;  /* Align content to the left */
    align-items: flex-start;
    padding: 50px 20px;
    
}

.menu:is(:link, :active, :visited).active{
    color:white;
    background-color:black;
}

/* Menu Column (Vertical) */
.menu {
    margin-right: 30px;
    margin-left: 70px;
    text-align: left;  /* Align text to the left */
    display: flex;
    flex-direction: column;  /* Stack buttons vertically */
    gap: 10px;  /* Space between buttons */
}

.menu button {
    background-color: transparent;
    border: none;
    padding: 10px 20px;
    margin-bottom: 10px;
    color: #74450e;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    font-size: 30px;
    text-align: left;  /* Align button text to the left */
}

.menu button.active {
    background-color: #ae5105c8;
    color: white;
}

.menu button:hover{
    background-color: #ae5105c8;
    color: white;
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Enhance shadow during zoom */
}

/* Cards */
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: calc(100% - 230px); /* Adjust card width according to the menu width */
}

.card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth zoom and shadow effect */
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Card zoom on hover */
.card:hover {
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Enhance shadow during zoom */
}

/* Card content */
.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-content .explore {
    background-color: #ae5105c8;
    border: none;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding: 10px 20px;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
}

.card-content .explore:hover {
    background-color: #7b3904;
}

.card-content .rating {
    display: block;
    margin-top: 10px;
    color: #f4a261;
}
/* footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-content p {
    margin-bottom: 10px;
}

.socials {
    list-style-type: none;
    display: flex;
    justify-content: center;
}

.socials li {
    margin: 0 10px;
}

.socials a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.socials a:hover {
    text-decoration: underline;
}