body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle, rgba(230, 220, 200, 0.8) 0%, rgba(210, 200, 180, 1) 60%, rgba(190, 180, 160, 1) 100%);
}

.logo {
    text-align: center;
    margin-bottom: 20px; /* Adds space between logo and next section */
}

.logo-image {
    display: block;
    margin: 0 auto;
    max-width: 100%; /* Ensures the logo doesn't exceed the container's width */
    height: 300px; /* Maintains the original aspect ratio */
}

.title-text {
    text-align: center;
    margin-top: 10px; /* Ensures title appears below the logo */
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #d4af37;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #b38e30;
}

section {
    padding: 20px;
    margin: 20px auto; /* Centers the section horizontally */
    max-width: 800px; /* Controls the width of the section */
    text-align: center; /* Centers the content within the section */
    background-color: #f4f4f4; /* Light background for readability */
    border-radius: 20px; /* Smooth edges */
}

.overview, .details, .cast-crew, .engagement {
    margin: 20px auto; /* Consistent margin between sections */
}

/* Social Links Styling */
.engagement {
    text-align: center; /* Center-aligns child elements */
}
.social-links {
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 10px;
}

.social-links li {
    display: inline-block;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ccc; /* Light grey background */
    color: #fff; /* White icon color */
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: background-color 0.3s, color 0.3s;
}

.social-icon:hover {
    background-color: #999; /* Darker grey on hover */
    color: #fff;
}
footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: #fff;
}