@import url('https://fonts.googleapis.com/css2?family=Lora:wght@700&family=Inter:wght@400;500&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --white: #fff;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-color: var(--light-color);
    color: var(--dark-color);
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    padding: 2rem 0;
}

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

.logo {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav li {
    margin-left: 3rem;
}

nav a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

#hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}

.hero-content h1 {
    font-family: 'Lora', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #c0392b;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

section {
    padding: 6rem 0;
}

section h2 {
    font-family: 'Lora', serif;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

.feature-grid, .showcase-grid, .testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card, .showcase-card, .testimonial-card {
    background-color: var(--white-color);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.showcase-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.testimonial-card p {
    font-style: italic;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--primary-color);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form form {
    display: grid;
    gap: 1rem;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
}

.contact-form button {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #c0392b;
}

footer {
    padding: 4rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: 'Lora', serif;
    font-size: 2rem;
    color: var(--primary-color);
}

.footer-social a {
    margin-left: 1.5rem;
}

.footer-social img {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .logo {
        font-size: 2.2rem;
    }

    nav {
        flex-direction: column;
        align-items: center;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0;
        margin-top: 1.5rem;
    }

    nav li {
        width: 100%;
        margin: 0.5rem 0;
        margin-left: 0;
    }

    nav a {
        display: block;
        padding: 0.5rem;
        text-align: center;
    }

    #hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    section {
        padding: 4rem 0;
    }

    section h2 {
        font-size: 2.5rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        margin-bottom: 1rem;
    }

    .footer-social {
        margin-top: 1rem;
    }

    .footer-social a {
        margin: 0 0.75rem;
    }
}
