/* Basic Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
}

/* Header and Navigation Styles */
header {
    position: relative;
    height: 300px; /* Adjust based on your preference */
    overflow: hidden;
}

.slideshow-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.mySlides {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
}

.mySlides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-family: 'Dancing Script', cursive;
    font-size: 48px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}
nav {
    position: absolute;
    right: 20px;
    top: 20px;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-left: 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
}

nav ul li a:hover {
    color: #a2d2ff; /* Light blue */
}

/* Section Styles */
section {
    padding: 40px 60px;
    margin: 8px 0;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    font-size: 16px;
}

/* Typography Enhancements */
h1, h2 {
    color: #333;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 24px;
    color: #0067ab; /* Matching header */
}

p {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header, section {
        padding: 20px;
    }

    nav ul li {
        display: block;
        text-align: center;
        margin-top: 10px;
    }
}
.social-media {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.social-icon img {
    width: 24px; /* Adjust size as needed */
    height: 24px; /* Adjust size as needed */
    margin: 0 10px;
    vertical-align: middle;
    transition: opacity 0.3s ease-in-out;
}

.social-icon:hover img {
    opacity: 0.7; /* Adds a nice hover effect */
}

