@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Poppins:wght@400;600&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
}

/* ================= HEADER ================= */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: background 0.3s;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* ================= LOGO ================= */
.logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #00C4B4;
    white-space: nowrap; /* KEEP LOGO ON ONE LINE */
}

.logo span {
    color: #ff69b4;
    margin-left: 6px;
}

/* ================= NAV LINKS ================= */
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #00C4B4;
}

/* ================= HAMBURGER ================= */
.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #333;
    border-radius: 4px;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.hamburger span:nth-child(1) { top: 8px; }
.hamburger span:nth-child(2) { top: 18px; }
.hamburger span:nth-child(3) { top: 28px; }

.hamburger.active span:nth-child(1) {
    top: 18px;
    transform: rotate(135deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.hamburger.active span:nth-child(3) {
    top: 18px;
    transform: rotate(-135deg);
}

/* ================= FOOTER ================= */
footer {
    background: #00C4B4;
    color: white;
    padding: 3rem 5%;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
}

.social-icons a {
    color: white;
    font-size: 1.8rem;
    margin: 0 1rem;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
}

/* ================= WHATSAPP BUTTON ================= */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}



/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    nav ul.open {
        max-height: 500px;
    }

    nav ul li {
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid #eee;
    }
}