/* Base Styles */
:root {
    --primary-color: #1a73e8;
    --dark-color: #161616;
    --light-color: #f9f9f9;
    --text-color: #333;
    --body-bg: #ffffff;
    --accent-color: #827182;
    --accent-light: #a18fa1;
    --footer-bg: #161616;
    --border-color: #d3d3d3;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Josefin Sans', Arial, sans-serif;
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--body-bg);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Righteous', serif, system-ui;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: color 0.2s ease;
}

a:hover {
    color: #5a4a5a;
}

/* Container */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header / Hero Section */
.hero {
    background-color: var(--dark-color);
    color: #fff;
    text-align: center;
    padding: 80px 24px 100px;
}

.hero .logo {
    color: var(--accent-color);
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 60px;
}

.hero .tagline {
    color: #f7f7f7;
    font-size: 38px;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.3;
}

/* About Section */
.about {
    background-color: #fff;
    padding: 80px 24px;
}

.section-title {
    color: var(--accent-light);
    font-size: 28px;
    text-align: center;
    margin-bottom: 50px;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-image {
    width: 100%;
    max-width: 600px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.about-card {
    text-align: center;
}

.about-card h3 {
    color: #333;
    font-size: 22px;
    margin-bottom: 16px;
}

.about-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    max-width: 600px;
}

/* Contact Section */
.contact {
    background-color: #f8f8f8;
    padding: 80px 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.contact-form h3,
.contact-info h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
}

.contact-info p {
    color: #555;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 16px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.btn {
    display: inline-block;
    background-color: var(--dark-color);
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.btn:hover {
    background-color: #333;
}

.form-status {
    margin-top: 16px;
    padding: 12px;
    border-radius: 4px;
    display: none;
}

.form-status.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.footer {
    background-color: var(--footer-bg);
    color: #a4a4a4;
    padding: 40px 24px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer p {
    font-size: 14px;
}

.footer-links {
    list-style: none;
}

.footer-links a {
    color: #ccc;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
    .hero {
        padding: 60px 20px 80px;
    }

    .hero .logo {
        font-size: 24px;
        letter-spacing: 4px;
        margin-bottom: 40px;
    }

    .hero .tagline {
        font-size: 28px;
    }

    .about,
    .contact {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 24px;
    }
}
