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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: #2d3436;
    background-color: #ffffff;
    font-size: 16px;
}

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

/* Header */
header {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.header-content {
    max-width: 900px;
    margin: 0 auto;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

header .tagline {
    font-size: 1.15rem;
    color: #b2bec3;
    font-weight: 400;
}

/* Main Content */
main {
    padding: 0;
}

section {
    padding: 4rem 0;
}

section:nth-child(even) {
    background-color: #f8f9fa;
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    position: relative;
    padding-bottom: 0.75rem;
}

h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #0984e3;
}

#about p {
    font-size: 1.1rem;
    color: #636e72;
    max-width: 700px;
}

/* Gallery */
#gallery {
    padding-bottom: 4rem;
}

#gallery .container {
    margin-bottom: 2rem;
}

.gallery-wrapper {
    width: 100%;
    overflow: hidden;
    background-color: #f1f2f6;
    padding: 1.5rem 0;
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.gallery-track img {
    height: 250px;
    width: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery-wrapper:hover .gallery-track {
    animation-play-state: paused;
}

/* Location / Map */
.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Contact Form */
#contact {
    background-color: #ffffff;
}

#contact-form {
    max-width: 550px;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group:last-of-type {
    margin-bottom: 2rem;
}

#contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3436;
    font-size: 0.95rem;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-family: inherit;
    background-color: #ffffff;
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: #0984e3;
}

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

#contact-form button {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: #1a1a2e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

#contact-form button:hover {
    background-color: #2d3436;
}

/* Footer */
footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-info {
    margin-bottom: 1.5rem;
}

.footer-info p {
    color: #b2bec3;
    margin: 0.4rem 0;
    font-size: 0.95rem;
}

.footer-copy {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copy p {
    color: #636e72;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 3rem 1.5rem;
    }

    header h1 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 3rem 0;
    }

    h2 {
        font-size: 1.5rem;
    }

    #contact-form {
        padding: 1.5rem;
    }

    .gallery-track img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.7rem;
    }

    header .tagline {
        font-size: 1rem;
    }

    .gallery-track img {
        height: 150px;
    }
}
