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

body {
    line-height: 1.6;
    color: #333;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.4)),
                url('hero.jpg') center/cover no-repeat;
    height: 90vh;
	background-color:#000000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

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

/* SECTIONS */
.section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.section.light {
    background: #f9f9f9;
}

.section h2 {
    margin-bottom: 20px;
    color: #e91e63;
}

/* IMAGES */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 15px;
}

.image-grid img {
    width: 100%;
    border-radius: 10px;
}

/* VIDEOS */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 20px;
}

.video-grid iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
}

/* TESTIMONIALS */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* CONTACT */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 30px;
    margin-top: 30px;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form button {
    background: #e91e63;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
}

.contact-info {
    text-align: left;
}

/* FOOTER */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px;
}
