* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

nav {
    background: #000;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 5px solid #f00;
}

.logo {
    color: #ff0;
    font-size: 24px;
    font-weight: bold;
    margin-right: 40px;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
}

a:hover {
    background: #000099;
}

/* Hero Section */

.hero {
    height: 500px;
    background-image: url("hero.jpeg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 45px;
}

.hero p {
    font-size: 20px;
}

.hero-btn {
    background: #000099;
    color: #fff;
    padding: 12px 25px;
    display: inline-block;
    border-radius: 5px;
}

.hero-btn:hover {
    background: #f00;
}

/* Content Sections */

.message {
    background: #ff0;
    color: #000;
    font-size: 20px;
    padding: 15px;
    text-align: center;
}

.creator {
    background: #fff;
    color: #000;
    font-size: 20px;
    padding: 15px;
    text-align: center;
}

.lion {
    background: #0000ff;
    color: #fff;
    font-size: 20px;
    padding: 15px;
    text-align: center;
}

/* About Page */

.about-hero {
    background: #000099;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.about-hero h1 {
    font-size: 45px;
    margin: 0 0 15px;
}

.about-hero p {
    font-size: 20px;
}

.about-content {
    max-width: 900px;
    margin: auto;
    padding: 50px 20px;
    line-height: 1.8;
}

.about-content h2 {
    font-size: 30px;
    color: #000099;
    margin-top: 30px;
}

.about-content p {
    font-size: 18px;
    color: #333;
}


/* Contact Page */

.contact-hero {
    background: #000099;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.contact-hero h1 {
    font-size: 45px;
    margin: 0 0 15px;
}

.contact-hero p {
    font-size: 20px;
}

.contact-container {
    max-width: 1000px;
    margin: auto;
    padding: 50px 20px;
    display: flex;
    gap: 50px;
}

.contact-info,
.contact-form {
    flex: 1;
}

.contact-info h2,
.contact-form h2 {
    color: #000099;
    font-size: 30px;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.7;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background: #000099;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #000;
}


/* Mobile Contact Page */

@media (max-width: 768px) {

    .contact-container {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }

    .contact-hero h1 {
        font-size: 32px;
    }

    .contact-hero p {
        font-size: 17px;
    }

}

/* Footer */

footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 25px;
    border-top: 5px solid #f00;
}

/* Responsive Design */

@media (max-width: 768px) {

    nav {
        flex-direction: column;
    }

    .logo {
        margin-right: 0;
        margin-bottom: 15px;
    }

    ul {
        flex-direction: column;
        text-align: center;
        width: 100%;
        gap: 5px;
    }

    ul li,
    ul a {
        width: 100%;
    }

    .hero {
        height: 400px;
        padding: 20px;
    }

    .hero-content {
        padding: 25px 15px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 17px;
    }
}