/* Basic */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Banner */
header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header img {
    height: 70px;
}

.social-media-header {
    display: flex;
    gap: 10px;
}

.social-media-header a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-media-header a:hover {
    color: #ddd;
}

/* Hero */
.hero {
    background: url('https://www.tiesto.com/images/hero.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    margin-top: 80px; 
    position: relative; 
}

.hero h2 {
    font-size: 48px;
    margin: 0;
    color: #333;
}

.hero p {
    font-size: 24px;
    margin-top: 10px;
    color: #ddd;
}

#bat {
    width: 50px;
    position: absolute;
    top: -20px;
    left: 20px;
    opacity: 0;
    transform: translate(0, 0);
    transition: transform 2s ease-out, opacity 2s ease-out;
}

#bat.fly {
    opacity: 1;
    transform: translate(800px, 180px);
}

#target {
    display: inline-block;
    width: 0;
    height: 0;
}

/* Videó szekció */
.video {
    text-align: center;
    padding: 40px 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 20px 0;
}

.video-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Music szekció */
.music {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Gallery */
.gallery {
    padding: 40px 0;
    background: #f9f9f9;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.gallery-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gallery-images img {
    width: calc(33.333% - 10px); 
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    filter: blur(5px); 
    transition: filter 0.3s, transform 0.3s;
}

.gallery-images img:hover {
    filter: blur(0); 
    transform: scale(1.05); 
}

@media (max-width: 768px) {
    .gallery-images img {
        width: calc(50% - 10px); 
    }
}

@media (max-width: 480px) {
    .gallery-images img {
        width: 100%;
        filter: blur(0); 
    }
}


.testimonials {
    background: #f9f9f9;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.testimonials h2 {
    color: #333;
    margin-bottom: 20px;
}

.testimonials blockquote {
    font-style: italic;
    color: #555;
    margin: 20px auto;
    max-width: 800px;
    transition: opacity 0.3s;
}

/* Contact */
.contact {
    padding: 40px 0;
    text-align: center;
}

.contact h2 {
    margin-bottom: 10px;
}

.contact p {
    font-size: 18px;
    color: #555;
}

/* Contact form */
.contact-form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px auto;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.contact-form button {
    background: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #555;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer .social-media {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

footer .social-media a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s;
}

footer .social-media a:hover {
    color: #ddd;
}

/* Mobilephone mediaquery */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    .hero h2 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .music, .contact {
        padding: 20px;
    }
}

.center-link
{
    display: block;
    text-align: center;
}

.small-call {
    width: 100px;
    height: auto;
}