/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #ffffff;
    color: #000;
    line-height: 1.6;
}

/* HEADER & NAVIGATION */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 480px;
    height: auto;
    display: block;
}

.tagline {
    margin-top: 6px;
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: 18px;
    font-style: italic;
    color: #000;
    white-space: nowrap;
}

.search-input {
    width: 320px;
    padding: 16px 20px;
    border-radius: 30px;
    border: none;
    background: #e0e0e0;
    font-size: 18px;
    outline: none;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 35px;
    margin-bottom: 40px;
}

.btn {
    padding: 16px 36px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    color: #000;
    transition: opacity 0.3s ease;
}

.btn:hover {
    opacity: 0.8;
}

/* NAVIGATION COLORS */
.home { background: #f44336; color: #fff; }
.projects { background: #f0b25a; }
.events { background: #2419b6; color: #fff; }
.join { background: #5e8f8b; }
.about { background: #d9d9d9; }
.contact { background: #0097a7; color: #fff; }

/* HOME PAGE HERO SECTION */
.hero {
    padding: 40px 60px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 40px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-image img {
    width: 480px;
    height: auto;
    border-radius: 4px;
}

.hero-text {
    max-width: 520px;
    font-size: 26px;
}

/* PROJECTS PAGE SECTION (from Canva Design) */
.projects-container {
    padding: 40px 60px;
}

/* The Orange Pill Title */
.projects-pill {
    display: inline-block;
    background-color: #f0b25a;
    padding: 12px 45px;
    border-radius: 50px;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
}

.spotlight-heading {
    font-style: italic;
    font-weight: 900;
    font-size: 32px;
    margin-bottom: 60px;
    text-transform: uppercase;
}

/* Grid Layout for Icons */
.projects-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Keeps text aligned even if icons vary in height */
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px;
}

.project-item {
    text-align: center;
    flex: 1;
}

.project-item img {
    max-width: 250px;
    height: auto;
    margin-bottom: 25px;
}

.project-item p {
    font-size: 24px;
    font-weight: 800;
    text-transform: lowercase; /* Matches "school training" etc. in Canva */
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 1024px) {
    .hero-content, .projects-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .logo { width: 300px; }
}
/* ARTWORKS FOR SALE SECTION */
.art-sales {
    margin-top: 80px;
    padding: 0 60px;
}

/* Styled text banner to replace the image */
.sales-banner-text {
    background-color: #9b6ab3; /* Purple background from your design */
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 60px;
}

.banner-title {
    color: #ff3b3b; /* Reddish-orange text */
    font-size: 60px;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0px #000, -2px -2px 0px #000, 2px -2px 0px #000, -2px 2px 0px #000;
    /* This text-shadow creates the outlined effect seen in your design */
}

/* Gallery Grid */
.art-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px 50px;
    max-width: 1100px;
    margin: 0 auto 100px auto;
}

.art-card {
    display: flex;
    flex-direction: column;
}

.art-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.art-info p {
    font-size: 18px;
    margin-bottom: 4px;
    color: #333;
}

.art-info .price {
    font-weight: bold;
    font-size: 22px;
    margin-top: 10px;
}
/* ================= EVENTS PAGE ================= */

.events-hero {
    padding: 40px 60px;
}

.events-hero h1 {
    font-size: 64px;
    font-weight: 900;
    color: #2419b6;
}

.events-hero p {
    font-size: 22px;
    font-style: italic;
}

/* PAST EVENT */
.past-event {
    padding: 40px 60px;
}

.past-event h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.past-event h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

/* VIDEO GRID */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.video-grid video {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    background: #000;
}

/* EVENT IMAGE GALLERY */
.event-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.event-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.event-gallery img:hover {
    transform: scale(1.04);
}

/* EVENT DESCRIPTION */
.event-description {
    max-width: 700px;
    font-size: 20px;
    line-height: 1.6;
}

.status.completed {
    margin-top: 20px;
    font-weight: 800;
    color: green;
    font-size: 22px;
}

/* UPCOMING */
.upcoming-events {
    padding: 40px 60px 80px;
}

.upcoming-events h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.no-events {
    color: red;
    font-size: 22px;
    font-weight: 700;
}

.stay-tuned {
    margin-top: 10px;
    font-size: 20px;
    font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .events-hero h1 {
        font-size: 44px;
    }
}
/* ================= JOIN US PAGE ================= */

.join-section {
    padding: 40px 60px 80px;
}

.join-pill {
    display: inline-block;
    background: #5e8f8b;
    color: #fff;
    padding: 16px 60px;
    border-radius: 50px;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
}

.join-text {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* CONTACT LIST */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
    max-width: 700px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 22px;
    font-weight: 600;
}

.contact-item img {
    width: 42px;
    height: 42px;
}

/* FORM SECTION */
.form-section {
    margin-top: 50px;
    font-size: 24px;
}

.form-link {
    display: inline-block;
    margin-top: 14px;
    font-size: 20px;
    color: #2419b6;
    font-weight: 700;
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .join-pill {
        font-size: 24px;
        padding: 14px 40px;
    }

    .contact-item {
        font-size: 18px;
    }

    .contact-item img {
        width: 32px;
        height: 32px;
    }
}
/* ================= ABOUT PAGE ================= */

.about-hero {
    padding: 40px 60px;
}

.about-hero h1 {
    font-size: 64px;
    font-weight: 900;
    color: #2419b6;
}

.about-hero p {
    font-size: 22px;
    font-style: italic;
}

.about-content {
    padding: 40px 60px 80px;
    max-width: 1000px;
}

.about-block {
    margin-bottom: 35px;
}

.about-block h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #000;
}

.about-block p {
    font-size: 20px;
    line-height: 1.7;
}

.about-block ul {
    padding-left: 22px;
}

.about-block ul li {
    font-size: 20px;
    margin-bottom: 8px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-hero h1 {
        font-size: 42px;
    }

    .about-content {
        padding: 30px;
    }
}
/* ================= CONTACT PAGE ================= */

.contact-section {
    padding: 40px 60px 80px;
}

.contact-pill {
    display: inline-block;
    background: #0097a7;
    color: #000;
    padding: 16px 70px;
    border-radius: 50px;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 50px;
}
