/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    width: 100%;
    height: 75px;
    background-color: #1a1a80;
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 1000;
}

.navbar .logo {
    font-size: 28px;
    font-weight: bold;
    color: orange;
    cursor: pointer;
}

.menu ul {
    display: flex;
    list-style: none;
}

.menu ul li {
    margin-left: 40px;
}

.menu ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: 0.3s;
}

.menu ul li a:hover {
    color: orange;
    text-decoration: underline;
}

.search {
    display: flex;
    align-items: center;
}

.srch {
    padding: 8px;
    border: 1px solid orange;
    border-right: none;
    border-radius: 5px 0 0 5px;
    background: transparent;
    color: white;
    font-size: 15px;
}

.srch::placeholder {
    color: white;
}

.btn {
    padding: 8px 15px;
    border: 2px solid orange;
    border-radius: 0 5px 5px 0;
    background-color: orange;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background-color: #ff6600;
}

/* Hero Section */
.hero {
    width: 100%;
    height: 100vh;
    background: url('https://miro.medium.com/v2/resize:fit:1400/1*GpyC3BaginCXOqaFP45EJw.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding-top: 75px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px #000;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px #000;
}

.btn-1 {
    cursor: pointer;
    padding: 10px 25px;
    background-color: #fc036b;
    border: 2px solid black;
    border-radius: 30px;
    color: whitesmoke;
    transition: 0.3s ease-in;
}

.btn-1:hover {
    box-shadow: 0 0 20px rgba(252,3,107,0.7);
    border-color: orange;
}

/* Sections */
section {
    width: 85%;
    margin: 100px auto 50px;
    text-align: center;
}

.title h1 {
    color: #484872;
    font-size: 2.5rem;
}

.line {
    width: 150px;
    height: 4px;
    background: #fc036b;
    margin: 10px auto 30px;
    border-radius: 5px;
}

/* Upcoming Events & Tours */
.main-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.col {
    flex: 1 1 45%;
    text-align: center;
}

.col img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: 0.5s;
}

.col img:hover {
    transform: scale(1.05);
    border: 3px solid orange;
}

/* Explore Section */
.explore {
    width: 90%;
    height: 80vh;
    background: url('https://images.unsplash.com/photo-1557311612-7227bf712063?fm=jpg&q=60&w=3000&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTB8fDM2MCUyMGRlZ3JlZXxlbnwwfHwwfHx8MA%3D%3D') center/cover no-repeat;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.explore .head {
    font-size: 3rem;
}

.explore .para {
    font-size: 1.2rem;
    margin: 20px 0;
}

/* Image Gallery */
.img-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.img-gallery img {
    width: 48%;
    height: auto;
    border-radius: 15px;
    transition: 0.4s;
}

.img-gallery img:hover {
    transform: scale(1.05);
    border: 3px solid orange;
}

/* Contact Section */
.contact {
    background-color: #f5f5f5;
    padding: 50px 20px;
    border-radius: 10px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.contact-info {
    flex: 1 1 40%;
    text-align: left;
    font-size: 1.1rem;
}

.contact-info p {
    margin: 15px 0;
}

.contact-info i {
    color: #fc036b;
    margin-right: 10px;
}

.contact-form {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #484872;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #fc036b;
}

/* Footer */
.footer {
    background-color: #484872;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

.footer .icon ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 15px;
    margin-top: 10px;
}

.footer .icon ul li button {
    padding: 8px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background-color: white;
    color: #484872;
    font-size: 1.2rem;
    transition: 0.3s;
}

.footer .icon ul li button:hover {
    background-color: #fc036b;
    color: white;
}

/* Responsive */
@media(max-width: 1024px) {
    .main-1 {
        flex-direction: column;
        align-items: center;
    }
    .img-gallery img {
        width: 100%;
    }
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
}
