* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    /*list-style: none;*/
    font-family: "ubuntu";
}
img {
    width: 100%;
}
header {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    background: #fbefb2; /* Updated background color */
}

header .header-left {
    display: flex;
    align-items: center;
}
header .header-left .logo {
    width: 140px;
}
header .header-left nav {
    margin-left: 50px;
    padding-top:19px;
}
header .header-left nav ul {
    display: flex;
    
}
nav ul li a {
    display: block;
    color: #030303;
    font-size: 18px;
    padding: 5px 10px;
    transition: 0.2s;
}
nav ul li a:hover,
nav ul li a.active {
    color:#fdb964;
}
nav .login-signup {
    display: none;
}
header .header-right {
    display: flex;
    align-items: center;
}
header .login-signup {
    color: #cfd9e0;
    font-weight: bold;
}
header .login-signup a {
    color: #fff;
    background: #DE5908;;
    padding: 5px 12px;
    border-radius: 12px;
}
header .header-right .hamburger {
    margin-left: 20px;
    cursor: pointer;
    display: none;
}
.underline-block {
  text-decoration: underline;
}

header .header-right .hamburger div {
    width: 30px;
    height: 2px;
    margin: 6px 0;
    background: #fff;
}
@media only screen and (max-width: 1000px) {
    header {
        padding: 0 20px;
    }
    header .header-right .hamburger {
        display: block;
    }
    header .header-left nav {
        margin: 0;
        position: absolute;
        top: -100%;
        left: 0;
        width: 100%;
        height: fit-content;
        background-color: #fbefb2;
        padding: 30px;
        transition: 0.3s;
        text-align: center;
        z-index: -1;
    }
    header .header-left nav.active {
        top: 70px;
    }
    header .header-left nav ul {
        display: block;
    }
}
@media only screen and (max-width: 500px) {
    nav .login-signup {
        display: block;
        margin-top: 20px;
    }
    header .header-right .login-signup {
        display: none;
    }
}
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.content {
    padding: 20px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

@media (max-width: 768px) {
    footer {
        font-size: 14px;
    }
}
.attractive-button {
    background-color: #3498db; /* Change this color to your preference */
    color: #fff; /* Text color */
    padding: 10px 20px; /* Adjust the padding as needed */
    border: none;
    border-radius: 5px; /* Rounded corners */
    cursor: pointer;
    transition: background-color 0.3s; /* Smooth color transition on hover */
}

.attractive-button:hover {
    background-color: #2980b9; /* Change this color to the hover state color you prefer */
}
.card {
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
  }
  
  .card:hover {
    transform: scale(1.02);
  }
  
  .card-img-top {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  
  .venue-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
  }
  
  .address {
    font-size: 16px;
    color: #555;
  }
  
  .opening-hours, .booking-fee {
    font-size: 16px;
    color: #777;
  }
  
  .attractive-button {
    background-color: #ff6f61;
    color: #fff;
    border: none;
    padding: 7px 18px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .attractive-button:hover {
    background-color: #ff503d;
  }
  
  .order-button {
    margin-top: 10px;
  }
  
  /* You can adjust the colors and styles to your liking. */
  
  /* Override the text-decoration property applied by the Bootstrap class */
  .explore_btn a {
    text-decoration: none; /* Or other desired value */
  }
  .header-left a {
    text-decoration: none; 
  }
  .btnPrevious,
.btnNext{
	display: inline-block;
	border: 1px solid #444348;
	border-radius: 3px;
	margin: 5px;
	color: #444348;
	font-size: 14px;
	padding: 10px 15px;
	cursor: pointer;
}
