:root {
    --main: #ffc900;
    --main-dark: #cda504;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Full Screen Hero Section */
.hero-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-wrapper.pb-5 {
    padding-bottom: 0 !important;
}

/* Hero Content Container */
.hero-wrapper .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.hero-heading {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

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

.sec__title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    color: white;
}

.sec__desc {
    font-size: 1.4rem;
    font-weight: 500;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin: 0;
    color: white;
}

/* Horizontal Button Container */
.hero-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: white;
    border-radius: 50px;
    padding: 8px 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

/* Text Button */
.btn-text {
    padding: 12px 32px;
    background: transparent;
    color: var(--main-dark);
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-text:hover {
    color: var(--main);
    transform: translateY(-2px);
}

/* Plus Circle Button */
.btn-plus {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--main) 0%, #ffdb4d 100%);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(255, 201, 0, 0.3);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.btn-plus::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.btn-plus:hover::before {
    left: 100%;
}

.btn-plus:hover {
    transform: scale(1.12) translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 201, 0, 0.4);
}

.btn-plus:active {
    transform: scale(1.05) translateY(-2px);
}

.btn-plus i {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Register Button at Bottom */
.hero-footer {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 10;
    animation: fadeInUp 1.2s ease-out 0.6s backwards;
}

.btn-register-now {
    padding: 16px 48px;
    background: linear-gradient(135deg, var(--main) 0%, #ffdb4d 100%);
    color: #1a1a2e;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(255, 201, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.btn-register-now:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(255, 201, 0, 0.4);
    color: #1a1a2e;
}

.btn-register-now:active {
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-indicator i {
    font-size: 2rem;
    color: white;
    display: block;
    animation: fadeInOut 1.5s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sec__title {
        font-size: 3rem;
    }

    .sec__desc {
        font-size: 1.2rem;
    }

    .btn-plus {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }

    .btn-text {
        padding: 10px 26px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .hero-wrapper {
        height: auto;
        min-height: 100vh;
        padding: 40px 20px;
    }

    .hero-heading {
        gap: 2.5rem;
    }

    .sec__title {
        font-size: 2.5rem;
    }

    .sec__desc {
        font-size: 1.1rem;
    }

    .hero-button-container {
        padding: 6px 6px;
    }

    .btn-plus {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }

    .btn-text {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-footer {
        bottom: 30px;
    }

    .btn-register-now {
        padding: 14px 40px;
        font-size: 1rem;
    }

    .scroll-indicator {
        bottom: 90px;
    }
}

@media (max-width: 480px) {
    .sec__title {
        font-size: 1.8rem;
        letter-spacing: 0;
    }

    .sec__desc {
        font-size: 0.95rem;
    }

    .hero-button-container {
        padding: 5px 5px;
        gap: 0.5rem;
    }

    .btn-plus {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }

    .btn-text {
        padding: 8px 16px;
        font-size: 0.8rem;
        letter-spacing: 0.3px;
    }

    .btn-register-now {
        padding: 12px 32px;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-footer {
        bottom: 20px;
    }
}

/* Z-index helper */
.z-index-2 {
    position: relative;
    z-index: 4;
}
