@charset "UTF-8";
/* CSS Document */
        * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        }

        p { margin-bottom: 20px; }

        iframe { 
        width: 100%; height: 375px; 
        margin-top: 50px; 
        }

        h2 { 
        font-size: 33px; 
        color: #a67df8;
        }

        .hideContent h1 { display: none; }
        .hideContent h2 { display: none; }

        a {
        text-decoration: none;
        color: #a67df8;
        transition: color 0.3s ease; /* Smooth transition on hover */
        }

        a:hover {
        color: #d47df8; /* Changes color when hovered */
        text-decoration: none /* Underline on hover */
        }

        a:visited {
        color: #a67df8; /* Changes color for visited links */
        }

        .bio { 
        font-size: 1.25em;
        color: #fff;
        padding: 50px 50px 30px 50px; 
        width: 80%;
        background: rgba(0, 0, 0, 0.8);
        /*background: url("images/BioBackground.jpg") center/cover; */
        border: 3px solid rgba(255, 255, 255, 0.2);
        border-radius: 15px;
}

        .credit { 
        text-align: center;
        font-size: .7em;
        color: #fff;
        padding: 30px 50px 30px 50px; 
        width: 80%;
        margin-bottom: 22px;
        white-space: nowrap;
}

        .contact { 
        text-align: center;
        color: #fff;
        padding: 30px 10px; 
        width: 80%;
        background: rgba(0, 0, 0, 0.4);
        border: 3px solid rgba(255, 255, 255, 0.2);
        border-radius: 15px;
}

        .contactMethods {
        font-size: 1.25em;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
}

        .contact img {
        width: 76px;
        }

        .headshot { 
        width: 130px;
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 15px;
        float: right;
        margin-left: 30px;
        margin-bottom: 20px;
}


        body {
            min-height: 100vh;
            background-color: #000;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            font-family: "arboria", sans-serif;
            font-weight: 300;
            font-style: normal;
            padding: 80px 20px 20px 20px;
        }
        /* Background image */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("images/Background.jpg") center/cover;
            z-index: -2;
        }
        /* Dark overlay for better text readability */
        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: -1;
        }
   
        .section-Hero {
            text-align: center;
            z-index: 1;
            animation: fadeInUp 1.2s ease-out;
            max-width: 90%;
            width: 100%;
        }
        .logo {
            width: 275px;
            height: 275px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem auto;
            max-width: 100%;
            background: rgba(0, 0, 0, 0.4);
            border-radius: 50px;

        }
        .logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .logo-text {
            font-size: 2.5rem;
            font-weight: bold;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .main-text {
            font-size: clamp(1.5rem, 4vw, 2rem);
            font-weight: 300;
            color: white;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            margin-bottom: 1rem;
            letter-spacing: 2px;
            line-height: 1.2;
        }
        .subtitle {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            color: rgba(255, 255, 255, 0.9);
            font-weight: 300;
            letter-spacing: 1px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
            line-height: 1.4;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        
        /* Mobile First Approach */
        @media (max-width: 768px) {
            
            .contactMethods { font-size: 3vw; } 
            
            body {
                padding: 70px 15px 15px;
                background-attachment: scroll;
            }
            
            .section-Hero {
                max-width: 100%;
            }
            
            .logo {
                width: 180px;
                height: 180px;
                margin-bottom: 1.5rem;
            }
            
            .main-text {
                font-size: 1.5rem;
                letter-spacing: 1px;
                margin-bottom: 0.5rem;
            }
            
            .subtitle {
                font-size: 1rem;
                letter-spacing: 0.5px;
            }
        }
        
        
        
        
@media (max-width: 480px) {
                
         .contactMethods {
                font-size: 1.25em;
                flex-direction: column;
                align-items: center;
                align-content: space-between;
                line-height: 1.2em;
                gap: 1.5em; 
        }
            
        .method { margin-bottom: 17px; }

        .headshot { 
            display: block;
            float: none;
            margin: 0 auto;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        h2 { 
            line-height: 1em;
            text-align: center; 
        }

        .bio { padding: 22px; }
        }



        
        /* Small tablets */
        @media (min-width: 769px) and (max-width: 1024px) {
            body {
                padding: 80px 20px 20px;
            }
            
            .logo {
                width: 220px;
                height: 220px;
            }
            
            .main-text {
                font-size: 1.8rem;
                letter-spacing: 1.5px;
            }
            
            .subtitle {
                font-size: 1.1rem;
            }
        }
        
        /* Large tablets and small desktops */
        @media (min-width: 769px) and (max-width: 1024px) {
            .logo {
                width: 250px;
                height: 250px;
            }
            
            .main-text {
                font-size: 1.9rem;
            }
            
            .subtitle {
                font-size: 1.2rem;
            }
        }
        
        /* Large desktops */
        @media (min-width: 1025px) {
            .logo {
                width: 275px;
                height: 275px;
            }
            
            .main-text {
                font-size: 2rem;
            }
            
            .subtitle {
                font-size: 1.3rem;
            }
        }
        
        /* Ultra-wide screens */
        @media (min-width: 1440px) {
            .logo {
                width: 320px;
                height: 320px;
            }
            
            .main-text {
                font-size: 2.5rem;
            }
            
            .subtitle {
                font-size: 1.5rem;
            }
        }
        
        /* Portrait orientation adjustments */
        @media (orientation: portrait) and (max-height: 800px) {
            body {
                justify-content: flex-start;
                padding-top: 10vh;
            }
            
            .logo {
                margin-bottom: 1rem;
            }
        }
        
        /* Landscape orientation on mobile */
        @media (orientation: landscape) and (max-height: 500px) {
            body {
                padding: 60px 10px 10px;
            }
            
            .logo {
                width: 120px;
                height: 120px;
                margin-bottom: 1rem;
            }
            
            .main-text {
                font-size: 1.2rem;
                margin-bottom: 0.5rem;
            }
            
            .subtitle {
                font-size: 0.9rem;
            }
        }
        
        /* High DPI screens */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .logo img {
                image-rendering: -webkit-optimize-contrast;
                image-rendering: crisp-edges;
            }
        }

