/* =========================================================
   INDEX.HTML - SPECIFIK STYLING
========================================================= */

/* Hero Section - Extended for index */
.hero {
    padding: 250px 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

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

/* Content Sections */
.section {
    padding: 80px 20px;
}

.section:nth-child(even) {
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    border: none;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--medium-gray);
}

/* Slotsgade Section */
.slotsgade-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.slotsgade-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.slotsgade-image {
    height: 400px;
    background: url('../billeder/toon.png') center/cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Medlemskab Section */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.membership-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.membership-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.membership-card p {
    color: var(--medium-gray);
    line-height: 1.8;
}

/* Værdier Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-item h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Responsive - Index Specific */
@media (max-width: 968px) {
    .slotsgade-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .slotsgade-image {
        height: 300px;
    }
}

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

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .membership-grid,
    .values-grid {
        gap: 20px;
    }

    .membership-card,
    .value-item {
        padding: 30px 20px;
    }
}/* =========================================================
   MIMO GYM ANNOUNCEMENT BANNER
========================================================= */

.mimo-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(90deg, #e84e0f 0%, #ff6b35 50%, #e84e0f 100%);
    background-size: 200% auto;
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 11px 20px;
    text-align: center;
    transition: filter 0.2s ease;
    animation: bannerShimmer 4s linear infinite;
    flex-wrap: wrap;
}

.mimo-banner--kropsro {
    background: linear-gradient(90deg, #2f7d40 0%, #5fa86b 50%, #2f7d40 100%);
    background-size: 200% auto;
}

.mimo-banner:hover {
    filter: brightness(1.1);
}

.mimo-banner strong {
    font-weight: 800;
}

.mimo-banner-pill {
    background: rgba(255,255,255,0.25);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 2px 10px;
    flex-shrink: 0;
}

.mimo-banner-arrow {
    font-weight: 700;
    font-size: 0.88rem;
    opacity: 0.9;
    flex-shrink: 0;
}

@keyframes bannerShimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@media (max-width: 600px) {
    .mimo-banner {
        font-size: 0.85rem;
        gap: 7px;
        padding: 10px 15px;
    }
}

/* =========================================================
   MEMBERSHIP CARD HIGHLIGHT (Samarbejde)
========================================================= */

.membership-card--highlight {
    position: relative;
    border: 2px solid #ff6b35;
    overflow: visible;
}

.membership-card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b35, #e84e0f);
    color: white;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(255,107,53,0.45);
}

.membership-card-link {
    display: inline-block;
    margin-top: 14px;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.membership-card-link:hover {
    color: #ff6b35;
}

/* Scroll Arrow */
.hero-arrow svg path {
    stroke: whitesmoke !important; /* Sæt den farve du vil have */
    stroke-width: 3;
}

.hero-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 5;
    animation: arrowBounce 2s infinite;
    opacity: 1;.hero-arrow {
    transition: transform 0.25s ease, opacity 0.3s ease;
}

}

/* Glow så pilen træder frem */
.hero-arrow svg {
    filter: drop-shadow(0 0 6px rgba(0,0,0,0.7));
}


.hero-arrow:hover svg {
    opacity: 1;
}

/* Bounce animation */
@keyframes arrowBounce {
    0% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
    100% { transform: translate(-50%, 0); }
}
