/* CSS Document */

/* General Page Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fef7e5; /* Placeholder for tropical vibe */
    color: #333;
    text-align: center;
}

.page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Logo and Intro Section */
.header {
    margin-bottom: 30px;
}

.logo-placeholder {
    width: 150px;
    height: 150px;
    background-color: #ccc; /* Placeholder color */
    margin: 0 auto 15px;
    border-radius: 50%;
}

.page-title {
    font-size: 2em;
    color: #ff6347; /* Tropical red-orange */
    font-family: sarina, "serif";
    font-style: normal;
    font-weight: 400;
}

.intro-text {
    font-size: 1.2em;
    color: #555;
}

/* Slideshow Section */
.slideshow {
    position: relative;
    margin: 30px auto;
}

.slide {
    display: none; /* Only one image visible at a time */
}

.slide img {
    width: 100%;
    border-radius: 10px; /* Rounded corners for style */
}

/* Navigation Buttons */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ff6347;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5em;
    border-radius: 50%;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.prev-btn:hover, .next-btn:hover {
    background-color: #ff4500; /* Slightly darker on hover */
}

/* Footer Section */
.footer {
    margin-top: 30px;
}

.footer h2 {
    color: #ff6347;
}

.footer p {
    color: #333;
}
