        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --moss-green: #2e543b;
            --bark-brown: #6b4423;
            --misty-grey: #b8bdb5;
            --autumn-gold: #d4a574;
            --light-cream: #f5f3ed;
            --dark-forest: #2e543b;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: var(--dark-forest);
            background-color: var(--light-cream);
        }
         

        /* Header Styles */
        header {
            background-color: var(--moss-green);
            color: white;
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Quick Action Menu */
        .quick-menu {
            position: fixed;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .quick-menu-item {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

        .quick-menu-icon {
            width: 50px;
            height: 50px;
            background-color: var(--moss-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .quick-menu-icon:hover {
            background-color: var(--bark-brown);
            transform: scale(1.1);
        }

        .quick-menu-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .quick-menu-label {
            position: absolute;
            right: 60px;
            background-color: var(--dark-forest);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            font-size: 0.9rem;
        }

        .quick-menu-item:hover .quick-menu-label {
            opacity: 1;
        }

        /* Hero Section */
        .hero {
            margin-top: 70px;
            height: 600px;
            background: linear-gradient(rgba(58, 74, 53, 0.5), rgba(58, 74, 53, 0.5)), url('/images/forest1920x600.webp');
            <!--
            background: linear-gradient(rgba(58, 74, 53, 0.5), rgba(58, 74, 53, 0.5)), url('https://placehold.co/1920x600/5a7247/ffffff?text=Forest+of+Dean+Landscape');
            -->
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .hero-content {
            max-width: 800px;
            padding: 2rem;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            background-color: var(--autumn-gold);
            color: var(--dark-forest);
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn:hover {
            background-color: var(--bark-brown);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        /* Main Content */
        main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        section {
            padding: 4rem 0;
            border-bottom: 2px solid var(--misty-grey);
        }

        section:last-child {
            border-bottom: none;
        }

        h2 {
            font-size: 2.5rem;
            color: var(--moss-green);
            margin-bottom: 2rem;
            text-align: center;
        }

        /* Featured Artist */
        .featured-artist {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .artist-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .artist-info h3 {
            font-size: 2rem;
            color: var(--bark-brown);
            margin-bottom: 0.5rem;
        }

        .artist-info .subtitle {
            color: var(--moss-green);
            font-style: italic;
            margin-bottom: 1.5rem;
        }

        .artist-info p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        /* Gallery Preview */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .gallery-item {
            position: relative;
            height: 250px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 25px rgba(0,0,0,0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(58, 74, 53, 0.9));
            padding: 2rem 1rem 1rem;
            color: white;
        }

        .gallery-overlay h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        /* Stories Section */
        .stories {
            background-color: var(--moss-green);
            color: white;
            padding: 4rem;
            border-radius: 10px;
            text-align: center;
            margin: 2rem 0;
        }

        .stories blockquote {
            font-size: 1.5rem;
            font-style: italic;
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .stories cite {
            display: block;
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        /* Events Section */
        .events-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .event-card {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-left: 5px solid var(--autumn-gold);
        }

        .event-card h3 {
            color: var(--bark-brown);
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .event-date {
            color: var(--moss-green);
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .event-location {
            color: var(--misty-grey);
            font-style: italic;
        }

        /* Join Section */
        .join-section {
            background: linear-gradient(135deg, var(--bark-brown), var(--moss-green));
            color: white;
            padding: 4rem;
            border-radius: 10px;
            text-align: center;
        }

        .join-section h2 {
            color: white;
        }

        .join-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
       
    

        /* Footer */
        footer {
            background-color: var(--dark-forest);
            color: white;
            padding: 3rem 2rem 1rem;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: var(--autumn-gold);
            margin-bottom: 1rem;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background-color: var(--moss-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .social-icon:hover {
            background-color: var(--autumn-gold);
        }

        .social-icon svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--moss-green);
            opacity: 0.8;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .featured-artist {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .quick-menu {
                right: 1rem;
            }

            .quick-menu-icon {
                width: 45px;
                height: 45px;
            }

            h2 {
                font-size: 2rem;
            }

            section {
                padding: 2rem 0;
            }

            .stories {
                padding: 2rem;
            }

            .stories blockquote {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 1rem;
            }

            .logo {
                font-size: 1.2rem;
            }

            .hero {
                height: 400px;
            }

            main {
                padding: 0 1rem;
            }
        }