/* main.css */

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

body {
    font-family: 'Helvetica Neue', sans-serif;
    color: #111;
    background-color: #fff;
    line-height: 1.6;
}

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

/* Header */
.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 10;
}

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

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

.nav-links a {
    text-decoration: none;
    color: #111;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #111;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.logo img {
    height: 50px;
}

/* Hero */
.hero {
    height: 80vh;
    background: url('../images/background1.jpeg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-text {
    background: rgba(255,255,255,0.9);
    padding: 40px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 3rem;
    font-family: 'Georgia', serif;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    color: #333;
}

/* Intro Section */
.intro {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.intro p {
    font-size: 1rem;
    color: #555;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 40px 20px;
    font-size: 0.9rem;
    color: #777;
    background: #f9f9f9;
    border-top: 1px solid #eee;
    margin-top: 60px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-text {
        padding: 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }
}
