*{
    margin: 0;
    padding: 0;
    font-family: "Sans serif","Monospace";
    box-sizing: border-box;
    
}

body{
    background: linear-gradient(rgba(20,20,20,0.7), rgba(0,0,0,0.8)), url("./backgroundimages/businessback.jpg") center/cover no-repeat;    background-size: cover;
    background-attachment: fixed;    
    min-height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    scroll-snap-type: y mandatory;
}
.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: white;
}
header{
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(52, 50, 50, 0.6);
    backdrop-filter: blur(10px);

    padding: 15px 5%;
    transition: 0.3s ease;
}
header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
ul{
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    list-style-type: none; 
    margin-top: 25px;
    font-size: 1.5rem;
}
ul li{
    display: inline;
}
ul li a{
    text-decoration: none;  
    color: rgb(193, 41, 41);      
    padding: 5px 20px;                    
    border-radius: 5rem;           
    transition: 0.6s ease;      
}
ul li a:hover{   
    background-color: rgb(245, 249, 250);            
    color: rgb(14, 14, 14);                
}
ul li.active a{                         
    background-color: rgb(193, 41, 41);        
    color: white;     
}

ol li a:visited{                      
    color: whitesmoke; 
    transition: 0.6s ease;
}
.logo img{                
    width: 200px;  
    height:auto; 
}
.main{    
    display: flex;
    justify-content: space-between;
    align-items: center;                  
    max-width: 1200px;   
    margin: auto;          
}



.hero,
.section{
    min-height: 100vh;
    scroll-snap-align: start;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* HERO */
.business-hero h1{
    font-size: 8rem;
    color: rgb(193,41,41);
    text-shadow: 4px 4px black;
}

.business-hero h2{
    font-size: 1.5rem;
    opacity: 0.8;
}
.coming{
    text-align: center;
    animation: slideUp 1s ease forwards;
    background: linear-gradient(rgba(81,35,35,0.85), rgba(0,0,0,0.95));
}



/* BIG HEADLINE */
.coming-big{
    font-size: 5rem;
    color: rgb(193,41,41);
    text-transform: uppercase;

    /* glow */
    text-shadow: 0 0 20px rgba(193,41,41,0.7);

    animation: pulseGlow 2s infinite alternate;
}

/* SUBTEXT */
.coming-sub{
    margin-top: 20px;
    font-size: 1.2rem;
    opacity: 0.85;
    max-width: 700px;
}

/* 🔥 GLOW ANIMATION */
@keyframes pulseGlow{
    from{
        text-shadow: 0 0 10px rgba(193,41,41,0.5);
    }
    to{
        text-shadow: 0 0 30px rgba(193,41,41,1);
    }
}

/* BUTTON */
.cta-btn{
    margin-top: 40px;
    padding: 12px 50px;
    border-radius: 30px;
    background: rgb(193,41,41);
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover{
    background: white;
    color: black;
    transform: scale(1.05);
}

/* SERVICES SECTION */
.services-preview{
    text-align: center;
}

/* CARDS (reuse your style but enhance slightly) */
.services-preview .card{
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    transition: 0.4s ease;
}

.services-preview .card:hover{
    transform: translateY(-12px) scale(1.05);
}


/* INITIAL STATE (hidden + down) */
.coming-card{
    margin-top: 40px;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);

    padding: 60px;
    border-radius: 20px;

    opacity: 0;
    transform: translateY(100px);

    transition: all 1s ease;
}
.coming-card{
    animation: slideUp 1s ease forwards;
}

@keyframes slideUp{
    from{
        opacity: 0;
        transform: translateY(100px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* WHEN VISIBLE */
.coming.show .coming-card{
    opacity: 1;
    transform: translateY(0);
}




/* FOOTER */
.footer{
    padding:50px 5% 20px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:30px;
}

.footer-col h4{
    color:rgb(193,41,41);
    margin-bottom:10px;
}

.footer-col ul{
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1rem; 
}

.footer-col a{
    display: inline-block;
    padding: 6px 14px;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}
.footer-col a:hover {
    background: white;
    color: black;
}
.footer-bottom{
    text-align:center;
    margin-top:20px;
    opacity:0.7;
}

/* MOBILE */
@media (max-width: 768px){

    .menu-toggle{
        display: block;
        z-index: 1100;
    }

    /* NAV MENU */
    ul{
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;

        background: rgba(0,0,0,0.95);
        backdrop-filter: blur(10px);

        flex-direction: column;
        align-items: center;

        display: none;
        padding: 20px 0;
        z-index: 1000;
    }
    ul.active{
        display: flex;
    }

    ul li{
        margin: 10px 0;
    }

    /* SECTION SPACING FIX */
    .section{
        padding: 80px 5%;
    }

    /* GRID STACK CLEANLY */
    .grid{
        grid-template-columns: 1fr;
    }

    /* FOOTER FIX */
    .footer{
        text-align: center;
    }

    .footer-container{
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .coming-box{
        padding: 50px 25px;
        width: 95%;
    }

    .coming-box h1{
        font-size: 2.5rem;
    }
}