/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1509631179647-0177331693ae') no-repeat center/cover;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 50px;
}

.hero p {
    margin: 15px 0;
    font-size: 20px;
}

.btn {
    padding: 12px 25px;
    background: #f4a261;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background: #e76f51;
}

/* Trending Section */
.trending {
    padding: 50px;
    text-align: center;
    background: #f9f9f9;
}

.trending h2 {
    margin-bottom: 20px;
}

/* Image Grid */
.images {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.images img {
    width: 280px;
    height: 380px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.images img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 15px;
}