@import url('https://fonts.googleapis.com/css2?family=Inknut+Antiqua:wght@400;600&family=Inter:wght@300;400;600&display=swap');

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f4f9;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background-color: #000;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo a {
    text-decoration: none;
    color: #fff;
    font-size: 1.4rem;
    font-family: 'Inknut Antiqua', serif;
    font-weight: 600;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    padding: 6px 12px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-links a.active,
.nav-links a:hover {
    background-color: #fff;
    color: #000;
}

.cta .btn {
    text-decoration: none;
    background-color: #fff;
    color: #000;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.3s ease;
}

.cta .btn:hover {
    background-color: #e0e0e0;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #1a1a1a, #333);
    color: #fff;
    padding: 80px 10%;
    text-align: center;
}

.hero-content h1 {
    font-family: 'Inknut Antiqua', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    font-weight: 300;
}

.hero .btn {
    background-color: #fff;
    color: #000;
    padding: 10px 22px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero .btn:hover {
    background-color: #e6e6e6;
}

/* Section Styling */
.section {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Inknut Antiqua', serif;
}

.section h3.myname {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #444;
    font-weight: 500;
}

.section p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    font-weight: 400;
}

/* Contact Form */
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

input, textarea {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
}

textarea {
    resize: vertical;
}

button[type="submit"] {
    background-color: #000;
    color: #fff;
    padding: 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #444;
}

/* Footer */
footer {
    text-align: center;
    padding: 1.2rem 0;
    background: #000;
    color: #fff;
    font-size: 0.9rem;
    margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1.5rem 5%;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}