/* Existing styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    color: #ffcccb; /* Light pink */
    font-family: 'Poppins', sans-serif;
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
    background-image: url('image4.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 10px solid black; /* Black border blending with the body background */
    position: relative;
}

h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background-color: rgba(0, 0, 0, 0.7); /* Slight overlay to improve text readability */
    padding: 20px;
    border-radius: 10px;
}

.artist-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.description {
    max-width: 600px;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.6;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        text-align: left;
    }

    .description {
        margin-left: 30px;
    }

    h1 {
        font-size: 4rem;
    }
}
/* Second section styles */
.guide-section {
    padding: 60px 20px;
    text-align: center;
}

.guide-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ffcccb;
}

.guide-section h3 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 20px;
    color: #ffcccb;
}

/* Images for Bananas */
.banana-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.banana-images img {
    width: 150px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* Instagram-style gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (min-width: 768px) {
    .guide-section h2 {
        font-size: 3.5rem;
    }

    .guide-section h3 {
        font-size: 2rem;
    }

    .banana-images img {
        width: 200px;
    }

    .gallery img {
        height: 200px;
    }
}


/* Third section styles */
.third-section {
    padding: 60px 20px;
    background-image: url('image34.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 10px solid black; /* Black border blending with the body background */
    position: relative;
    color: #ffcccb; /* Light pink for text */
    text-align: center; /* Center the heading */
}

h2 {
    font-size: 3.0rem; /* Bigger heading */
    color: white; /* White for the heading */
    margin-bottom: 30px;
}

.rules-container {
    display: flex;
    justify-content: center; /* Center the container */
    align-items: center;
    margin-top: 30px;
}

.rules-list {
    list-style-type: disc; /* Bullet points */
    padding: 0 20px; /* Add some padding for the list */
    color: white; /* White font for the list */
    font-size: 1.5rem; /* Bigger font size */
    text-align: left; /* Align text to the left */
    margin-right: 20px; /* Space between list and image */
}

.rules-image {
    width: 300px; /* Bigger size */
    height: 300px; /* Keep it square */
    border-radius: 10px;
    object-fit: cover;
}

/* Fourth section styles */
.fourth-section {
    padding: 60px 20px;
    display: flex; /* Use flexbox for centering */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    text-align: center; /* Center the heading */
}

.fourth-section h2 {
    font-size: 3rem; /* Heading size */
    color: #ffcccb; /* Light pink color */
    margin-bottom: 40px; /* Space below the heading */
}

/* Instagram-style gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    justify-items: center; /* Center images in the grid */
    max-width: 800px; /* Limit the width of the gallery */
    width: 100%; /* Ensure it takes full width */
}

.gallery img {
    width: 100%;
    height: 150px; /* Adjust the height as needed */
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (min-width: 768px) {
    .fourth-section h2 {
        font-size: 3.5rem; /* Larger heading on wider screens */
    }

    .gallery img {
        height: 200px; /* Adjust for larger screens */
    }
}

/* Fifth section styles */
.fifth-section {
	color: #ffcccb;
    text-align: center; /* Center the heading and content */
    padding: 60px 20px;
    background-color: #3A3B3C; /* Optional: You can set a background color */
}

.fifth-section h2 {
    font-size: 3rem; /* Heading size */
    color: #ffcccb; /* Light pink color */
    margin-bottom: 40px; /* Space below the heading */
}

.contact-container {
    display: flex; /* Use flexbox for layout */
    justify-content: center; /* Center the container */
    align-items: center; /* Center content vertically */
    flex-wrap: wrap; /* Allow items to stack on smaller screens */
    gap: 20px; /* Space between image and note */
  
    margin-top: 20px; /* Space between heading and content */
}

.contact-image {

}

.contact-image img {
    width: 100%; /* Responsive image */
    max-width: 400px; /* Set a maximum width for a larger image */
    height: auto; /* Maintain aspect ratio */
}

.contact-info {
    display: flex; /* Center the note */
}

.note {
    background-color: #fefefe; /* Off-white background for the note (more paper-like) */
    color: black; /* Black text */
    padding: 20px; /* Padding for the note */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow for depth */
    max-width: 400px; /* Max width for the note */
    text-align: left; /* Left align text */
    flex-grow: 1; /* Allow the note to grow in width */
    display: flex; /* Make the note a flex container */
    flex-direction: column; /* Stack the text vertically */
    justify-content: center; /* Center the content vertically */
    gap: 5px; /* Space between lines of text */
}

/* Additional styling for the text inside the note */
.note p {
    margin: 0; /* Remove default margin */
    line-height: 1.5; /* Improve line spacing */
    font-size: 18px; /* Adjust font size as needed */
}
/* Sixth section styles */
.sixth-section {
    position: relative; /* Position relative for absolute positioning of background images */
    padding: 60px 20px; /* Padding for the section */
    background-color: black; /* Fallback background color */
    overflow: hidden; /* Prevent content from overflowing */
}

/* Layered background images */
.sixth-section::before,
.sixth-section::after {
    content: '';
    position: absolute; /* Positioning images absolutely */
    top: 0; /* Align to the top */
    left: 0; /* Align to the left */
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-size: cover; /* Cover the entire section */
    z-index: 0; /* Behind content */
}

.sixth-section::before {
    background-image: url('image1.png'); /* First background image */
}

.sixth-section::after {
    background-image: url('image11.png'); /* Second background image */
    opacity: 0.5; /* Optional: Adjust opacity for blending */
}

.image-container {
    position: relative; /* Position relative for stacking */
    z-index: 1; /* Above background images */
    display: flex; /* Use flexbox for layout */
    justify-content: center; /* Center the images */
    gap: 20px; /* Space between images */
}

.image-container img {
    width: 100%; /* Make images responsive */
    max-width: 500px; /* Set a maximum width for larger images */
    height: auto; /* Maintain aspect ratio */
}

/* Modal styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.8); /* Black background with opacity */
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%; /* Image width */
    max-width: 700px; /* Maximum image width */
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

#caption {
    margin: auto;
    text-align: center;
    color: white;
    padding: 10px 0;
    height: 40px;
}
.tiktok-embed-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    background-color: black;
    overflow: hidden;
    box-sizing: border-box;
	    max-width: 325px;
    min-width: 325px;
}

.tiktok-embed {
    width: 100% !important; /* Ensure the embed spans the full width */
    max-width: 325px;
    min-width: 325px;
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Keep everything within the defined width */
    background-color: transparent; /* Remove any additional background */
}


/* keszulj section styles */
.keszulj {
    padding: 60px 20px;
    display: flex; /* Use flexbox for centering */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    text-align: center; /* Center the heading */
}

.keszulj h2 {
    font-size: 3rem; /* Heading size */
    color: #ffcccb; /* Light pink color */
    margin-bottom: 15px; /* Space below the heading */
}

.rules-container3 {
    display: flex;
    justify-content: center; /* Center the container */
    align-items: center;

}

/* utokezeles section styles */
.utokezeles {
    padding: 60px 20px;
    display: flex; /* Use flexbox for centering */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    text-align: center; /* Center the heading */
}

.utokezeles h2 {
    font-size: 3rem; /* Heading size */
    color: #ffcccb; /* Light pink color */
    margin-bottom: 15px; /* Space below the heading */
	;    margin-top: 30px; /* Space below the heading */
}

.rules-container2 {
    display: flex;
    justify-content: center; /* Center the container */
    align-items: center;

}