
:root {
    --primary-blue: #0052cc;
    --secondary-blue: #0747a6;
    --golden: #ffd700;
    --golden-light: #fff5d4;
    --dark-blue: #172b4d;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-image: url('/images/heroo_landing_page.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(23, 43, 77, 0.95), rgba(7, 71, 166, 0.85));
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.gradient {
    background: linear-gradient(45deg, #FFD700, #DAA520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Buttons */
.btn-glow {
    position: relative;
    background: var(--primary-blue);
    border: none;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.3s ease;
    color: white;
}

.btn-glow:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

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

.btn-outline-light {
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
}

/* Achievement Cards */
.achievement-cards {
    margin-top: 2rem;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.achievement-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.achievement-icon {
    color: var(--golden);
    font-size: 2rem;
    margin-bottom: 10px;
}

.achievement-content h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.achievement-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Hero Image and Floating Elements */
.hero-image-wrapper {
    position: relative;
    animation: fadeIn 1s ease 0.8s both;
    z-index: 3;
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    animation: float 6s ease-in-out infinite;
}

.floating-achievement {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 5s ease-in-out infinite;
    font-weight: 600;
    color: var(--dark-blue);
}

.achievement-1 {
    top: 20%;
    left: 0;
}

.achievement-2 {
    bottom: 30%;
    right: 0;
    animation-delay: 0.5s;
}

.text-golden {
    color: var(--golden);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* === RESPONSIVE STYLING === */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3.2rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .achievement-cards .row {
        justify-content: center;
    }

    .achievement-card {
        padding: 15px;
    }

    .hero-image-wrapper {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin-bottom: 0.75rem;
    }

    .achievement-content h3 {
        font-size: 1.5rem;
    }

    .achievement-icon {
        font-size: 1.5rem;
    }

    .achievement-card {
        backdrop-filter: blur(6px);
    }
}

/* About */
.organization-section {
    background-image: url('../storage/images/Hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(23, 43, 77, 0.95), rgba(7, 71, 166, 0.85));
}

/* Membership */

    .membership-display-section {
        background: linear-gradient(to right, #004e92, #000428);
    }
    .card:hover {
        transform: translateY(-3px);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
    }

.membership-display-section {
    background-image: url('../storage/images/heroo_landing_page.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.blue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.9), rgba(0, 163, 255, 0.85));
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
}

.member-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
}

.member-image-wrapper {
    position: relative;
    overflow: hidden;
}

.default-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    font-size: 5rem;
    color: #dee2e6;
}

.member-status {
    position: absolute;
    top: 15px;
    right: 15px;
}

.badge {
    padding: 8px 15px;
    font-weight: 500;
}

.member-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-item i {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 82, 204, 0.1);
    color: #0052cc;
    border-radius: 50%;
}

.btn-light {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .member-card {
        margin-bottom: 20px;
    }
}

/* News */

.fixed-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.news-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.news-image-wrapper {
    position: relative;
    overflow: hidden;
}

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.95);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.news-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    color: var(--primary-blue);
}

.news-date .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #666;
}

.card-title {
    color: var(--dark-blue);
    font-size: 1.1rem;
    line-height: 1.4;
}

.btn-link {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-link:hover {
    text-decoration: none;
    color: var(--secondary-blue) !important;
}

.author {
    font-size: 0.9rem;
}

@media (max-width: 767.98px) {
    .news-card {
        margin-bottom: 1.5rem;
    }
}

    /* Your existing styles remain the same */
    .section-padding {
        padding: 80px 0;
    }
    .section-title {
        margin-bottom: 40px;
    }

.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.event-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.95);
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
}

.event-date .day {
    font-size: 24px;
    font-weight: bold;
    display: block;
    line-height: 1;
}

.event-date .month {
    font-size: 14px;
    text-transform: uppercase;
}

.membership-card {
    border-radius: 15px;
    overflow: hidden;
}

.letter-card {
    border-radius: 15px;
    text-align: center;
}

.letter-icon {
    background: rgba(0, 82, 204, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.contact-info i {
    width: 40px;
}

.form-control {
    padding: 12px;
    border-radius: 8px;
}

.rounded-lg {
    border-radius: 15px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 40px 0;
    }
}

/* Prestasi */
.section-padding {
    padding: 80px 0;
}

.prestasi-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: start;
    border: 1px solid #eaeaea;
    height: 100%;
}

.prestasi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.prestasi-card h5 {
    font-weight: 700;
    font-size: 1.2rem;
    color: #1f3c88;
}

.prestasi-meta {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.5;
}

.badge {
    font-size: 0.7rem;
    padding: 0.4em 0.6em;
    border-radius: 0.5rem;
    font-weight: 600;
}

.prestasi-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #2c3e50;
}

.prestasi-info-item i {
    width: 20px;
    margin-top: 0.15rem;
}

/* Bullet-style list */
.prestasi-info-item ul,
.prestasi-card ul {
    padding-left: 1rem;
    margin-bottom: 0;
}

.prestasi-card ul li {
    font-size: 0.92rem;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

/* Buttons */
.btn-outline-primary:hover {
    background: linear-gradient(45deg, #0052cc, #4a90e2);
    color: #fff;
}

.btn-outline-dark:hover {
    background: #2c3e50;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .prestasi-card {
        padding: 1.5rem;
    }

    .prestasi-card h5 {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }
}


/* New 2*/
/* News Card Styles */
.news-card {
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
}

.shadow-hover {
    transition: box-shadow 0.3s ease;
}

.shadow-hover:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Location Section Styles */
.maps-container {
    border-radius: 15px;
    overflow: hidden;
}

.location-details {
    color: #333;
}

.location-details i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-details h5 {
    font-size: 1.1rem;
    font-weight: 600;
}

.location-details p {
    color: #666;
}

@media (max-width: 768px) {
    .maps-container iframe {
        height: 300px;
    }
}


/* === Membership Responsive Fix === */

/* Card club agar lebih rapi */
#membership .border.rounded {
    transition: all 0.3s ease;
    border-radius: 14px !important;
}

#membership .border.rounded:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Supaya link panjang tidak keluar container */
#membership a {
    word-break: break-word;
}

/* Icon dan teks sejajar rapi */
#membership .d-flex {
    align-items: flex-start !important;
}

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

    /* Logo dan tombol jadi center */
    #membership .col-md-4 {
        text-align: center;
    }

    /* Tombol full width sudah benar, beri jarak */
    #membership .btn {
        padding: 12px;
        font-size: 16px;
    }

    /* Card club jarak lebih nyaman */
    #membership .border.rounded {
        padding: 16px !important;
    }

    /* Judul club lebih jelas */
    #membership h6 {
        font-size: 15px;
    }

    /* Text lebih kecil agar tidak padat */
    #membership .text-muted {
        font-size: 14px;
    }
}

/* Extra small phone */
@media (max-width: 480px) {

    #membership .card-body {
        padding: 20px !important;
    }

    #membership h5 {
        font-size: 16px;
        text-align: center;
    }
}

/* ========================= */
/* HERO SECTION TYPOGRAPHY  */
/* ========================= */


.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 25px;
}

.hero-title .highlight {
    display: inline-block;
    color: #ffc107;
}

.hero-title .highlight-2 {
    display: inline-block;
    color: #ffc107;
}


