@font-face {
    font-family: 'Gilroy';
    src: url('Gilroy-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-glow: radial-gradient(circle at 50% 50%, rgba(20, 25, 45, 0.4) 0%, rgba(5, 5, 5, 1) 100%);
    --font-main: 'Gilroy', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove all default link styles */
a, a:visited, a:hover, a:active, a:focus {
  color: inherit !important;
  text-decoration: none !important;
  background: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Optional: reset transition and font weight if Elementor adds them */
a {
  transition: none !important;
  font-weight: inherit !important;
}


body {
    background-color: var(--bg-color);
    background-image: var(--accent-glow);
    background-attachment: fixed;
    color: var(--text-color);
    font-family: var(--font-main);
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    font-weight: 300;
    text-transform: lowercase;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 1.5rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.logo {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.02em;
    font-weight: bold;
    text-transform: uppercase;
}

.contact {
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* padding: 8rem 1.5rem 2rem; */
}

.content {
    width: 100%;
    max-width: 250px;
    display: flex;
    flex-direction: column;
}

.text-top {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    text-align: left;
}

.image-container {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;

}

.image-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.5) 0%, rgba(147, 51, 234, 0) 70%);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    from { opacity: 0.4; transform: scale(0.95); }
    to { opacity: 0.7; transform: scale(1.1); }
}

.image-wrapper {
    width: 100%;

    border-radius: 16px;
    overflow: hidden;
    background-color: #101010;
    position: relative;
    z-index: 1;
}

.portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.text-bottom {
    align-self: flex-end;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

footer {
    width: 100%;
    padding: 0;
    margin-top: auto;
}

.footer-name {
    width: 100%;
    display: flex;
    align-items: flex-end;
    line-height: 0;
}

.name-svg {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: -1px; /* Removes any tiny gap at the very bottom */
}

/* Animations */
.content, header, footer {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

header{
    position: absolute;
}

header { animation-delay: 0.2s; }
.content { animation-delay: 0.5s; }
footer { animation-delay: 0.8s; }

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

/* Landscape/Desktop adjustment */
@media (min-width: 768px) {
    .content {
        max-width: 300px;
    }
   
}

