/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Typography */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    margin-bottom: 10px;
    font-weight: 700;
}

p {
    margin-bottom: 15px;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
header {
    background-color: #111;
    color: #fff;
    padding: 20px 0;
}

header .logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff6347;
}

/* Hero Section */
.hero {
    background: url('assets/hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #ff6347;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #ff4500;
}

/* Featured Movies Section */
.featured-movies {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.featured-movies h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.movie-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.movie-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.movie-info {
    padding: 15px;
    text-align: center;
}

.movie-info h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.movie-info p {
    color: #777;
    font-size: 14px;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.contact-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-section p {
    font-size: 16px;
    margin-bottom: 20px;
}

form {
    max-width: 600px;
    margin: auto;
    text-align: left;
}

label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

button[type="submit"] {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #ff6347;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #ff4500;
}

/* Footer */
footer {
    background-color: #111;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
}

.social-links a {
    margin: 0 10px;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.social-links a img {
    width: 24px;
    height: 24px;
}

.social-links a:hover {
    opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    .movies-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}
