/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fcfcfc;
}
span {
    color: #e50914; /* Cinematic Red Accent */
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #111;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Hero Section with Cinematic Dark Background */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://unsplash.com') no-repeat center center/cover;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}
.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}
.hero-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: #ccc;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    margin: 5px;
}
.btn-primary {
    background: #e50914;
    color: white;
}
.btn-primary:hover {
    background: #b80710;
}
.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.btn-secondary:hover {
    background: white;
    color: black;
}

/* Services Grid */
.services, .gallery {
    padding: 60px 10%;
    text-align: center;
}
.services h2, .gallery h2 {
    font-size: 32px;
    margin-bottom: 40px;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.grid-item, .card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: left;
    border-top: 4px solid #e50914;
}
.card h3 {
    margin-bottom: 15px;
}

/* Gallery Section */
.subtitle {
    margin-top: -35px;
    margin-bottom: 40px;
    color: #666;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}
.img-caption {
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
}

/* Footer */
footer {
    background: #111;
    color: #666;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    margin-top: 40px;
}
footer a {
    color: #ccc;
    text-decoration: none;
}
