/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #1a1a1a;
    color: #fff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header */
header {
    background-color: #000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 2em;
    font-weight: 700;
    color: #ffcc00;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 200px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin-top: -80px;
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 4.5em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 40px;
}

.btn {
    background-color: #ffcc00;
    color: #000;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.btn:hover {
    background-color: #e6b800;
    transform: scale(1.05);
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #222;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3em;
    color: #ffcc00;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.2em;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    text-align: center;
}

.contact h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3em;
    color: #ffcc00;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact input, .contact textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #444;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

.contact .btn {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: #000;
    color: #888;
    text-align: center;
    padding: 50px 0;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #ffcc00;
    margin: 0 15px;
    font-weight: 700;
}

footer p {
    margin: 5px 0;
}

.clickable-image {
    cursor: pointer;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    .hero h1 {
        font-size: 3em;
    }
}
