
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', sans-serif;
    scroll-behavior: smooth;
    color: #333;
}
h1, h2 {
    margin: 0;
}
section {
    padding: 80px 20px;
    text-align: center;
}
.gold {
    color: #C5A059;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}
.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.hero-text {
    font-size: 2.5rem;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 30px;
    border-radius: 12px;
}

/* Steps */
.steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}
.step {
    flex: 1 1 250px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.step h3 {
    color: #C5A059;
}

/* Products */
.products {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.product-card {
    flex: 1 1 250px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e6e6e6;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.product-card h4 {
    margin: 15px 0 5px;
}
.product-card button {
    margin: 15px;
    background: #C5A059;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
}
.product-card button:hover {
    background: #a88a45;
}

/* Tips */
.tips {
    max-width: 800px;
    margin: auto;
    text-align: left;
}
.tips ul {
    list-style: none;
    padding: 0;
}
.tips li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}
.tips li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #C5A059;
}

/* CTA */
.cta {
    background: #C5A059;
    color: white;
    padding: 50px 20px;
    border-radius: 12px;
    max-width: 600px;
    margin: auto;
}
.cta button {
    margin-top: 20px;
    padding: 12px 20px;
    background: white;
    color: #C5A059;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.cta button:hover {
    background: #f2f2f2;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600;700&display=swap');

/* Override hero height */
.hero {
    height: 25vh;
}

/* Override hero text */
.hero-text {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.8rem;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-weight: 700;
    color: #FFD700;
    background: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.6);
    letter-spacing: 0.5px;
    opacity: 0;
    z-index: 2;
    animation: fadeInGlow 1.8s ease forwards;
}

/* Glow animation */
@keyframes fadeInGlow {
    0% {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
    
}
.hero-heading {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    color: #C5A059; /* soft gold tone */
    margin: 2rem 0 1rem;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}


/* ==================== MOBILE RESPONSIVENESS ==================== */
@media (max-width: 768px) {
    .hero-text {
        font-size: 1.8rem;
        padding: 12px 20px;
        top: 60%;
    }

    .steps, .products {
        flex-direction: column;
        align-items: center;
    }

    .step, .product-card {
        width: 90%;
    }

    .cta {
        padding: 30px 15px;
    }

    footer div {
        flex-direction: column;
        gap: 1rem;
    }

    .blog-posts {
        grid-template-columns: 1fr !important;
        padding: 1rem;
    }
}

