* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    color: #333;
    background: #fffaf5;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f6e6d9, #fffaf5);
    display: flex;
    flex-direction: column;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo {
    font-weight: 600;
    font-size: 1.3rem;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero-content p {
    max-width: 500px;
    margin-bottom: 25px;
}

.section {
    padding: 70px 20px;
    text-align: center;
}

.section h2 {
    margin-bottom: 40px;
    font-size: 2rem;
}

.light {
    background: #fdf1e8;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.card {
    background: white;
    border-radius: 14px;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
}

.card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.about-text {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social {
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    font-weight: 500;
}

.fb {
    background: #1877f2;
}
.insta {
    background: #e1306c;
}
.tiktok {
    background: #000;
}

.contact-note {
    margin-top: 20px;
}

footer {
    padding: 20px;
    text-align: center;
    background: #f6e6d9;
}

.btn {
    text-decoration: none;
    border-radius: 30px;
    padding: 10px 20px;
    background: #fff;
    color: #333;
}

.btn-primary {
    background: #d08c60;
    color: white;
}
