/* Global Styles */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Open Sans, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #333333;
    transition: background-color 0.5s ease-in-out;
}

a {
    text-decoration: none;
    color: #FFC107;
}

/* Hero Section */

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('background-image.jpg');
    background-size: cover;
    background-position: center;
}

.hero-section h1 {
    color: #FFFFFF;
    text-shadow: 0px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-section p {
    color: #FFFFFF;
    font-size: 18px;
}

.cta-button {
    background-color: #FFC107;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

/* Header Section */

.header-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #212121;
    padding: 1em;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-section nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-section li {
    margin-right: 20px;
}

.header-section a {
    color: #FFFFFF;
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1, .logo p {
    color: #FFFFFF;
    font-size: 18px;
}

/* About Section */

.about-section {
    padding-top: 20vh;
}

.about-section h1 {
    text-align: center;
}

.about-section img {
    width: 100%;
    height: auto;
}

/* Explore Section */

.explore-section {
    padding-top: 10vh;
}

.explore-section h1 {
    text-align: center;
}

.explore-section button {
    background-color: #FFC107;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.featured-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.featured-content h2 {
    text-align: left;
}

.featured-content p {
    font-size: 18px;
    color: #333333;
}

.featured-content a {
    text-decoration: none;
    color: #FFC107;
}

/* Contact Section */

.contact-section {
    padding-top: 10vh;
}

.contact-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-section li {
    margin-bottom: 10px;
}

.contact-section a {
    text-decoration: none;
    color: #FFC107;
}

/* Footer Section */

.footer-section {
    background-color: #333333;
    color: #FFFFFF;
    padding-top: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-media-links {
    display: flex;
    gap: 10px;
}

.social-media-links i {
    font-size: 24px;
    cursor: pointer;
}
