body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 20px 20px;
    /*border-bottom: 2px solid #111;*/
}


h1, h2, h3, h4, h5, h6 {
    font-family: "Orbitron", sans-serif;
}

.header-left h1 {
    margin: 0;
    font-size: 1.5em;
}

.header-center {
    flex-grow: 1;
    text-align: center;
}

.header-center .logo {
    height: 120px;
    position: absolute;
    z-index: 99;
    top: 2px;
    left: 48%;
}

.header-right p {
    margin: 0;
    font-size: 0.8em;
    color: #111;
}

.hero {
    position: relative;
    overflow: hidden;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    border-top: 10px solid #d32f2f;
    border-bottom: 10px solid #d32f2f;
    clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}

.hero::before {
    content: "";
    background: url('img/bg-contect-3-2.jpg') no-repeat center center/cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    transform: translateZ(0);
    will-change: transform;
    transition: transform 1s ease-out;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: rgba(0, 0, 0, 0.5);*/
    padding: 20px;
    border-radius: 0px;
}

.hero-image {
    width: 300px;
    border-radius: 0px;
    margin-right: 40px;
}

.hero-text {
    text-align: left;
    max-width: 600px;
}

.hero h2 {
    font-size: 2em;
    margin: 0 0 20px;
}

.register-btn {
    background: #d32f2f;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
    font-family: "Orbitron";
}

.gallery {
    background: #f4f4f4;
    text-align: center;
    padding: 20px;
}

.gallery-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.gallery img {
    width: 30%;
    border-radius: 0px;
    margin: 20px;
}

/* Footer */
footer {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer a {
    color: #d32f2f;
    text-decoration: none;
}

.social-icons img {
    width: 24px;
    margin: 0 10px;
}

/* Parallax Effect */
@media (min-width: 600px) {
    .hero::before {
        background-attachment: fixed;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-left h1 {
        font-size: 1.2em;
    }

    .header-center .logo {
        height: 80px;
        top: 1px;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero {
        height: 400px;
    }

    .hero h2 {
        font-size: 1.5em;
    }

    .hero-image {
        width: 200px;
        margin-right: 10px;
    }

    .gallery img {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .header-left h1 {
        font-size: 1em;
    }

    .hero {
        height: 300px;
        padding: 10px;
		min-height: 600px;
    }

    .hero h2 {
        font-size: 1.2em;
    }
	   .hero-content {
        padding: 10px;
		display: flex;
        flex-direction: column;
    }

    .hero-image {
        width: 150px;
        margin-right: 5px;
    }

    .gallery img {
        width: 90%;
        margin: 10px 0;
    }
}