/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
}

/* Header and Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #222;
    color: white;
}

.logo a {
    font-family: 'Arial', sans-serif; /* Clean and modern font */
    font-size: 24px; /* Adjust size */
    font-weight: bold;
    color: white; /* White text for the logo */
    text-decoration: none; /* No underline */
    text-transform: uppercase; /* Capitalized letters */
    letter-spacing: 2px; /* Add letter spacing for elegance */
    transition: color 0.3s ease;
}

.logo a:hover {
    color: #FFD700; /* Gold hover effect */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FFD700;
}

.hamburger {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    background-color: #FFD700;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e0c200;
}

/* About Preview Section */
.about-preview {
    padding: 40px;
    text-align: center;
    background-color: #fff;
}

.about-preview h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.about-preview p {
    margin-bottom: 20px;
    color: #555;
}

.btn.secondary {
    background-color: #222;
    color: white;
}

.btn.secondary:hover {
    background-color: #444;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #222;
        padding: 10px;
    }

    .nav-links.active {
        display: flex;
    }
}
