/* ===== FULLSCREEN HERO SECTION ===== */

/* Full-screen hero - 100vh */
.hero-fullscreen {
    height: 100vh;
    min-height: 600px;
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ===== FLOATING HEADER ===== */
.hero-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    transition: all 0.3s ease;
    border-top: none;
}

.hero-header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo in floating header */
.hero-header .logo a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.hero-header .logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.hero-header .logo img:hover {
    transform: scale(1.1);
}

.hero-header .logo-text span {
    color: var(--white);
    font-weight: 600;
    line-height: 1.1;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-header .logo-text .with-abe {
    font-size: 0.8em;
    color: #75E6DA;
    font-weight: 500;
}

/* ===== FLOATING NAVIGATION ===== */
.hero-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.hero-nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.hero-nav-links a:hover,
.hero-nav-links a.active {
    color: #75E6DA;
}

.hero-nav-links a:hover::after,
.hero-nav-links a.active::after {
    width: 100%;
    background: #75E6DA;
}

/* ===== HEADER CONTROLS ===== */
.hero-header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-header-controls .dark-mode-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    padding: 0.6rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-header-controls .dark-mode-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.hero-nav-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.hero-nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Hamburger to X animation */
.hero-nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hero-nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.hero-nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hero-nav-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ===== HERO CONTENT ===== */
.hero-content {
    text-align: center;
    padding: 2rem;
    padding-top: 140px; /* Add space from top nav */
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Increase hero logo size and improve container */
.hero-content .hero-logo {
    width: 320px;
    height: auto;
    margin-bottom: 2.5rem;
    animation: fadeInDown 1s ease-out;
    object-fit: contain;
    max-width: 90%;
    aspect-ratio: 1 / 1;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Add hover effect */
.hero-content .hero-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

/* Adjust spacing for hero elements */
.hero-content h1 {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    line-height: 1.2;
}

/* Welcome text - larger */
.hero-content h1 .welcome-text {
    font-size: 4.5rem;
    display: block;
    font-weight: 600;
}

/* "with Abe" - smaller and accent color */
.hero-content h1 .with-abe {
    font-size: 2.5rem;
    color: #75E6DA;
    font-weight: 500;
}

.hero-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    max-width: 600px;
}

.hero-content .cta-buttons {
    margin-top: 1rem;
}

/* Dark mode logo styling */
[data-theme="dark"] .hero-content .hero-logo {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 32px rgba(93, 173, 226, 0.3);
}

[data-theme="dark"] .hero-content .hero-logo:hover {
    box-shadow: 0 12px 48px rgba(93, 173, 226, 0.5);
}

/* High contrast mode logo styling */
[data-high-contrast="true"] .hero-content .hero-logo {
    border: 4px solid #000000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

[data-high-contrast="true"][data-theme="dark"] .hero-content .hero-logo {
    border: 4px solid #000000;
    background: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 26, 47, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .hero-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero-nav-links {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .hero-nav-links a {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
    }

    .hero-nav-toggle {
        display: flex;
    }

    .hero-header {
        padding: 1rem 1.5rem;
    }
}

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

    .hero-content {
        padding: 1.5rem;
        padding-top: 120px; /* Adjust spacing for mobile */
        padding-bottom: 2rem;
    }

    .hero-content .hero-logo {
        width: 260px;
        height: auto;
        aspect-ratio: 1 / 1;
        margin-bottom: 1.5rem;
        padding: 0.8rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h1 .welcome-text {
        font-size: 3rem;
    }

    .hero-content h1 .with-abe {
        font-size: 1.8rem;
    }

    .hero-header-container {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-fullscreen {
        height: auto;
        min-height: 100vh;
    }

    .hero-content {
        padding-top: 100px; /* Adjust spacing for small mobile */
        padding-bottom: 2rem;
    }

    .hero-content .hero-logo {
        width: 220px;
        height: auto;
        aspect-ratio: 1 / 1;
        margin-bottom: 1rem;
        padding: 0.6rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h1 .welcome-text {
        font-size: 2.5rem;
    }

    .hero-content h1 .with-abe {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-header {
        padding: 1rem;
    }

    .hero-header .logo-text {
        font-size: 0.9rem;
    }
} 