/* ===== General Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #282322;
    background-color: #FFF3E3;
}

/* ===== Header & Navigation ===== */
header {
    background-color: #FFF3E3;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #282322;
    font-family: 'Instrument Serif', serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #282322;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #282322;
}

/* ===== Hero Section ===== */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: calc(100vh - 70px);
}

.hero-content {
    animation: slideInLeft 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #282322;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #282322;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: #282322;
    color: #FFF3E3;
}

.btn-primary:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 35, 34, 0.3);
}

.btn-secondary {
    background-color: #FFF3E3;
    color: #282322;
    border: 2px solid #282322;
}

.btn-secondary:hover {
    background-color: #282322;
    color: #FFF3E3;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 0.8s ease;
}

.hero-video {
    width: 100%;
    max-height: 480px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

/* ===== Features Section ===== */
.features {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    background-color: #FFF3E3;
    border-radius: 10px;
}

.features h2,
.about h2,
.contact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #282322;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background-color: #FFF3E3;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #282322;
}

.feature-card p {
    color: #282322;
    font-size: 0.95rem;
}

/* ===== About Section ===== */
.about {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    background-color: #FFF3E3;
    border-radius: 10px;
    text-align: center;
}

.about p {
    font-size: 1.1rem;
    color: #282322;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Contact Section ===== */
.contact {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    background-color: #FFF3E3;
    border-radius: 10px;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #282322;
    box-shadow: 0 0 0 3px rgba(40, 35, 34, 0.1);
}

/* ===== Footer ===== */
footer {
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

/* ===== Animations ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 2rem 1rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        flex-direction: column;
        gap: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .features h2,
    .about h2,
    .contact h2 {
        font-size: 1.8rem;
    }
}
