/* mobile.css */

/* Apply a different background image for mobile devices */
body {
    background-image: url('images/mobile-background.jpg');
    background-size: cover;
    background-position: center;
}

/* Additional styles remain the same as before */


/* Header */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
}

.logo img {
    width: 100px;
    margin-bottom: 15px;
}

nav ul {
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 10px 0;
}

/* Hero Section */
.hero {
    text-align: center;
}

.hero h1 {
    font-size: 24px; /* Slightly smaller to fit on smaller screens */
    margin-bottom: 10px;
}

.hero p {
    font-size: 16px; /* Slightly smaller to fit better on small screens */
    margin-bottom: 20px;
}

/* Slideshow Section */
.slideshow-container {
    height: 250px; /* Reduced height for better fit */
    overflow: hidden;
}

.slideshow-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fit without distortion */
}

/* Gallery Section */
.gallery-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2x2 grid on mobile */
    gap: 10px;
}

.gallery-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Footer */
footer .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 0;
}

footer .footer-section {
    margin-bottom: 20px;
}

footer .footer-section h2 {
    font-size: 18px;
}

/* Adjustments for Clickable Elements */
a, button {
    padding: 10px;
    font-size: 18px;
}

/* Optional: Hamburger Menu */
.navbar {
    display: none;
}

.hamburger-menu {
    display: block;
    cursor: pointer;
    padding: 10px;
}

.hamburger-menu ul {
    display: none;
    flex-direction: column;
    background-color: #333;
    width: 100%;
    text-align: center;
}

.hamburger-menu ul li {
    padding: 10px 0;
}

.hamburger-menu ul li a {
    color: white;
}

.hamburger-menu.active ul {
    display: flex;
}
