/* ================================
   About Page Styles
   ================================ */

.about-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10050; /* Higher than overlay (10000) but lower than navbar (10100) */
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.about-overlay.hidden {
    display: none !important;
}

/* ================================
   Profile Image Styles
   ================================ */

.profile-image {
    /* Styles applied dynamically in JavaScript like cursorImage in script1.js */
    display: none; /* Hidden by default, will be shown when about is open */
    position: fixed;
    pointer-events: none;
    z-index: 10051; /* Higher than about overlay */
    transform: translate(-50%, -50%);
    width: auto;
    height: 100px;
    object-fit: contain;
    transition: opacity 0.3s ease;
    opacity: 1;
}

/* ================================
   About Content Styles
   ================================ */

.about-content {
    position: relative;
    z-index: 10004;
    text-align: center;
    max-width: 600px;
    padding: 2rem;
    margin: 2rem;
    pointer-events: auto;
}

.about-text h1 {
    font-family: "ABC Gravity", sans-serif;
    font-size: 3rem;
    font-weight: 400;
    font-stretch: 70%;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 1.5rem;
    text-shadow: none;
}

.about-text p {
    font-family: "Suisse Intl", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
    color: #000000;
    background-color: white;
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-text p:last-of-type {
    margin-bottom: 2rem;
}

/* ================================
   Contact Links Styles
   ================================ */

.contact-links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 2rem;
}

.contact-link {
    text-decoration: none;
    color: #000000;
    font-family: "Suisse Intl", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
    background-color: white;
    transition: all 0.3s ease;
    padding: 0;
    border: none;
    box-shadow: none;
    min-width: auto;
    justify-content: flex-start;
}

.contact-link:hover {
    color: #666;
    transform: none;
}

.email-link {
    text-align: left;
}

.instagram-link {
    text-align: right;
}

.contact-icon {
    font-size: 1.2rem;
    opacity: 0.8;
}

.contact-text {
    font-weight: 500;
}

/* ================================
   Mobile Responsive Styles
   ================================ */
/* 320px, 360px, 480px 768px, 1024px, 1400px, 1920px */
@media (max-width: 1920px) {}

@media (max-width: 1400px) {}

@media (max-width: 1024px) {}


@media (max-width: 768px) {
    .about-content {
        margin: 1rem;
        padding: 1.5rem;
        max-width: 90vw;
    }
    
    .about-text h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .about-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
    }
    
    .contact-link {
        min-width: 180px;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-content {
        margin: 0.5rem;
        padding: 1rem;
    }
    
    .about-text h1 {
        font-size: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .contact-link {
        min-width: 160px;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {}

@media (max-width: 320px) {}

/* ================================
   Animation Keyframes
   ================================ */

@keyframes profileFloat {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.profile-image.floating {
    animation: profileFloat 3s ease-in-out infinite;
}

/* ================================
   Close Button (Removed - using "Tim Birrer" button to toggle)
   ================================ */
