/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo-section img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

nav ul {
    display: flex;
    list-style-type: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    font-size: 18px;
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    background: url('images/banner.png') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.hero-section h1 {
    font-size: 48px;
}

.hero-section h2 {
    font-size: 24px;
    margin-top: 10px;
}

/* Gallery Section */
.gallery-section {
    padding: 50px 10%;
    text-align: center;
}

.gallery-section h2 {
    margin-bottom: 30px;
}

/* Masonry Grid */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Dynamic column widths */
    gap: 10px;
    padding: 10px;
}

.masonry-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.masonry-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Video Section */
.video-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container iframe {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 100%;
}

/* Workshops Section */
.workshops-section {
    padding: 50px;
    text-align: center;
}

/* Shop Section */
.shop-section {
    padding: 50px;
    text-align: center;
}

.shop-section a {
    font-size: 20px;
    color: #333;
    padding: 10px 20px;
    background-color: #f4f4f4;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.shop-section a:hover {
    background-color: #ddd;
}

/* About Section */
.about-section {
    padding: 50px 10%;
    text-align: center;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    width: 50%;
    padding-right: 20px;
    text-align: left;
}

.about-image {
    width: 40%;
}

.about-head {
    width: 100%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
}

/* Optional: Add responsiveness for smaller screens */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text,
    .about-image {
        width: 100%;
        padding: 10px 0;
    }

    .about-head {
        width: 150px;
        height: 150px;
    }

    /* Gallery Section Responsiveness */
    .masonry-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        padding: 5%;
    }
}

/* Contact Section */
.contact-section {
    padding: 50px;
    text-align: center;
}

/* Footer Section */
footer {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

.footer-left, .footer-center, .footer-right {
    width: 33%;
    text-align: center;
}

.social-icons a {
    margin: 0 10px;
}

.social-icons img {
    width: 30px;
    height: 30px;
    transition: opacity 0.3s;
}

.social-icons img:hover {
    opacity: 0.7;
}

/* Dark Mode Styles */
.dark-mode {
    background-color: #121212;
    color: #ffffff;
}

.dark-mode header, .dark-mode footer {
    background-color: #333;
}

/* Mobile Menu */
#menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
    }
    nav ul.active {
        display: flex;
    }
    #menu-toggle {
        display: block;
    }
}

/* Gallery Hover Effect */
.gallery-image {
    transition: transform 0.3s ease-in-out;
}

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

/* See More Button for Gallery */
#gallery-section .see-more-btn {
    display: inline-block;
    background-color: #FC8019;
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

#gallery-section .see-more-btn:hover {
    background-color: #e17a00;
}
