@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600;800&display=swap');

body {
    margin: 0;
    background: #0a0a0a;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    overflow-x: hidden;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)),
                url('uploads/images/hero.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 60px;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero p {
    font-size: 20px;
    opacity: 0.8;
}

.section {
    padding: 80px 10%;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    border-left: 4px solid gold;
    padding-left: 15px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    position: relative;
}

.card:hover {
    transform: scale(1.05);
}

.card img, .card video {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    margin: 0;
    font-weight: 600;
}

.card-content p {
    opacity: 0.7;
    font-size: 14px;
}

button {
    background: gold;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
}

@media(max-width:768px){
    .hero h1 { font-size: 40px; }
    .section { padding: 50px 5%; }
}
