/* styles.css */

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212; /* Dark background color */
    color: #e0e0e0; /* Light text color for readability */
}

.hero {
    background: url('images/hero-bg.png') no-repeat center center/cover;
    background-attachment: fixed; /* Parallax effect */
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay to blend with the background */
}

.hero-content {
    background: rgba(0, 0, 0, 0.6); /* Dark overlay to improve contrast */
    padding: 20px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 3em;
    margin: 0;
    color: #ffffff; /* Bright text color */
}

.hero p {
    font-size: 1.2em;
    margin: 10px 0 20px;
    color: #cccccc; /* Slightly lighter text for readability */
}

.cta-button {
    background-color: #ff007f;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #ff66b2;
}

.social-links {
    padding: 40px 20px;
    text-align: center;
}

.social-links h2 {
    margin-bottom: 20px;
    font-size: 2em;
    color: #ffffff; /* Ensure headers stand out */
}

.links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.social-button:hover {
    background-color: #0056b3;
}

.gallery-preview {
    padding: 40px 20px;
    text-align: center;
}

.gallery-preview h2 {
    margin-bottom: 20px;
    font-size: 2em;
    color: #ffffff; /* Light text for gallery headers */
}

.gallery {
    display: flex;
    justify-content: center; /* Centers the images */
    gap: 10px; /* Space between images */
}

.gallery img {
    width: calc(33.33% - 10px); /* Adjusts for 3 images per row with gaps */
    height: auto; /* Keeps aspect ratio intact */
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.1);
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.footer a {
    color: #ff007f;
    text-decoration: none;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gallery img {
        width: calc(50% - 10px); /* Adjust for tablet-sized screens */
    }
}

@media (max-width: 480px) {
    .gallery img {
        width: calc(100% - 10px); /* Adjust for mobile screens */
    }
}
