body {
    margin: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: #fffaf8;
    color: #333;
    line-height: 1.6;
}

/* HERO */
.hero {
    position: relative;
    height: 90vh;
    background: url('placeholder-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(255, 150, 150, 0.4),
        rgba(255, 120, 160, 0.5),
        rgba(255, 210, 160, 0.5)
    );
}

.hero-content {
    position: relative;
    max-width: 700px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.cta {
    display: inline-block;
    padding: 15px 30px;
    background: #ff5f72;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.25s;
}

.cta:hover {
    background: #ff334f;
}

/* VIDEO SECTION */
.video-section {
    padding: 60px 10%;
    text-align: center;
}

.video-section h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #dd3366;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

video {
    width: 100%;
    display: block;
}

/* ABOUT SECTION */
.about {
    display: flex;
    gap: 40px;
    padding: 60px 10%;
    align-items: center;
    flex-wrap: wrap;
}

.about .text {
    flex: 1;
}

.about h2 {
    font-size: 2.2rem;
    color: #cc2b5e;
}

.about-img {
    width: 420px;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.logo-img {
    width: 240px;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.secondary {
    background: #ff9c8a;
}

.secondary:hover {
    background: #ff7b60;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #ffecec;
    margin-top: 60px;
}
