/* ========== GLOBAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Indie Flower', cursive;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;

    /* Background image with dark overlay */
    background: 
      linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
      url('../img/mainbg.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* ========== HEADER ========== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 50px;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.menu-nav {
    list-style: none;
    display: flex;
    gap: 30px;
}

.menu-nav .nav-link {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1.1rem;
}

.menu-nav .nav-link:hover,
.menu-nav .current .nav-link {
    color: #ffd700;
}

/* ========== MAIN CONTENT ========== */
main#home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 80px;
    gap: 30px;
}

.lg-heading {
    font-size: 4rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.text-secondary {
    color: #ffd700;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.sm-heading {
    font-size: 1.7rem;
    color: #ddd;
    max-width: 900px;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* ========== SOCIAL ICONS ========== */
/* SOCIAL ICONS */
.icons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 30px;
}

.icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    color: #fff;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.icons a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ffd700, #ff8c00, #ff1493, #00ffff);
    top: -100%;
    left: 0;
    transition: 0.5s;
    z-index: 0;
}

.icons a:hover::before {
    top: 0;
}

.icons a i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.icons a:hover i {
    transform: scale(1.3) rotate(10deg);
}

.icons a:hover {
    color: #000;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
}


/* ========== RESPONSIVE DESIGN ========== */
@media(max-width: 1024px) {
    .lg-heading {
        font-size: 3rem;
    }
    .sm-heading {
        font-size: 1.4rem;
    }
}

@media(max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    .menu-nav {
        gap: 20px;
    }
    .lg-heading {
        font-size: 2.5rem;
    }
    .sm-heading {
        font-size: 1.2rem;
    }
    .icons {
        gap: 15px;
    }
}

@media(max-width: 480px) {
    .lg-heading {
        font-size: 2rem;
    }
    .sm-heading {
        font-size: 1rem;
    }
    .icons a {
        font-size: 1.5rem;
        padding: 10px;
    }
}
