body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background-color: #f8f1de;
    color: #333;
    margin: 0;
    line-height: 1.7;
}

/* --- Left Section --- */
.left-section {
    background: #f8f1de;
    padding: 2rem;
    min-height: 100vh;
}

.logo-wrapper {
    padding-bottom: 1rem;
}

.logo {
    max-width: 180px;
}

.left-inner {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    animation: fadeIn 0.8s ease-in-out both;
}

.headline {
    font-family: 'Anton', sans-serif;
    font-size: 2.1rem;
    font-weight: normal;
    line-height: 1.4;
    color: #111;
    margin-bottom: 1rem;
}

.subtext {
    font-size: 1.1rem;
    font-weight: 400;
    color: #444;
    max-width: 100%;
}

/* --- Social Icons --- */
.socials {
    margin-top: 3rem;
}

.social-icons a {
    font-size: 1.2rem;
    color: #222;
    background-color: #fff;
    border-radius: 50%;
    padding: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
    color: #fff;
}

.social-icons a[aria-label="Facebook"]:hover {
    background-color: #3b5998;
}

.social-icons a[aria-label="Instagram"]:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icons a[aria-label="Twitter"]:hover {
    background-color: #1da1f2;
}

.get-direction a {
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #222;
    background-color: transparent;
    color: #222;
}

.get-direction a:hover {
    background-color: #222;
    color: #fff;
}


/* --- Right Section --- */
.right-section {
    padding: 0;
    background-color: #f8f1de;
}

.carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100vh;
}

/* --- Contact Section --- */
.contact-section {
    font-family: 'Inter', sans-serif;
    background: #f9f9f9;
    color: #333;
    padding: 4rem 3rem;
}

.contact-section h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #111;
}

.contact-section label {
    font-weight: 500;
}

.contact-section input,
.contact-section textarea {
    font-size: 1rem;
    padding: 0.75rem;
}

.contact-section button {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    text-transform: none;
}

.site-footer {
    background-color: #e8dfca;
    color: #444;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    border-top: 1px solid #ddd;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .left-section {
        padding: 2rem 1.5rem;
    }

    .left-inner {
        padding-left: 0;
        padding-right: 0;
        align-items: center;
        text-align: center;
    }

    .headline {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .subtext {
        font-size: 1rem;
        line-height: 1.6;
    }

    .social-icons {
        justify-content: center;
        margin-top: 1.5rem;
    }

    .get-direction {
        text-align: center;
        margin-top: 1.5rem;
    }

    .carousel-item img {
        height: 280px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
