BODY {
    background-image: url('back.jpg');
    font-family: 'cwTeXYen', sans-serif;
    background-color: #F4F4F4;
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

header {
    background-color: #D2D5B8;
    color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    font-family: 'cwTeXYen', sans-serif;
    text-align: center;
}

h1 {
    font-size: 36px;
    margin: 20px 0;
}

h2 {
    font-size: 28px;
    margin: 20px 0;
    color: #555;
}

nav {
    background-color: #C9BA9B;
    padding: 15px 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    nav ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        gap: 20px;
    }

        nav ul li {
            font-size: 18px;
        }

            nav ul li a {
                color: white;
                text-decoration: none;
                padding: 10px 15px;
                border-radius: 5px;
                transition: background 0.3s, transform 0.2s;
            }

                nav ul li a:hover {
                    background: linear-gradient(to right, white 0%, #f5d289 100%);
                    color: #333;
                    transform: scale(1.1);
                }

p {
    font-size: 20px;
    line-height: 1.8;
    max-width: 800px;
    margin: 20px auto;
    color: #555;
}


button {
    background-color: #C9BA9B;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    button:hover {
        background-color: #ffcc00;
        transform: translateY(-3px);
    }

.marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 20px;
}

.photo-marquee {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

    .photo-marquee img {
        width: 300px;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
    }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.photo-marquee img:hover {
    transform: scale(1.1);
    transition: transform 0.1s;
}


.fullscreen-photo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

    .fullscreen-photo img {
        max-width: 100%;
        max-height: 100%;
        border-radius: 10px;
        box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
    }

.show-photo {
    opacity: 1;
    pointer-events: auto;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: 1000px;
    margin: auto;
}

.photo-item {
    text-align: center;
}

    .photo-item img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;
    }

    .photo-item p {
        margin-top: 10px;
        font-size: 16px;
        color: #333;
    }

    .photo-item img:hover {
        transform: scale(1.05);
    }

.img-1 {
    width: 60px;
    height: 60px;
    margin-top: -50px;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #C9BA9B;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, background-color 0.3s;
}

    .back-to-top:hover {
        background-color: #ffcc00;
        transform: scale(1.1);
    }

.last {
    width: 100%;
    background-color: #C9BA9B;
    padding: 25px 0;
    text-align: center;
    color: #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .last h1 {
        font-size: 36px;
        margin-bottom: 40px;
        font-family: 'cwTeXYen', sans-serif;
        color: #333;
    }

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

    .social-links a {
        transition: transform 0.3s, opacity 0.3s;
    }

    .social-links img {
        width: 60px;
        height: 60px;
        border-radius: 10px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .social-links img:hover {
            transform: scale(1.2);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

video {
    display: block;
    margin: 20px auto;
    border: 5px solid #C9BA9B;
    border-radius: 10px;
    width: 500px;
}

    @media (max-width: 768px) {
        .social-links {
            gap: 20px;
        }

        .social-links img {
            width: 50px;
            height: 50px;
        }
    }