/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;

}

body {
    background-color: #141414; /* Your requested color */
    color: #ffffff;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    
}

.container {
    max-width: 1100px;
    width: 100%;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.hero-content {
    flex: 1;
}

.title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.5rem;
    color: #888;
    margin-bottom: 25px;
}

.description p {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 500px;
}

.hero-image img {
    max-width: 600px;
    width: 100%;
    display: block;
}

/* Social Buttons */
.social-links a {
    text-decoration: none; /* Removes the default link underline */
    display: inline-flex;  /* Keeps icons and text aligned perfectly */
    align-items: center;
    gap: 8px;              /* Adds space between the icon and the text */
}

/* Optional: Ensure the 'blue' button has its unique color */
.btn.blue {
    background-color: #E50914; /* Or your preferred blue */
    color: white;
}
.btn {
    background-color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
        color: black;

}
/* Gallery Grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr); 
    gap: 15px;
}

.grid-item {
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    /* 1. Add border radius here */
    border-radius: 8px; 
}

.grid-item img {
    width: 100%;
    /* 2. Adjust height to change the rectangle shape */
    /* Use 250px for a vertical (Netflix style) look */
    /* Use 120px for a horizontal (YouTube style) look */
    height: 120px; 
    object-fit: cover;
    display: block;
}

/* Hover Effect - Updated to keep radius smooth */
.grid-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3); 
    border-color: #555;
    z-index: 10;
}

/* Responsive Design */
@media (max-width: 900px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .description p {
        margin: 0 auto 20px auto;
    }

    .social-links {
        justify-content: center;
    }

    .gallery {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on tablets */
    }
}

@media (max-width: 500px) {
    .title { font-size: 2.5rem; }
    
    .gallery {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on phones */
    }
}

