    body {
        font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
        margin: 0;
        padding: 0;
        background: #f0f2f5;
        color: #333;
        line-height: 1.6;
    }

header {
  font-family: "SegoeUI", Arial, Helvetica, sans-serif;
    background-color: #000000; /* solid black */
    color: #ffffff;
    padding: 4rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
    position: relative; /* keep if you have absolutely positioned children */
}

header::before {
    content: none; /* remove any overlay */
}

    .header-text {
        max-width: 600px;
        position: relative;
        z-index: 1;
    }

    header h1 {
        margin: 0;
        font-size: 3rem;
        font-weight: 600;
    }

    header p {
        font-size: 1.2rem;
        margin-top: 1rem;
    }

.header-image {
    flex: 0 0 auto;
    width: 200px;
}

.header-image img {
    height: auto;
    width: 200px;
    max-height: 160px;
    border-radius: 10px;
}

    nav {
        background: linear-gradient(to bottom, #121212, #000000);
        padding: 1rem 0;
        text-align: center;
        box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    }

    nav a {
        margin: 0 1.5rem;
        text-decoration: none;
        color: #ffffff;
        font-weight: 500;
        font-size: 1rem;
    }

    main {
        padding: 4rem 2rem;
        max-width: 1000px;
        margin: 0 auto;
    }

    section {
        background: #ffffff;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        margin-bottom: 2rem;
    }

    section h2 {
        margin-top: 0;
        font-size: 1.8rem;
        color: #1f2937;
    }

    ul {
        padding-left: 1.2rem;
    }

    ul li {
        margin-bottom: 0.5rem;
    }

    a {
        color: #2563eb;
    }

    footer {
        position: relative;
        background: #000000;
        color: #ffffff;
        text-align: center;
        padding: 2rem;
        font-size: 0.9rem;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.6);
        overflow: hidden;
    }

    footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 40%;
        pointer-events: none;
    }

     .footer-image{
	flex: 0 0 auto;
	width: 100px;
	}
     .footer-image img {
        height: auto;
        width: 100px;
        max-height: 100px;
        border-radius: 10px;
     }

#gallery {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    text-align: center;
}

#gallery h2 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: #1f2937;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.photo-grid img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}
#videos {
    padding: 2rem;
    background: ##ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.video-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.video-item {
    flex: 1 1 350px;
    max-width: 400px;
}

.video-item video {
    width: 100%;
	max-width: 400px;
    height: auto;
    border-radius: 8px;
	margin: 0 auto;
}
