.hidden {
display: none;
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border-width: 0;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
width: 100%;
min-width: 100vw;
overflow-x: hidden;
}
html, body, main, section, footer, div {
border: none !important;
outline: none !important;
}
footer, footer *, .footer, .footer * {
border: none !important;
outline: none !important;
box-shadow: none !important;
margin-bottom: 0 !important;
}
:root {
--primary-color: #345C32;
--secondary-color: #9CAC54;
--accent-color: #A7F0DD;
--hover-color: #FBC858;
--text-primary: #2d4a2b;
--text-secondary: #4a5d3a;
--bg-primary: #ffffff;
--bg-secondary: #f8fbf8;
--bg-accent: #f0f9f2;
--border-color: #e8f0e8;
--shadow-sm: 0 1px 2px 0 rgb(52 92 50 / 0.08);
--shadow-md: 0 4px 6px -1px rgb(52 92 50 / 0.12);
}
body.custom-cursor-active * {
cursor: none !important;
}
body.custom-cursor-active .logo-text {
cursor: pointer !important;
pointer-events: auto !important;
}
body {
font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
color: var(--text-primary);
background-color: #2d4a2b;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-overflow-scrolling: touch;
border: none;
outline: none;
min-width: 100vw;
width: 100%;
}
.custom-cursor {
position: fixed;
width: 20px;
height: 20px;
background: #FF6B35;
border-radius: 50%;
pointer-events: none;
z-index: 9999;
transition: none;
transform: translate(-50%, -50%);
will-change: transform;
left: 0;
top: 0;
mix-blend-mode: difference;
}
.custom-cursor.hover {
width: 30px;
height: 30px;
background: #FF6B35;
border-radius: 50%;
transform: translate(-50%, -50%) scale(1.2);
mix-blend-mode: difference;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Josefin Sans', sans-serif;
font-weight: 600;
line-height: 1.2;
}
section {
scroll-margin-top: 125px;
}
.section-title {
font-size: 2.5rem;
text-align: center;
margin-bottom: 3rem;
}
.navbar {
position: fixed;
top: 0;
width: 100%;
background: #2d4a2b !important;
z-index: 1000;
transition: all 0.3s ease;
}
.nav-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 3rem;
display: flex;
justify-content: space-between;
align-items: center;
height: 105px;
}
.nav-logo {
display: flex;
align-items: center;
height: 100%;
}
.logo-text {
font-family: 'Josefin Sans', sans-serif;
font-size: 2.25rem;
font-weight: 700;
color: white;
text-decoration: none;
transition: all 0.3s ease;
display: flex;
align-items: center;
height: 100%;
}
.typewriter-text {
display: inline-block;
overflow: hidden;
white-space: nowrap;
width: 0;
line-height: 1;
vertical-align: middle;
min-width: 0;
transition: none;
color: white;
}
.logo-text:hover {
color: #FBC858;
transform: scale(1.05);
transition: all 0.2s ease;
}
.logo-text:hover .typewriter-text span {
transition: color 0.15s ease;
}
.typewriter-text .highlighted {
color: #FBC858 !important;
}
.typewriter-text .normal {
color: white !important;
}
.nav-menu {
display: flex;
list-style: none;
gap: 3rem;
}
.nav-link {
text-decoration: none;
color: white;
font-weight: 500;
transition: all 0.3s ease;
position: relative;
font-size: 1.125rem;
opacity: 0.9;
display: inline-block;
padding: 0.5rem 0 0.1rem 0;
cursor: pointer;
outline: none;
}
.nav-link:hover,
.nav-link.hover-active {
color: #FBC858;
}
.nav-link::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 2px;
background: #FF6B35;
transition: width 0.3s ease;
z-index: 1;
}
.nav-link:hover::after,
.nav-link.hover-active::after {
width: 100%;
}
.nav-link:focus {
color: #FBC858;
outline: none;
}
.nav-link:focus::after {
width: 100%;
}
.nav-link:active,
.nav-link.touch-active {
color: #FBC858;
transform: scale(0.98);
}
.nav-link:active::after,
.nav-link.touch-active::after {
width: 100%;
}
@media (hover: hover) {
.nav-link:hover {
color: #FBC858 !important;
}
.nav-link:hover::after {
width: 100% !important;
}
}
@media (hover: none) {
.nav-link:active {
color: #FBC858 !important;
transform: scale(0.98) !important;
}
.nav-link:active::after {
width: 100% !important;
}
}
.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
gap: 4px;
padding: 8px;
border-radius: 4px;
transition: background-color 0.3s ease;
}
.hamburger:hover {
background-color: rgba(255, 255, 255, 0.1);
}
.hamburger span {
width: 25px;
height: 3px;
background: white;
transition: all 0.3s ease;
border-radius: 2px;
}
.hamburger.active span:nth-child(1) {
transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
opacity: 0;
}
.hamburger.active span:nth-child(3) {
transform: rotate(-45deg) translate(6px, -6px);
}
.hero {
min-height: 100vh;
background: #2d4a2b;
overflow: visible;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
position: relative;
padding-top: 150px;
}
.hero-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
width: 100%;
max-width: 1200px;
position: relative;
z-index: 2;
overflow: visible;
}
.hero-visual {
position: relative;
height: min(500px, 80vw, 80vh);
max-height: 500px;
display: flex;
align-items: center;
justify-content: center;
overflow: visible;
padding: 50px;
margin: -50px;
}
.artistic-composition {
position: relative;
width: 500px;
height: 500px;
margin: 0 auto;
--animation-scale: 1;
}
.geometric-circle {
position: absolute;
width: 280px;
height: 280px;
background: #FBC858;
border-radius: 50%;
bottom: 30px;
left: -80px;
opacity: 0.9;
animation: float-gentle 4s ease-in-out infinite, roll-gentle 8s ease-in-out infinite;
will-change: transform;
transform: translateZ(0);
}
.geometric-rectangle {
position: absolute;
width: 80px;
height: 80px;
background: #FF6B35;
top: 246px;
left: 370px;
opacity: 1;
border-radius: 4px;
animation: rollingRock 4s cubic-bezier(.79, 0, .47, .97) infinite;
will-change: transform;
transform: translateZ(0);
}
.diagonal-line {
position: absolute;
background: white;
opacity: 0.7;
}
.line-1 {
width: 400px;
height: 2px;
top: 120px;
left: 170px;
transform: rotate(45deg) translateZ(0);
animation: line-glow 7s ease-in-out infinite;
will-change: transform, opacity;
}
.creative-arrow {
display: inline-block;
margin-left: 20px;
width: 3px;
height: 30px;
background: #FF6B35;
animation: arrow-bounce 2s ease-in-out infinite;
text-decoration: none;
cursor: pointer;
transition: all 0.2s ease;
vertical-align: top;
}
.creative-arrow:hover {
background: #e55a2b;
transform: scale(1.3);
transition: all 0.2s ease;
}
.creative-arrow::before {
content: '';
position: absolute;
bottom: -15px;
left: 50%;
transform: translateX(-50%);
width: 0;
height: 0;
border-top: 25px solid #FF6B35;
border-left: 12px solid transparent;
border-right: 12px solid transparent;
transition: all 0.3s ease;
}
.creative-arrow:hover::before {
border-top-color: #e55a2b;
transform: translateX(-50%) scale(1.3);
}
.hero-text {
display: flex;
flex-direction: column;
gap: 2rem;
position: relative;
}
.hero-title {
display: flex;
flex-direction: column;
gap: 0.8rem;
align-items: flex-start;
}
.title-line {
font-size: 4rem;
font-weight: 700;
color: white;
line-height: 0.9;
font-family: 'Josefin Sans', sans-serif;
text-transform: uppercase;
letter-spacing: 0.3em;
text-align: left;
}
.hero-subtitle {
display: flex;
flex-direction: column;
gap: 0.3rem;
margin-top: 1rem;
position: relative;
margin-left: 0;
align-items: flex-start;
margin-bottom: 0;
padding: 0;
border: none;
font-size: inherit;
font-weight: inherit;
line-height: inherit;
}
.hero-subtitle h1 {
font-size: 1.2rem;
font-weight: 300;
font-family: 'Lato', sans-serif;
color: white;
text-align: left;
margin: 0;
padding: 0;
border: none;
}
.subtitle-item {
font-size: 1.2rem;
color: white;
font-weight: 300;
font-family: 'Lato', sans-serif;
text-align: left;
}
.hero-year {
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
font-size: 1rem;
color: white;
font-family: 'Lato', sans-serif;
writing-mode: vertical-rl;
text-orientation: mixed;
}
@keyframes float-gentle {
0%, 100% {
transform: translateY(0px) rotate(0deg);
}
25% {
transform: translateY(-20px) rotate(2deg);
}
50% {
transform: translateY(-25px) rotate(0deg);
}
75% {
transform: translateY(-15px) rotate(-2deg);
}
}
@keyframes roll-gentle {
0%, 100% {
transform: translateX(0px) rotate(0deg);
}
25% {
transform: translateX(60px) rotate(90deg);
}
50% {
transform: translateX(120px) rotate(180deg);
}
75% {
transform: translateX(60px) rotate(270deg);
}
}
@keyframes line-glow {
0%, 100% {
opacity: 1;
transform: rotate(45deg) scaleX(1);
transform-origin: left center;
}
50% {
opacity: 1;
transform: rotate(45deg) scaleX(1.3);
transform-origin: left center;
}
}
@keyframes arrow-bounce {
0%, 100% {
transform: translateY(0px);
}
50% {
transform: translateY(-8px);
}
}
@keyframes rollingRock {
0% {
transform: translate(0, 0) rotate(-45deg)
}
20% {
transform: translate(-56px, -56px) rotate(-135deg)
}
40% {
transform: translate(-112px, -112px) rotate(-225deg)
}
60% {
transform: translate(-168px, -168px) rotate(-315deg)
}
80% {
transform: translate(-224px, -224px) rotate(-405deg)
}
100% {
transform: translate(0, 0) rotate(-45deg)
}
}
@keyframes typewriter {
to {
width: 100%;
}
}
.about {
padding: 80px 0;
background: var(--bg-secondary);
}
.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: stretch;
}
.about-text {
display: flex;
flex-direction: column;
justify-content: flex-start;
}
.about-text p {
font-size: 1.125rem;
color: var(--text-secondary);
margin-bottom: 1.5rem;
line-height: 1.7;
}
.italic-link {
color: var(--text-primary);
text-decoration: none;
font-style: italic;
transition: color 0.3s ease;
}
.italic-link:hover {
color: var(--hover-color);
}
.cv-block {
background: var(--bg-accent);
border: 1px solid var(--border-color);
border-radius: 10px;
padding: 1.2rem;
box-shadow: var(--shadow-sm);
width: 100%;
max-width: 480px;
margin: 0 auto;
height: fit-content;
}
.cv-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1rem;
}
.cv-block h3 {
color: var(--primary-color);
font-size: 1.1rem;
margin-bottom: 0;
font-family: 'Josefin Sans', sans-serif;
font-weight: 600;
text-align: left;
}
.cv-toggle {
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
border-radius: 50%;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
}
.cv-toggle:hover {
background-color: var(--bg-accent);
transform: scale(1.1);
}
.cv-toggle-icon {
font-size: 1.2rem;
font-weight: bold;
color: var(--primary-color);
transition: transform 0.3s ease;
display: inline-block;
}
.cv-toggle.expanded .cv-toggle-icon {
transform: rotate(45deg);
}
.cv-content {
overflow: hidden;
transition: all 0.3s ease;
}
.cv-content.collapsed {
max-height: 0;
opacity: 0;
}
.cv-content.expanded {
max-height: 500px;
opacity: 1;
}
.cv-item {
margin-bottom: 1.2rem;
padding-bottom: 1.2rem;
border-bottom: 1px solid var(--border-color);
line-height: 1.3;
}
.cv-item:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}
.cv-degree {
color: var(--text-secondary);
font-size: 0.85rem;
font-weight: 400;
display: inline;
margin-right: 0.5rem;
}
.cv-item strong {
color: var(--text-primary);
font-weight: 600;
display: inline;
margin-bottom: 0.1rem;
font-size: 0.95rem;
}
.cv-honors {
color: var(--text-secondary);
font-size: 0.9rem;
font-style: italic;
font-weight: normal;
}
.cv-university {
color: var(--text-secondary);
font-size: 0.8rem;
margin-top: 0.8rem;
}
.about-photo {
display: flex;
align-items: flex-start;
justify-content: center;
height: 100%;
}
.writing {
padding: 80px 0;
background: var(--bg-secondary);
}
.writing-categories {
display: flex;
flex-direction: column;
gap: 3rem;
}
.writing-category {
background: var(--bg-primary);
border-radius: 16px;
padding: 2rem;
border: 1px solid var(--border-color);
}
.category-title {
color: var(--primary-color);
font-size: 1.5rem;
margin-bottom: 1.5rem;
text-align: center;
}
.writing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
max-width: 100%;
}
.writing-item {
display: flex;
flex-direction: column;
background: #f8f9f8;
border-radius: 12px;
border: 1px solid #e8f0e8;
overflow: hidden;
transition: all 0.3s ease;
margin-bottom: 2rem;
box-shadow: 0 2px 8px rgba(45, 74, 43, 0.08);
}
.writing-item:hover {
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(45, 74, 43, 0.15);
}
.writing-image {
width: 100%;
height: 200px;
overflow: hidden;
position: relative;
}
.writing-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}
.wolf-image {
object-position: center 2% !important;
}
.writing-image .bni-image {
object-position: center 20% !important;
}
.poster-item .writing-image {
height: 600px !important;
position: relative;
background: #f8f9f8;
overflow: hidden;
}
.poster-item .writing-image img {
object-fit: contain;
will-change: transform;
opacity: 0;
transition: opacity 0.6s ease-in-out;
filter: blur(5px);
}
.poster-item .writing-image img.loaded {
opacity: 1;
filter: blur(0);
}
@keyframes spin {
0% { transform: translate(-50%, -50%) rotate(0deg); }
100% { transform: translate(-50%, -50%) rotate(360deg); }
}
.poster-image {
width: 100%;
height: auto;
opacity: 0;
transition: opacity 0.6s ease-in-out;
filter: blur(5px);
}
.poster-image.loaded {
opacity: 1;
filter: blur(0);
}
.poster-item {
position: relative;
background: #f8f9f8;
overflow: hidden;
border-radius: 8px;
}
#posters .writing-grid {
grid-template-columns: repeat(auto-fit, minmax(400px, 450px));
justify-content: center;
}
.writing-item:hover .writing-image img {
transform: scale(1.05);
}
.writing-content {
padding: 1.5rem;
flex: 1;
display: flex;
flex-direction: column;
}
.writing-content h4 {
color: var(--text-primary);
margin-bottom: 0.5rem;
font-size: 1.125rem;
}
.writing-content p {
color: var(--text-secondary);
line-height: 1.6;
font-size: 0.95rem;
margin-bottom: 0.75rem;
flex: 1;
}
.article-link {
display: inline-block;
color: #2d4a2b;
text-decoration: none;
font-weight: 500;
font-size: 0.9rem;
padding: 0.5rem 1rem;
background: white;
border: 2px solid #2d4a2b;
border-radius: 6px;
transition: all 0.3s ease;
margin-top: 0.5rem;
}
.article-link:hover {
background: #FBC858;
color: white;
transform: translateY(-2px);
border-color: #FBC858;
}
.article-title-link {
color: var(--text-primary);
text-decoration: none;
transition: color 0.3s ease;
}
.article-title-link:hover {
color: #FBC858;
}
.clickable-article {
cursor: pointer;
transition: all 0.3s ease;
}
.clickable-article:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(45, 74, 43, 0.15);
}
.clickable-article .article-link {
position: relative;
z-index: 2;
}
.illustrations {
padding: 80px 0;
background: var(--bg-secondary);
}
.masonry-grid {
columns: 3;
column-gap: 2rem;
margin-top: 2rem;
column-fill: balance;
padding: 0;
break-inside: avoid;
}
@media (max-width: 1024px) {
.masonry-grid {
columns: 2;
column-gap: 1.5rem;
}
}
@media (max-width: 768px) {
.masonry-grid {
columns: 2;
column-gap: 1rem;
}
}
@media (max-width: 480px) {
.masonry-grid {
columns: 1;
column-gap: 1rem;
}
.about-content,
.contact-content {
padding: 0 0.75rem;
}
.footer {
font-size: 0.75rem;
}
}
.masonry-item {
break-inside: avoid;
margin-bottom: 2rem;
border-radius: 6px;
overflow: hidden;
cursor: pointer;
transition: all 0.3s ease;
background: var(--bg-primary);
border: 1px solid var(--border-color);
display: inline-block;
width: 100%;
}
.masonry-item:hover {
box-shadow: 0 8px 25px rgba(52, 92, 50, 0.2);
border-radius: 6px;
z-index: 10;
position: relative;
}
.masonry-item img {
width: 100%;
height: auto;
display: block;
transition: transform 0.3s ease, opacity 0.6s ease-in-out;
opacity: 0;
filter: blur(3px);
}
.masonry-item img.loaded {
opacity: 1;
filter: blur(0);
}
.masonry-item:hover img {
transform: scale(1.02);
border-radius: 6px;
}
.modal {
display: none;
position: fixed;
z-index: 2000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.9);
backdrop-filter: blur(5px);
}
.modal-content {
position: relative;
margin: 2% auto;
padding: 0;
width: auto;
max-width: 90vw;
max-height: 90vh;
background: var(--bg-secondary);
border-radius: 16px;
overflow: visible;
display: inline-block;
left: 50%;
transform: translateX(-50%);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
.modal-content {
margin: auto;
max-width: 95vw;
max-height: 85vh;
border-radius: 12px;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.modal-image-container {
padding: 0.25rem;
}
.modal-image-container img {
max-width: 95vw;
max-height: 80vh;
border-radius: 6px;
}
.close-modal {
top: 5px;
right: 5px;
width: 28px;
height: 28px;
font-size: 18px;
}
}
.close-modal {
position: absolute;
top: -25px;
right: -25px;
color: white;
font-size: 20px;
font-weight: normal;
cursor: pointer;
z-index: 2001;
background: rgba(0, 0, 0, 0.7);
border-radius: 50%;
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.close-modal:hover {
background: var(--hover-color);
color: white;
}
.modal-image-container {
width: auto;
height: auto;
overflow: visible;
display: flex;
align-items: flex-start;
justify-content: center;
background: var(--bg-secondary);
padding: 0.5rem 0.5rem 0.5rem 0.5rem;
box-sizing: border-box;
border-radius: 8px;
}
.modal-image-container img {
max-width: 90vw;
max-height: 90vh;
width: auto;
height: auto;
object-fit: contain;
border-radius: 8px;
border: 2px solid white;
}
.modal-caption {
padding: 0.25rem;
background: var(--bg-secondary);
text-align: center;
border-radius: 0 0 8px 8px;
border-top: none;
display: none;
margin-top: -5px;
}
.modal-caption p {
color: var(--text-secondary);
font-size: 0.85rem;
line-height: 1.4;
margin: 0;
font-style: italic;
padding: 0.25rem 0.5rem;
}
.contact {
padding: 80px 0;
background: var(--bg-primary);
position: relative;
}
.contact-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: start;
}
.contact-info p {
font-size: 1.125rem;
color: var(--text-secondary);
margin-bottom: 2rem;
line-height: 1.7;
}
.contact-methods {
position: relative;
width: 150px;
height: 150px;
}
.spinner {
--size: 50px;
--first-clr: #FF6B35;
--second-clr: #FBC858;
width: 150px;
height: 150px;
position: relative;
cursor: pointer;
}
.spinner::before {
content: "";
width: var(--size);
height: var(--size);
background: var(--first-clr);
position: absolute;
top: 50%;
left: calc(var(--size));
transform: translate(-50%, -50%);
animation: kf-spin-counter 2s linear infinite;
border-radius: 50% 80% 50% 70%;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.3s ease;
}
.spinner::after {
content: "";
width: var(--size);
height: var(--size);
background: var(--second-clr);
position: absolute;
top: 50%;
left: calc(var(--size) * 2);
transform: translate(-50%, -50%);
animation: kf-spin-counter-reverse 2s linear infinite;
border-radius: 50% 80% 50% 70%;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.3s ease;
}
.spinner:hover::before {
background: var(--second-clr);
}
.spinner:hover::after {
background: var(--first-clr);
}
.spinner-icon {
position: absolute;
width: 24px;
height: 24px;
top: 50%;
transform: translate(-50%, -50%);
z-index: 30;
pointer-events: auto;
cursor: pointer;
}
.mail-icon {
left: calc(var(--size));
transition: transform 0.2s ease, opacity 0.2s ease;
}
.mail-icon:hover {
transform: translate(-50%, -50%) scale(1.1);
opacity: 0.8;
}
.linkedin-icon {
left: calc(var(--size) * 2);
}
.linkedin-link {
position: absolute;
top: 50%;
left: calc(var(--size) * 2);
transform: translate(-50%, -50%);
width: var(--size);
height: var(--size);
z-index: 20;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50% 80% 50% 70%;
transition: all 0.3s ease;
text-decoration: none;
}
.linkedin-link:hover {
background-color: rgba(255, 255, 255, 0.1);
}
.linkedin-link .linkedin-icon {
position: relative;
left: auto;
top: auto;
transform: none;
z-index: 25;
pointer-events: none;
}
@keyframes kf-spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes kf-spin-counter {
0% {
transform: translate(-50%, -50%) rotate(0deg);
}
100% {
transform: translate(-50%, -50%) rotate(-360deg);
}
}
@keyframes kf-spin-counter-reverse {
0% {
transform: translate(-50%, -50%) rotate(0deg);
}
100% {
transform: translate(-50%, -50%) rotate(360deg);
}
}
.contact-submit-btn {
display: flex;
align-items: center;
background-color: #2d4a2b;
color: white;
gap: 4px;
padding: 8px 12px;
cursor: pointer;
font-family: var(--font-primary);
font-weight: 500;
font-size: 1rem;
letter-spacing: normal;
border-radius: 6px;
border: none;
transition: all 0.3s ease;
width: fit-content;
}
.contact-submit-btn:hover {
background-color: #FBC858;
gap: 8px;
transform: translateX(12px);
}
.contact-submit-btn .w-5 {
width: 20px;
height: 20px;
}
.contact-form {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 12px 16px;
border: 2px solid var(--border-color);
border-radius: 8px;
font-size: 1rem;
transition: border-color 0.3s ease;
font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: #FBC858;
}
.form-group textarea {
resize: vertical;
min-height: 120px;
}
.footer {
background: #2d4a2b;
color: white;
text-align: center;
padding: 0.5rem 0;
font-size: 0.9rem;
border: none;
border-bottom: none;
outline: none;
margin-bottom: 0;
padding-bottom: 1rem;
}
.footer-content {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 2rem;
    min-height: 80px;
    padding-bottom: 0.5rem;
    position: relative;
    overflow: visible;
    max-width: 100%;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FBC858;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}
.circular-text {
width: 120px;
height: 120px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
animation: rotate-circle 15s linear infinite;
flex-shrink: 0;
max-width: calc(100vw - 2rem);
align-self: center;
}
.hero-circular-text {
width: 100px;
height: 100px;
position: absolute;
bottom: -100px;
right: -10px;
display: flex;
align-items: center;
justify-content: center;
animation: rotate-circle 15s linear infinite;
z-index: 10;
transition: all 0.3s ease;
}
.hero-circular-text:hover {
width: 120px;
height: 120px;
}
.circular-text svg {
width: 120px;
height: 120px;
}
.hero-circular-text svg {
width: 100px;
height: 100px;
transition: all 0.3s ease;
}
.hero-circular-text:hover svg {
width: 120px;
height: 120px;
}
.circular-text text,
.hero-circular-text text {
font-size: 0.7rem;
font-weight: 500;
fill: white;
text-transform: uppercase;
letter-spacing: 0.15em;
font-family: var(--font-primary);
}
@media (max-width: 1024px) {
.container {
padding: 0 1.5rem;
}
.nav-container {
padding: 0 1.5rem;
}
.hero-content {
gap: 3rem;
}
.hero-visual {
height: min(450px, 75vw, 75vh);
max-height: 450px;
max-width: 450px;
margin: 0 auto;
overflow: visible;
padding: 40px;
margin: -40px auto;
}
.hero {
padding-top: 150px;
}
.artistic-composition {
transform: none;
}
.title-line {
font-size: 3.2rem;
}
.masonry-grid {
columns: 2;
column-gap: 1.5rem;
}
.hero-circular-text {
width: 75px;
height: 75px;
bottom: -60px;
right: -5px;
}
.hero-circular-text svg {
width: 75px;
height: 75px;
}
.circular-text text,
.hero-circular-text text {
font-size: 0.6rem;
}
}
@media (max-width: 768px) {
.artistic-composition {
margin: 20px auto 0;
transform: scale(0.9);
transform-origin: center;
}
.hero-subtitle {
margin-left: 0;
}
}
@media (max-width: 768px) {
.hamburger {
display: flex;
z-index: 1001;
position: relative;
cursor: pointer;
-webkit-tap-highlight-color: transparent;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
touch-action: manipulation;
}
.nav-menu {
position: fixed;
left: -100%;
top: 105px;
flex-direction: column;
background-color: #2d4a2b;
width: 100%;
height: calc(100vh - 105px);
text-align: center;
transition: left 0.3s ease-in-out;
box-shadow: var(--shadow-md);
padding: 2rem 0;
gap: 1rem;
z-index: 1000;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
pointer-events: auto;
will-change: left;
}
.nav-menu.active {
left: 0;
pointer-events: auto;
}
.nav-link {
display: inline-block;
padding: 1rem 1.5rem 0.1rem 1.5rem;
font-size: 1.25rem;
pointer-events: auto;
cursor: pointer;
-webkit-tap-highlight-color: transparent;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
touch-action: manipulation;
text-decoration: none;
color: white;
transition: all 0.3s ease;
margin: 0.5rem 0.5rem;
position: relative;
opacity: 0.9;
-webkit-touch-callout: none;
outline: none;
}
.nav-link:hover,
.nav-link.hover-active {
color: #FBC858;
}
.nav-link:focus {
color: #FBC858;
outline: none;
}
.nav-link:active,
.nav-link.touch-active {
color: #FBC858;
transform: scale(0.98);
}
@media (hover: hover) {
.nav-link:hover {
color: #FBC858 !important;
}
}
@media (hover: none) {
.nav-link:active {
color: #FBC858 !important;
transform: scale(0.98) !important;
}
}
body.menu-open {
overflow: hidden;
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
}
.nav-container {
padding: 0 1rem;
max-width: calc(100vw - 2rem);
}
.logo-text {
font-size: 1.8rem;
}
.hero {
padding: 150px 1rem 2rem;
min-height: 100vh;
max-width: 100vw;
overflow-x: visible;
}
.hero-content {
grid-template-columns: 1fr;
gap: 1.5rem;
text-align: center;
max-width: 100%;
width: 100%;
overflow: visible;
}
.hero-text {
order: 2;
justify-self: center;
align-items: flex-start;
text-align: left;
margin-top: 20px;
margin-left: 0;
max-width: 90%;
position: relative;
left: -20px;
transform: none;
}
.hero-title {
align-items: flex-start;
}
.title-line {
position: relative;
display: inline-block;
padding-right: 22px;
text-align: left;
}
.title-line .creative-arrow {
position: absolute;
right: -6px;
top: 50%;
transform: translateY(-55%);
display: inline-block;
}
.hero-visual {
order: 1;
margin: 0 auto;
width: 100%;
max-width: 500px;
position: relative;
height: min(400px, 70vw, 70vh);
max-height: 400px;
overflow: visible;
padding: 30px;
margin: -30px auto;
}
.artistic-composition {
margin: 20px auto 0;
transform: scale(0.8) translateX(-60px);
transform-origin: center;
}
.title-line {
font-size: 2.2rem;
letter-spacing: 0.2em;
}
.subtitle-item {
font-size: 1rem;
}
.hero-year {
position: absolute;
right: -30px;
top: 30%;
transform: translateY(-50%);
writing-mode: vertical-rl;
text-orientation: mixed;
margin-top: 0;
font-size: 0.9rem;
}
.hero-circular-text {
width: 80px;
height: 80px;
bottom: -80px;
right: -6px;
}
.hero-circular-text svg {
width: 80px;
height: 80px;
}
.footer-content {
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 1rem;
    min-height: auto;
    padding-bottom: 1rem;
    max-width: 100%;
}

.footer-links {
    margin-top: 0.25rem;
}

.footer-links a {
    font-size: 0.8rem;
}
.circular-text {
width: 80px;
height: 80px;
flex-shrink: 0;
max-width: calc(100vw - 2rem);
align-self: center;
}
.circular-text svg {
width: 80px;
height: 80px;
}
.circular-text text,
.hero-circular-text text {
font-size: 0.8rem;
}
.about-content,
.contact-content {
grid-template-columns: 1fr;
gap: 2rem;
padding: 0 1rem;
}
.writing,
.illustrations,
.about,
.contact {
padding: 60px 0;
}
.footer {
font-size: 0.8rem;
}
.writing-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}
#posters .writing-grid {
grid-template-columns: 1fr;
max-width: 450px;
margin: 0 auto;
}
.writing-item {
margin-bottom: 1.5rem;
}
.writing-image {
height: 180px;
}
.poster-item .writing-image {
height: 500px !important;
}
.writing-content {
padding: 1.25rem;
}
.masonry-grid {
columns: 2;
column-gap: 1rem;
}
.container {
padding: 0 1rem;
max-width: calc(100vw - 2rem);
}
.section-title {
font-size: 2rem;
}
.contact-methods {
width: 120px;
height: 120px;
}
.spinner {
width: 150px;
height: 150px;
}
.spinner::before {
left: calc(var(--size));
}
.spinner::after {
left: calc(var(--size) * 2.2);
}
.mail-icon {
left: calc(var(--size));
}
.linkedin-icon {
left: calc(var(--size) * 2.2);
}
.linkedin-link {
left: calc(var(--size) * 2.2);
}
}
@media (max-width: 600px) {
.hero {
padding: 150px 1rem 2rem;
max-width: 100vw;
overflow-x: visible;
}
.artistic-composition {
margin: 40px auto 0;
transform: scale(0.7) translateX(-80px);
transform-origin: center;
}
.hero-subtitle {
margin-left: 0;
}
.hero-circular-text {
width: 85px;
height: 85px;
bottom: -45px;
right: -5px;
}
.hero-circular-text svg {
width: 85px;
height: 85px;
}
}
@media (max-width: 480px) {
.nav-container {
padding: 0 0.75rem;
max-width: calc(100vw - 1.5rem);
}
.artistic-composition {
margin: 20px auto 0;
transform: scale(0.6) translateX(-100px);
transform-origin: center;
}
.logo-text {
font-size: 1.5rem;
}
.hero {
padding: 150px 0.75rem 2rem;
max-width: 100vw;
overflow-x: visible;
}
}
@media (max-width: 480px) {
.hero-visual {
max-width: 500px;
height: min(350px, 60vw, 60vh);
max-height: 350px;
overflow: visible;
padding: 25px;
margin: -25px auto;
}
.hero-text {
justify-self: center;
align-items: flex-start;
text-align: left;
margin-top: 30px;
margin-left: 0;
max-width: 92%;
position: relative;
left: -30px;
transform: none;
}
.hero-title {
align-items: flex-start;
justify-content: flex-start;
padding-left: 0;
}
.title-line {
position: relative;
display: block;
padding-right: 22px;
text-align: left;
}
.title-line .creative-arrow {
position: absolute;
right: -8px;
top: -15%;
transform: translateY(-50%);
display: inline-block;
}
.artistic-composition {
margin: -100px auto 0;
transform: scale(0.6) translateX(-120px);
transform-origin: center;
}
.title-line {
font-size: 2.4rem;
letter-spacing: 0.15em;
}
.hero-subtitle {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
padding-left: 0;
text-align: left;
margin-left: 0;
}
.subtitle-item {
font-size: 0.9rem;
text-align: left;
}
.hero-year {
position: absolute;
right: -150px;
top: 25%;
transform: translateY(-50%);
writing-mode: vertical-rl;
text-orientation: mixed;
font-size: 0.8rem;
}
.hero-circular-text {
width: 70px;
height: 70px;
bottom: -70px;
right: -4px;
}
.hero-circular-text svg {
width: 70px;
height: 70px;
}
.footer-content {
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 0.75rem;
    min-height: auto;
    padding-bottom: 1rem;
    max-width: 100%;
}

.footer-links {
    margin-top: 0.25rem;
}

.footer-links a {
    font-size: 0.75rem;
}
.circular-text {
width: 70px;
height: 70px;
flex-shrink: 0;
max-width: calc(100vw - 1.5rem);
align-self: center;
}
.circular-text svg {
width: 70px;
height: 70px;
}
.circular-text text,
.hero-circular-text text {
font-size: 0.7rem;
}
.masonry-grid {
columns: 1;
column-gap: 1rem;
}
.container {
padding: 0 0.75rem;
max-width: calc(100vw - 1.5rem);
}
.section-title {
font-size: 1.8rem;
}
.writing-content {
padding: 1rem;
}
.writing-image {
height: 160px;
}
.poster-item .writing-image {
height: 450px !important;
}
.contact-methods {
width: 100px;
height: 100px;
}
.spinner {
width: 120px;
height: 120px;
}
.spinner::before {
left: calc(var(--size) * 0.8);
}
.spinner::after {
left: calc(var(--size) * 1.8);
}
.mail-icon {
left: calc(var(--size) * 0.8);
}
.linkedin-icon {
left: calc(var(--size) * 1.8);
}
.linkedin-link {
left: calc(var(--size) * 1.8);
}
}
@media (max-width: 375px) {
.hero {
padding-top: 220px !important;
padding-bottom: 120px;
}
.hero-circular-text {
width: 60px;
height: 60px;
bottom: -60px;
right: -5px;
}
.hero-circular-text svg {
width: 60px;
height: 60px;
}
}
@keyframes rotate-circle {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
