
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to bottom, #e50914, #ff6f61);
    color: #fff;
    padding: 0;
}

header {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 80px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

header .header-content h1 {
    font-size: 4.5em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

header .header-content p {
    font-size: 1.6em;
    font-weight: 300;
    margin-top: 10px;
}


main {
    padding: 60px 20px;
}

.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ff6f61;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    font-size: 1.2em;
    margin-bottom: 15px;
    line-height: 1.6;
}

img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
}


.photo-gallery {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.photo-gallery img {
    width: 30%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


footer {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1.2em;
    position: relative;
}


@media (max-width: 768px) {
    header .header-content h1 {
        font-size: 2.5em;
    }

    header .header-content p {
        font-size: 1.2em;
    }

    .photo-gallery {
        flex-direction: column;
        align-items: center;
    }

    .photo-gallery img {
        width: 80%;
        margin-bottom: 20px;
    }
}