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


body {
    background: #f9f9f9;
    color: #222;
}


/* ===== HEADER (same as Omega Sun) ===== */
header {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 100;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e00000;
}

nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #e00000;
}


/* ===== HERO ===== */
.hero {
    padding: 80px 20px 60px;
    background: #fff;
    text-align: center;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
}


/* HOUSE */
.house-container {
    position: relative;
    margin-top: 30px;
    text-align: center;
}

.house {
    max-width: 600px;
    height: 240px;
    display: block;
    margin: 0 auto;
    border-radius: 16px;
    cursor: pointer;
    object-fit: cover;
}


/* RADIAL MENU */
.menu {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%) scale(0);
    transition: 0.4s ease;
    opacity: 0;
    visibility: hidden;
}

.house-container:hover .menu {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.menu button {
    position: absolute;
    width: 80px;
    height: 40px;
    border: 1px solid #e00000;
    background: #fff;
    color: #e00000;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Circular layout (same as before) */
.menu button:nth-child(1) { top: 0%; left: 50%; transform: translate(-50%, -50%); }
.menu button:nth-child(2) { top: 50%; left: 100%; transform: translate(-50%, -50%); }
.menu button:nth-child(3) { top: 100%; left: 50%; transform: translate(-50%, -50%); }
.menu button:nth-child(4) { top: 50%; left: 0%; transform: translate(-50%, -50%); }

.menu button:hover {
    background: #e00000;
    color: white;
    transform: scale(1.1);
}


/* ===== SECTIONS ===== */
.section {
    padding: 60px 20px;
}

.section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    position: relative;
}

.section h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #e00000;
    bottom: -12px;
    border-radius: 2px;
}

/* Keep your light / dark style but cleaned up */
.light {
    background: #ffffff;
    color: #222;
}

.dark {
    background: #111;
    color: white;
}


/* LAYOUT */
.content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.box {
    width: 220px;
    height: 220px;
    background: #6ea36e;
    border-radius: 12px;
    flex-shrink: 0;
}

.image {
    width: 220px;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
}


/* UL list style */
.section ul {
    list-style: none;
    padding-left: 0;
}
.section li {
    margin-bottom: 12px;
    color: #555;
    font-size: 1.05rem;
}

.section p {
    margin-bottom: 16px;
    color: #555;
}

.section strong {
    color: #e00000;
}


/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    z-index: 100;
}

.whatsapp:hover {
    transform: scale(1.05);
}


/* ===== FOOTER (same style as Omega Sun) ===== */
footer {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

/* Keep footer at bottom */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}


/* MOBILE */
@media (max-width: 768px) {
    .hero {
        padding: 60px 15px 40px;
    }

    .house-container {
        margin-top: 20px;
    }

    .house {
        max-width: 100%;
        height: 180px;
    }

    .menu {
        width: 160px;
        height: 160px;
    }

    .menu button {
        width: 70px;
        height: 35px;
        font-size: 0.85rem;
    }

    .content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .box {
        width: 180px;
        height: 180px;
    }

    .image {
        width: 100%;
        height: 140px;
    }

    .section {
        padding: 40px 15px;
    }
}