* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
    background: #FFF8E7;
    color: #333333;
    line-height: 1.6;
}

nav {
    width: 100%;
    padding: 15px 40px;
    background: #D72638;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

nav h1 {
    font-size: 26px;
    font-weight: bold;
}

nav div a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 25px;
    font-weight: bold;
    transition: 0.2s;
}

nav div a:hover {
    color: #ffffff;
}

.hero {
    height: 100vh;
    background:
        linear-gradient(#00000073, #00000073),
        url('../image/banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text {
    width: 100%;
    max-width: 800px;
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
}

.hero-text p {
    margin-top: 10px;
    font-size: 24px;
    color: #ffffff;
}

section {
    padding: 50px 40px;
    scroll-margin-top: 120px;
    background: #ffffff;
    border-radius: 8px;
    margin: 30px 150px;
    box-shadow: 0 2px 6px #00000012;
}

.section-title {
    font-size: 28px;
    color: #d72638;
    margin-bottom: 15px;
    border-left: 6px solid #ffd54f;
    padding-left: 12px;
}

.content-block {
    display: flex;
    align-items: top;
    gap: 40px;
    margin-bottom: 30px;
}

.content-block img {
    width: 500px;
    height: 300px;
    object-fit: cover; 
    border-radius: 12px;
    box-shadow: 0 4px 14px #00000022;
}

.content-text {
    width: 55%;
    font-size: 17px;
    line-height: 1.7;
}

.slider {
    width: 100%;
    max-width: 900px;
    height: 450px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 4px 14px #00000022;
}

.slides {
    width: 100%;
    height: 100%;
    display: flex;
    animation: slide 12s infinite;
}

.slides img {
    width: 100%;
    object-fit: cover;
}

@keyframes slide {
    0% { transform: translateX(0%); }
    33% { transform: translateX(0%); }
    38% { transform: translateX(-100%); }
    71% { transform: translateX(-100%); }
    76% { transform: translateX(-200%); }
    100% { transform: translateX(-200%); }
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 26px 30px;
    border-radius: 14px;
    box-shadow: 0 4px 12px #00000015;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-info h3 {
    margin-bottom: 6px;
    color: #d72638;
    font-size: 20px;
}

.contact-info p {
    margin: 0;
    font-size: 17px;
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    padding: 4px 0;
    border: none;
}

.contact-info p b {
    color: #333;
    width: 80px;
    display: inline-block;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 12px #00000015;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 16px;
    padding: 12px;
    border: 1.8px solid #cccccc;
    border-radius: 10px;
    font-size: 16px;
    transition: 0.25s;
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #d72638;
    box-shadow: 0 0 4px #d7263840;
    outline: none;
}

.submit-btn {
    width: 100%;
    background: #d72638;
    color: white;
    padding: 12px 0;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.25s;
}

.submit-btn:hover {
    background: #b81f2f;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

footer {
    height: 60px;
    background: #d72638;
    margin-top: 30px;
}

@media (max-width: 768px) {
    section {
        margin: 20px 20px;
        padding: 30px 20px;
    }

    .content-block {
        flex-direction: column;
        text-align: center;
    }

    .content-text {
        width: 100%;
    }

    .content-block img {
        width: 50%;
        height: auto;
    }

    nav {
        padding: 10px 15px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    nav div a {
        margin-left: 10px;
        font-size: 14px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-text p {
        font-size: 18px;
    }
}