* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff0f5;
    color: #1f2937;
}

/* NAV */
nav {
    display: flex;
    justify-content: space-between;
    padding: 18px 30px;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(225, 29, 72, 0.08);
}

.logo {
    font-family: 'Cinzel', serif;
    color: #e11d48;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #6b7280;
    position: relative;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #e11d48;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e11d48;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* HAMBURGER */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background: #e11d48;
    margin: 5px;
}

/* HERO */
#hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 100vh;
    padding: 100px 60px;
    gap: 50px;
}

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

.hero-text span {
    color: #e11d48;
}

.hero-text p {
    margin: 20px 0;
    color: #6b7280;
    max-width: 450px;
}

/* IMAGE */
.hero-img img {
    width: 280px;
    border-radius: 50%;
    border: 4px solid #e11d48;
}

/* BUTTON */
.btn {
    background: #e11d48;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #be123c;
    transform: translateY(-2px);
}

/* DISABLED BUTTON */
.btns {
    background: #f9a8d4;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: not-allowed;
}

/* SECTION */
section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(225, 29, 72, 0.08);
}

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

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

/* CARD */
.card {
    background: #ffe4ec;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
    position: relative;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.2);
}

.arrow {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* CONTACT */
input,
textarea {
    width: 100%;
    padding: 10px;
    margin: 6px 0;
    border: 1px solid #fbcfe8;
    transition: 0.3s;
}

input:focus,
textarea:focus {
    border-color: #e11d48;
    outline: none;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    color: #6b7280;
}

/* MOBILE */
@media(max-width:768px) {
    #hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 80px 20px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background: #fff;
        padding: 15px;
    }

    .nav-links.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}
