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

body {
    background-color: white;
    color: black;
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    line-height: 1.6;
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid #ccc;
}

.site-title a {
    font-weight: bold;
    font-size: 24px;
    color: black;
    text-decoration: none;
}

.navbar a {
    margin-left: 20px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.navbar a:hover {
    text-decoration: underline;
}



/* Hamburger icon */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: black;
}

/* Mobile full screen menu (hidden by default) */
.mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    color: black;
    width: 100%;
    height: 100%;
    z-index: 999;
    padding: 80px 40px;
}

.mobile-menu a {
    color: black;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.mobile-menu.open {
    display: flex;
}

/* Responsive navbar styles */
@media (max-width: 768px) {
    .navbar {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    cursor: pointer;
    color: black;
}


main {
    padding: 40px;
}




footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #555;
}




.container {
    max-width: 1500px;
    margin: 0 auto;
}


.carousel-container {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.carousel-slide {
    flex: 1;
}

.slide {
    display: none;
    text-align: center;
}

.slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: none; /* No rounded corners */
}

.carousel-btn {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: black;
    padding: 10px;
}

.carousel-btn:hover {
    opacity: 0.8;
}

.caption {
    margin-top: 10px;
    font-weight: bold;
    font-size: 18px;
}

/* Mobile View: stack images */
@media (max-width: 768px) {
    .carousel-btn {
        display: none;
    }

    .carousel-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .slide {
        display: block !important;
    }
}



.info-page {
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px;
}

.info-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
}

.info-image img {
    width: 500px;
    height: auto;
    object-fit: cover;
    display: block;
}

.info-text {
    flex: 1;
}

.contact-box {
    margin-top: 40px;
    padding: 20px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
}

.contact-box h3 {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .info-grid {
        flex-direction: column;
        gap: 30px;
    }

    .info-image img {
        width: 100%;
        max-width: 100%;
    }
}

.contact-box {
    max-width: 600px;
    margin: 60px auto 0 auto; /* center horizontally + space from top */
    padding: 30px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    box-sizing: border-box;
}

.contact-box h3 {
    margin-bottom: 20px;
}

.contact-box input,
.contact-box textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #aaa;
    margin-bottom: 20px;
    font-size: 16px;
    box-sizing: border-box;
}

.contact-box button {
    padding: 12px 24px;
    background: black;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.contact-box button:hover {
    background: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-box {
        margin: 10px 20px 0 20px;
        padding: 20px;
    }
}

.blog-list {
    max-width: 1500px;
    margin: auto;
    padding: 40px 20px;
}

.blog-preview {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 60px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 30px;
}

.blog-preview-image {
    flex: 1;
}

.blog-preview-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
}

.blog-preview-text {
    flex: 2;
}

.read-more-button {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 14px;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid black;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.read-more-button:hover {
    background-color: black;
    color: white;
}


.blog-post {
    max-width: 1500px;
    margin: 40px auto;
    padding: 20px;
}

.blog-post-image {
    text-align: center;
    margin-bottom: 30px;
}

.blog-post-image img {
    max-width: 100%;
    height: auto;
}

.blog-post-body {
    font-size: 18px;
    line-height: 1.7;
}


