body {
    font-family: Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    color: black;
}

@font-face {
    font-family: 'Big Shoulders';
    src: url('BigShoulders-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    height: 400px;
}

.header-image {
    background: url('header-image.jpg') no-repeat center/cover;
    height: 400px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
    z-index: -1;
}

h1 {
  font-size: 36pt;
}

h2 {
  font-size: 28pt;
}

br + h2 {
    margin-top: 0;
}

.header-text {
    font-family: 'Big Shoulders', sans-serif;
    font-weight: 100;
    font-style: normal;
    background: black;
    color: white;
    padding: 8px;
    border-radius: 2pt;
    display: inline-block;
    opacity: 1.0;
}

.section, .contact-form {
    /* padding-top: 24px; */
    padding-bottom: 24px;
    text-align: center;
}

.section .intro {
  padding: 24px;
  background: black;
  color: white;
  font-family: 'Big Shoulders', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 500px;
    width: 100%;
    height: 600px;
    margin: auto;
}

.carousel {
    display: flex;
    overflow: hidden;
    justify-content: center;
    position: relative;
    height: 100%;
    width: 100%;
    align-items: center;
}

.carousel img {
    max-height: 600px;
    max-width: 500px;
    width: auto;
    height: auto;
    display: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 4px;
    margin: 16px;
    z-index: 2;
}

.carousel-btn.left {
    left: -50px;
}

.carousel-btn.right {
    right: -50px;
}

.gallery {
    display: grid;
    gap: 10px;
    padding: 10px;
    justify-content: center;
    max-width: 1000px;
    margin: auto;
}

.gallery-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.2s;
}

.gallery-thumb:hover {
    transform: scale(1.05);
}

#image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
}

#image-modal img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    background: white;
    padding: 10px;
    border-radius: 5px;
}

#close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    background: black;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    font-weight: bold;
}

@media (min-width: 1200px) {
    .gallery {
        grid-template-columns: repeat(4, 200px);
    }
}

@media (min-width: 600px) and (max-width: 1199px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 599px) {
    .gallery {
        grid-template-columns: 1fr;
    }

    .header {
      height: 300px;
    }
    .header-image {
      height: 300px;
    }
}

.whatsapp-button {
    display: flex;
    justify-content: center;
    margin: 20px auto;
    max-width: 320px;
}

.whatsapp-button img {
    width: 100%;
    height: auto;
    cursor: pointer;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form button {
    background-color: #f4f4f4;
    color: black;
    font-size: 18px;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

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

.footer {
    text-align: center;
    background-color: #f4f4f4;
    padding: 20px;
    margin-top: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.footer-links a:hover {
    background: rgba(0, 0, 0, 0.1);
}

.footer-links i {
    font-size: 18px;
}
