﻿/* BASIC RESET */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

    /* BACKGROUND FOR HOME */
    body.home-bg {
        background: url('../images/bg.jpg') no-repeat center center fixed;
        background-size: cover;
        color: white;
    }

    

        /* DARK OVERLAY */
        body.home-bg::before {
            content: '';
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            z-index: 0;
        }

/* CENTER CONTENT */
.home-container {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 150px;
}

/* FADE-IN ANIMATION */
.fade-in {
    animation: fadeIn 1.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* BUTTON STYLING */
.btn-custom {
    background: #00c6ff;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 25px;
    color: white;
    transition: 0.3s;
}

    .btn-custom:hover {
        background: #0072ff;
        transform: scale(1.05);
    }

/* ADMIN LINK */
.admin-link {
    position: fixed;
    bottom: 10px;
    right: 15px;
    font-size: 12px;
    color: #ccc;
}
