/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0f0f0f; /* Deep black */
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: #1a1a1a;
    border-bottom: 2px solid #333;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #d9534f; /* Muted Red highlight */
}

/* Hero Section */
.hero {
    height: 40vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1485846234645-a62644f84728?auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    letter-spacing: 2px;
}

/* Grid Layout */
.container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.grid-layout {
    display: flex;
    gap: 30px;
    flex-wrap: wrap; /* Makes it wrap on mobile */
}

.card {
    background: #1a1a1a;
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    border-color: #d9534f;
}

.card-image {
    height: 200px;
    background-color: #333;
}

/* Add your own images here later */
.script-bg { background-color: #2a2a2a; } 
.photo-bg { background-color: #2a2a2a; }

.card-info {
    padding: 20px;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #d9534f;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.footer {
    text-align: center;
    padding: 40px;
    color: #666;
}