/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* BODY */
body {
    background: #f5f7fa;
    color: #222;
}

/* NAVIGATION */
nav {
    background: #0077ff;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 18px;
    transition: 0.2s;
}

nav a:hover {
    opacity: 0.8;
}

/* HERO SECTION */
.hero {
    background: url("https://i.imgur.com/BH9quqe.jpg") center/cover no-repeat;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 10px black;
}

.hero p {
    font-size: 1.3rem;
    margin-top: 10px;
    text-shadow: 1px 1px 10px black;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    padding: 40px 0;
}

/* ABOUT PAGE IMAGE */
.about-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

/* CONTACT FORM */
form {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 18px rgba(0,0,0,0.1);
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0 20px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
}

button {
    padding: 12px 25px;
    background: #0077ff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 17px;
    transition: 0.2s;
}

button:hover {
    opacity: 0.8;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #0077ff;
    color: white;
    margin-top: 40px;
}
