/* styles.css */
body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e2e2e2; /* Background color for the entire site */
}

header {
    background-color: #000; /* Change header color to black */
    color: white;
    padding: 20px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin: 0;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.content-section {
    padding: 60px 20px;
    text-align: center;
    margin-top: 80px; /* Adjusted for fixed header */
}

.portfolio-section {
    background-color: #e2e2e2; /* Background color for portfolio section */
    padding-top: 120px; /* Increased padding for top */
}

.about-section {
    background: white; /* White background for about section */
    padding: 40px 20px;
}

.contact-section {
    background: #e2e2e2; /* Background color for contact section */
    padding: 40px 20px;
}

.shop-section {
    background: white; /* White background for shop section */
    padding: 40px 20px;
}

.about-content {
    max-width: 800px;
    margin: auto;
    font-size: 1.2em;
    line-height: 1.6em;
    color: #333;
}

.about-content p {
    margin-bottom: 20px;
}

.about-content a {
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #333;
    transition: color 0.3s, border-bottom-color 0.3s;
}

.about-content a:hover {
    color: #555;
    border-bottom-color: #555;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-item {
    margin: 15px;
    text-align: center;
}

.gallery-image {
    width: 100%; /* Ensure images are responsive */
    max-width: 300px; /* Max width for larger screens */
    height: auto;
    transition: transform 0.2s;
}

.gallery-image:hover {
    transform: scale(1.05);
    cursor: pointer;
}

/* Lightbox styles */
.lightbox-container {
    display: none;
    position: fixed;
    z-index: 1001;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.caption-container {
    text-align: center;
    color: #ccc;
    padding: 10px 20px;
    height: auto;
}

/* Style the next and previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.3s;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 600px) {
    header nav ul {
        flex-direction: column;
    }

    header nav ul li {
        margin: 10px 0;
    }

    .gallery-item {
        width: 100%;
    }

    .gallery-image {
        max-width: 100%;
    }
}

/* Contact links styles */
.contact-section a {
    color: #333; /* Dark gray color */
    text-decoration: none;
    transition: color 0.3s; /* Smooth transition for color change */
}

.contact-section a:hover {
    color: #555; /* Slightly darker gray on hover */
}
