* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f2f2f2;
    color: #222;
}

header {
    background: #222;
    color: #ffd600;
    padding: 24px 0 16px 0;
    text-align: center;
    border-bottom: 8px solid #ffd600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

header h1 {
    margin: 0;
    font-size: 1.5em;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
    display: flex;
    justify-content: center;
    gap: 40px;
}

nav a {
    color: #ffd600;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.2s;
}

nav a:hover {
    color: #fff;
}

main {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    gap: 40px;
}

        /* Quick gallery grid for demo */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin-top: 24px;
        }
        .gallery-item {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(34,34,34,0.08);
            padding: 16px;
            text-align: center;
        }
        .gallery-item img, .gallery-item video {
            width: 100%;
            border-radius: 6px;
            margin-bottom: 10px;
            max-height: 180px;
            object-fit: cover;
        }
        .hero {
            position: relative;
            width: 100%;
            height: 350px;
            overflow: hidden;
        }
        .hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
        }
        .hero-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #ffd600;
            background: rgba(34,34,34,0.7);
            padding: 32px 40px;
            border-radius: 12px;
            text-align: center;
        }
        .contact-links {
            display: flex;
            gap: 20px;
            margin-top: 18px;
            flex-wrap: wrap;
        }
        .contact-btn {
            display: inline-block;
            padding: 10px 22px;
            border-radius: 6px;
            background: #ffd600;
            color: #222;
            font-weight: bold;
            text-decoration: none;
            transition: background 0.2s, color 0.2s;
            box-shadow: 0 2px 8px rgba(34,34,34,0.08);
        }
        .contact-btn:hover {
            background: #222;
            color: #ffd600;
        }
        @media (max-width: 900px) {
            main {
                flex-direction: column;
                gap: 0;
            }
            .sidebar {
                margin-top: 32px;
            }
        }


.blog-posts {
    flex: 3;
}

.post {
    background: #fff;
    padding: 24px;
    margin-bottom: 32px;
    border-radius: 8px;
    border-left: 8px solid #ffd600;
    box-shadow: 0 2px 8px rgba(34,34,34,0.08);
}

.post h2 {
    margin-top: 0;
    color: #222;
    font-size: 1.6em;
    font-weight: bold;
}

.meta {
    font-size: 0.95em;
    color: #888;
    margin-bottom: 12px;
}

.post a {
    color: #222;
    background: #ffd600;
    padding: 4px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s;
}

.post a:hover {
    background: #222;
    color: #ffd600;
}

.sidebar {
    flex: 1;
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(34,34,34,0.08);
    border-top: 8px solid #ffd600;
}

.sidebar h3 {
    margin-top: 0;
    color: #222;
    font-size: 1.2em;
    font-weight: bold;
    border-bottom: 2px solid #ffd600;
    padding-bottom: 4px;
    margin-bottom: 12px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar a {
    color: #222;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}

.sidebar a:hover {
    color: #ffd600;
}

footer {
    background: #222;
    color: #ffd600;
    text-align: center;
    padding: 18px 0;
    margin-top: 48px;
    font-size: 1.1em;
    border-top: 8px solid #ffd600;
    letter-spacing: 1px;
}