* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    color: #f3f6ff;
    background: url("images/background.png") no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: none;
}

header {
    background: transparent;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

header h1 {
    font-size: 1.8rem;
    color: #e0e7ff;
    letter-spacing: 1px;
}

nav a {
    margin-left: 1.5rem;
    color: #e0e7ff;
    text-decoration: none;
    font-weight: 600;
    text-shadow: 0 1px 6px rgba(0,0,0,0.6);
    transition: opacity 0.3s;
}

nav a:hover,
nav a.active {
    opacity: 0.8;
}

.hero {
    text-align: center;
    padding: 6rem 2rem;
    color: #fff;
    background: linear-gradient(
        270deg,
        rgba(26, 35, 126, 0.2),
                                rgba(57, 73, 171, 0.2),
                                rgba(124, 77, 255, 0.2),
                                rgba(130, 177, 255, 0.2)
    );
    background-size: 800% 800%;
    animation: gradientShift 15s ease infinite;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.about, .socials, .contact, .gallery {
    padding: 3rem 2rem;
    text-align: center;
    backdrop-filter: none;
    background: transparent;
    text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

.about h2,
.socials h2,
.contact h2,
.gallery h2 {
    color: #a0c3ff;
    margin-bottom: 1rem;
}

.about p,
.contact p {
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    color: #e0e7ff;
}

.social-icons a {
    display: inline-block;
    margin: 0 0.75rem;
    color: white;
    font-size: 1.8rem;
    transition: transform 0.2s, color 0.2s;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.social-icons a:hover {
    color: #82b1ff;
    transform: scale(1.1);
}

.featured-posters {
    padding: 3rem 2rem;
    text-align: center;
    background: transparent;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

.featured-posters h2 {
    font-size: 2rem;
    color: #a0c3ff;
    margin-bottom: 1.5rem;
}

.poster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 1.5rem auto;
}

.poster-grid img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.poster-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.7);
}

.see-all {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.6rem 1.2rem;
    color: #ffffff;
    background: rgba(57, 73, 171, 0.6);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
    backdrop-filter: blur(4px);
}

.see-all:hover {
    background: rgba(124, 77, 255, 0.8);
    transform: scale(1.05);
}

.contact form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
}

.contact input,
.contact textarea {
    margin-bottom: 1rem;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    backdrop-filter: blur(2px);
}

.contact input::placeholder,
.contact textarea::placeholder {
    color: #ccc;
}

.contact button {
    background: #3949ab;
    border: none;
    padding: 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    color: white;
    transition: background 0.3s, transform 0.2s;
}

.contact button:hover {
    background: #7c4dff;
    transform: scale(1.02);
}

.watermark-text {
    margin-bottom: 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

footer {
    text-align: center;
    padding: 1rem;
    background: transparent;
    color: white;
    margin-top: 2rem;
    text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }

    nav a {
        margin-left: 1rem;
        font-size: 0.95rem;
    }

    .contact form {
        width: 100%;
    }
}
