@font-face {
    font-family: Estedad-Regular;
    font-style: normal;
    font-weight: 400;
    src: url('../font/Estedad-Regular.woff2') format('woff2');
}

@font-face {
    font-family: Estedad-Black;
    font-style: normal;
    font-weight: 900;
    src: url('../font/Estedad-Black.woff2') format('woff2');
}

@font-face {
    font-family: Doran;
    font-style: normal;
    font-weight: 800;
    src: url('../font/Doran-ExtraBlack.woff2') format('woff2');
}

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

body, html {
    width: 100%;
    height: 100%;
}

/* HERO SECTION */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    background: radial-gradient(circle at top right, #12012a, #00001a 90%);
    color: #fff;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-family: 'Doran', sans-serif;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 1.75rem;
    color: #dcdfff;
    font-family: 'Estedad-Regular', sans-serif;
}

/* BUTTONS */
.btn {
    text-decoration: none;
    padding: 0.85rem 1.8rem;
    margin: 0 0.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s ease;
    display: inline-block;
    font-family: 'Estedad-Regular', sans-serif;
}

.primary {
    background: #6d5dfc;
    color: #fff;
}

.primary:hover {
    background: #5344d7;
}

.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.secondary:hover {
    background: rgba(255, 255, 255, 0.30);
}

/* FLOATING SQUARES */
.squares {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.square {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(109, 93, 252, 0.45);
    box-shadow: 0 0 8px rgba(109, 93, 252, 0.6);
    animation: float 10s infinite ease-in-out;
}

/* Positioning & Animation */
@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-150px) translateX(120px) rotate(180deg);
        opacity: 0.9;
    }
    100% {
        transform: translateY(0) translateX(0) rotate(360deg);
        opacity: 0.5;
    }
}
