/* styles.css */

/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;  
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    background-color: #141414;
    color: rgb(113, 113, 113);
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: white;
}

.cta {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    background: url("Liquid.jpg") no-repeat center center/cover;
    background-attachment: fixed;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgb(255, 255, 255);
    text-align: center;
    h1 {
        font-size: 40px;
      }
      p {
        font-size: 50px;
        font-family: "Copperplate",Fantasy;
      }
}

.hero .btn {
    background-color: #ff0000;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 20px;
}

/* Quote Section */
.quote {
    background-color: #f0f8ff;
    text-align: center;
    padding: 50px 20px;
    font-style: italic;
}

/* Upcoming Events Section */
.upcoming-events {
    text-align: center;
    padding: 50px 20px;
}

.events {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.event {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
}

.event img {
    width: 100%;
    border-radius: 10px;
}

.event .btn {
    background-color: #ff0000;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
}

/* Explore the World Section */
.explore-world {
    background: url('[Explore Image Link]') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.explore-world .btn {
    background-color: #ff0000;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 20px;
}

/* Upcoming Tours & Destinations Section */
.upcoming-tours {
    text-align: center;
    padding: 20px 20px;
}

.tours {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tour {
    background-color: black;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 200px;
}

.tour img {
    width: 15%;
    border-radius: 10px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}
