@font-face {
    font-family: 'Valestra';
    src: url('fonts/Valestra-m2BE5.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Diamond Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #0c0c0c 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 0.8s ease-in-out 1s forwards;
}

.diamond-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.diamond {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #3498db, #2980b9, #3498db);
    transform: rotate(45deg);
    position: relative;
    animation: diamondSpin 2s ease-in-out, diamondZoomOut 0.8s ease-in-out 2.5s forwards;
    box-shadow: 0 0 30px rgba(52, 152, 219, 0.6);
}

.diamond::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #3498db, #2980b9, #e74c3c, #3498db);
    border-radius: 10px;
    z-index: -1;
    animation: borderRotate 2s linear infinite;
    opacity: 0.7;
}

.diamond-text {
    font-family: 'Wonder Astrella', sans-serif;
    font-size: 2rem;
    color: rgb(239, 236, 223);
    letter-spacing: 4px;
    animation: textGlow 2s ease-in-out infinite alternate, textZoomOut 0.8s ease-in-out 2.5s forwards;
    text-shadow: 0 0 20px rgba(239, 236, 223, 0.5);
}

@keyframes diamondSpin {
    0% { transform: rotate(45deg) scale(0.3); opacity: 0; }
    50% { transform: rotate(225deg) scale(1.2); opacity: 1; }
    100% { transform: rotate(405deg) scale(1); opacity: 1; }
}

@keyframes diamondZoomOut {
    0% { transform: rotate(405deg) scale(1); opacity: 1; }
    100% { transform: rotate(405deg) scale(0); opacity: 0; }
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes textGlow {
    0% { text-shadow: 0 0 20px rgba(239, 236, 223, 0.5); }
    100% { text-shadow: 0 0 30px rgba(239, 236, 223, 0.8), 0 0 40px rgba(52, 152, 219, 0.3); }
}

@keyframes textZoomOut {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0); opacity: 0; }
}

@keyframes fadeOut {
    0% { opacity: 1; visibility: visible; }
    100% { opacity: 0; visibility: hidden; }
}

/* Text Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

@keyframes textShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Custom Font Import */
@font-face {
    font-family: 'Ansani';
    src: url('fonts/AnsaniOraliaDemo-JpdDn.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Griana';
    src: url('fonts/GrianaMalieDemo-zrL2l.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Wonder Astrella';
    src: url('fonts/WonderAstrella-8O5Y0.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Romance Logic';
    src: url('fonts/RomanceLogicDemo-Wy8BE.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    position: relative;
}

/* Scrolling background container */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 400vh; /* Increased height for better scrolling effect */
    background-image: url('images/background.jpeg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: -2;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Content overlay for better readability */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.2) 100vh,
        rgba(0, 0, 0, 0.7) 120vh,
        rgba(0, 0, 0, 0.9) 200vh,
        rgba(0, 0, 0, 1) 300vh
    );
    z-index: -1;
    pointer-events: none;
    height: 400vh;
}

/* Additional fade overlay for scroll-based darkening */
.fade-overlay {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(50, 50, 50, 0);
    z-index: -1;
    pointer-events: none;
    transition: background 0.5s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(239, 236, 223, 0.2);
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #3498db, #2980b9);
    transition: width 0.1s ease;
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.7);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo h1 {
    font-size: 3rem;
    font-family: 'Ansani', serif;
    font-weight: normal;
}

.logo h2 {
    font-size: 3rem;
    font-weight: normal;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 2rem;
}

.nav-links a:hover {
    text-decoration: line-through;
}

.nav-links a:hover::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #3498db00;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

/* Hero Section */
.hero {
    background: transparent;
    color: white;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas: 
        "content date"
        "bio bio";
    align-items: start;
    padding: 80px 2rem 2rem;
    position: relative;
    gap: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: -1;
}

/* Hero Content Container */
.hero-content {
    grid-area: content;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 2;
    justify-self: start;
    align-self: center;
}

/* Fix the text layout for Programmer & Developer */
.hero-content .programmer-line {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.hero-content .developer-line {
    margin-top: 0;
}

.hero-content h2 {
    font-size: 15rem;
    margin-bottom: 1rem;
    animation: slideInLeft 1.2s ease 0.5s both;
    text-transform: uppercase;  
    color: rgb(188, 185, 171);
    position: relative;
    overflow: hidden;
}

.hero-content h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: textShimmer 3s ease-in-out 2s infinite;
}

.hero-content p {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
    color: rgb(239, 236, 223);
}

/* Creative text styling */
.creative-text {
    font-family: 'Griana', cursive;
    font-size: 12rem;
    text-transform: lowercase;
    margin-bottom: 1rem;
    animation: slideInRight 1s ease 0.3s both;
    background: linear-gradient(45deg, rgb(239, 236, 223), #3498db, rgb(239, 236, 223));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInRight 1s ease 0.3s both, textShimmer 4s ease-in-out 2.5s infinite;
}

/* Designer and Developer text styling */
.title-text {
    font-family: 'Wonder Astrella', serif;
    font-size: 3rem;
    color: white;
    margin: 0;
    animation: float 3s ease-in-out 3s infinite;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Responsive Typography for Hero Elements */

/* Extra Large Screens (1400px and up) */
@media (min-width: 1400px) {
    .creative-text {
        font-size: 14rem;
        line-height: 0.9;
    }
    
    .title-text {
        font-size: 3.5rem;
        line-height: 1.1;
    }
    
    .hero-content h2 {
        font-size: 18rem;
        line-height: 0.8;
    }
    
    .hero-content p {
        font-size: 5rem;
        line-height: 1.2;
    }
    
    .current-date {
        font-size: 18rem;
        line-height: 0.7;
    }
}

/* Large Desktop (1200px to 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .creative-text {
        font-size: 10rem;
        line-height: 0.9;
    }
    
    .title-text {
        font-size: 2.8rem;
        line-height: 1.1;
    }
    
    .hero-content h2 {
        font-size: 12rem;
        line-height: 0.8;
    }
    
    .hero-content p {
        font-size: 3.5rem;
        line-height: 1.2;
    }
    
    .current-date {
        font-size: 14rem;
        line-height: 0.7;
    }
}

/* Medium Desktop (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .creative-text {
        font-size: 8rem;
        line-height: 0.9;
    }
    
    .title-text {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-content h2 {
        font-size: 10rem;
        line-height: 0.8;
    }
    
    .hero-content p {
        font-size: 3rem;
        line-height: 1.2;
    }
    
    .current-date {
        font-size: 12rem;
        line-height: 0.7;
    }
}

/* Small Desktop/Large Tablet (768px to 991px) */
@media (max-width: 991px) and (min-width: 769px) {
    .creative-text {
        font-size: 6rem;
        line-height: 0.9;
    }
    
    .title-text {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-content h2 {
        font-size: 8rem;
        line-height: 0.8;
    }
    
    .hero-content p {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .current-date {
        font-size: 10rem;
        line-height: 0.7;
    }
}

/* Tablet (600px to 768px) */
@media (max-width: 768px) and (min-width: 601px) {
    .creative-text {
        font-size: 4rem;
        line-height: 1.0;
        margin-bottom: 0.5rem;
    }
    
    .title-text {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-content h2 {
        font-size: 5rem;
        line-height: 0.9;
    }
    
    .hero-content p {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .current-date {
        font-size: 6rem;
        line-height: 0.8;
    }
}

/* Large Mobile (481px to 600px) */
@media (max-width: 600px) and (min-width: 481px) {
    .creative-text {
        font-size: 3rem;
        line-height: 1.0;
        margin-bottom: 0.5rem;
    }
    
    .title-text {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .hero-content h2 {
        font-size: 3.5rem;
        line-height: 0.9;
    }
    
    .hero-content p {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .current-date {
        font-size: 4.5rem;
        line-height: 0.8;
    }
}

/* Small Mobile (320px to 480px) */
@media (max-width: 480px) {
    .creative-text {
        font-size: 2.2rem;
        line-height: 1.0;
        margin-bottom: 0.3rem;
    }
    
    .title-text {
        font-size: 1.3rem;
        line-height: 1.2;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
        line-height: 0.9;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .current-date {
        font-size: 3.5rem;
        line-height: 0.8;
    }
}

/* Very Small Mobile (up to 319px) */
@media (max-width: 319px) {
    .creative-text {
        font-size: 1.8rem;
        line-height: 1.0;
        margin-bottom: 0.2rem;
    }
    
    .title-text {
        font-size: 1.1rem;
        line-height: 1.2;
    }
    
    .hero-content h2 {
        font-size: 2rem;
        line-height: 0.9;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .current-date {
        font-size: 2.8rem;
        line-height: 0.8;
    }
}

/* Responsive Layout Improvements */

/* Extra Large Screens (1400px+) - Original sophisticated layout */
@media (min-width: 1400px) {
    .hero {
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
        padding: 80px 4rem 2rem;
    }
}

/* Large Desktop (1200px to 1399px) - Maintain layout with adjustments */
@media (max-width: 1399px) and (min-width: 1200px) {
    .hero {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
        padding: 80px 3rem 2rem;
    }
}

/* Medium Desktop (992px to 1199px) - Transition to vertical stacking */
@media (max-width: 1199px) and (min-width: 992px) {
    .hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3rem;
        padding: 100px 2rem 2rem;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
        align-self: center;
    }
    
    .date-availability {
        order: 2;
        text-align: center;
        margin: 0;
        background: rgba(0, 0, 0, 0.3);
        padding: 2rem;
        border-radius: 15px;
        justify-self: center;
        align-self: center;
    }
    
    .bio-component {
        order: 3;
        text-align: center;
        max-width: 80%;
        margin: 0 auto;
        justify-self: center;
        align-self: center;
    }
}

/* Small Desktop/Large Tablet (768px to 991px) - Full vertical stack */
@media (max-width: 991px) and (min-width: 769px) {
    .hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        padding: 120px 2rem 2rem;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .date-availability {
        order: 2;
        text-align: center;
        margin: 0;
        background: rgba(0, 0, 0, 0.4);
        padding: 1.5rem;
        border-radius: 10px;
        width: 100%;
        max-width: 400px;
    }
    
    .bio-component {
        order: 3;
        text-align: center;
        max-width: 100%;
        margin: 0;
    }
}

/* Tablet (600px to 768px) - Mobile-like layout */
@media (max-width: 768px) and (min-width: 601px) {
    .hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 110px 1.5rem 2rem;
        gap: 2rem;
    }
    
    .hero-content {
        order: 1;
    }
    
    .date-availability {
        order: 2;
        text-align: center;
        margin: 0;
        background: rgba(0, 0, 0, 0.4);
        padding: 1.5rem;
        border-radius: 10px;
        width: 100%;
        max-width: 400px;
    }
    
    .bio-component {
        order: 3;
        text-align: center;
        max-width: 100%;
        margin: 0;
    }
}

/* Mobile (600px and below) - Full mobile layout */
@media (max-width: 600px) {
    .hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 100px 1rem 2rem;
        gap: 1.5rem;
        min-height: 100vh;
    }
    
    .hero-content {
        order: 1;
    }
    
    .programmer-line {
        flex-direction: column;
        gap: 0.3rem;
        align-items: center;
    }
    
    .date-availability {
        order: 2;
        text-align: center;
        margin: 0;
        background: rgba(0, 0, 0, 0.5);
        padding: 1.5rem;
        border-radius: 10px;
        width: 100%;
        max-width: 350px;
    }
    
    .bio-component {
        order: 3;
        text-align: center;
        max-width: 100%;
        margin: 0;
    }
}

/* Small Mobile specific adjustments */
@media (max-width: 480px) {
    .hero {
        padding: 90px 0.5rem 1rem;
        gap: 1rem;
    }
    
    .programmer-line {
        flex-direction: column;
        gap: 0.2rem;
    }
    
    .date-availability {
        padding: 1rem;
        max-width: 300px;
    }
    
    .bio-component .bio-text p {
        font-size: 0.9rem;
        line-height: 1.4;
        text-transform: none;
    }
    
    .bio-component .contact-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* Navigation Responsive Improvements */

/* Large screens - horizontal nav */
@media (min-width: 769px) {
    .nav-links {
        display: flex;
        flex-direction: row;
        gap: 2rem;
    }
    
    .logo-subtitle {
        display: inline;
    }
}

/* Medium screens - adjust nav spacing */
@media (max-width: 768px) and (min-width: 601px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-links {
        display: flex;
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 1.4rem;
    }
}

/* Small screens - stack navigation */
@media (max-width: 600px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 0.5rem;
    }
    
    .nav-links {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
}

/* Very small screens - minimal nav */
@media (max-width: 480px) {
    .nav-links {
        gap: 0.8rem;
    }
    
    .nav-links a {
        font-size: 1rem;
    }
}

/* Container responsive improvements */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

/* Date and availability component */
.date-availability {
    grid-area: date;
    text-align: right;
    background: rgba(0, 0, 0, 0.0);
    padding: 1rem;
    justify-self: end;
    align-self: start;
    z-index: 2;
    margin-top: 2rem;
}

.current-date {
    font-family: 'Romance Logic', serif;
    font-size: 16rem;
    color: #3498db;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
    animation: fadeInUp 1.5s ease 1s both, pulse 2s ease-in-out 3s infinite;
    position: relative;
    line-height: 0.8;
}

.current-date::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(52, 152, 219, 0.1), transparent 70%);
    animation: pulse 2s ease-in-out 3s infinite;
    z-index: -1;
}

.availability-text {
    font-family: 'Arial', sans-serif;
    font-size: 4rem;
    color: rgb(239, 236, 223);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    animation: slideInRight 1.2s ease 1.2s both;
    position: relative;
    overflow: hidden;
}

/* Bio Component */
.bio-component {
    grid-area: bio;
    text-align: left;
    max-width: 1000px;
    animation: fadeInUp 1.5s ease 1.5s both;
    justify-self: end;
    align-self: end;
    z-index: 2;
    margin-top: 2rem;
}

.bio-component .bio-text {
    margin: 0 0 2rem 0;
}

.bio-component .bio-text p {
    font-family: 'Arial', sans-serif;
    font-size: 3rem;
    color: rgb(233, 228, 204);
    line-height: 1.6;
    text-align: left;
    margin: 0;
    text-transform: uppercase;
    animation: slideInUp 1.2s ease 1.8s both;
}

.bio-component .contact-btn {
    display: inline-block;
    background: transparent;
    color: rgb(239, 236, 223);
    border: 2px solid rgb(239, 236, 223);
    padding: 12px 24px;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease 2s both;
}

.bio-component .contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgb(239, 236, 223);
    transition: all 0.3s ease;
    z-index: -1;
}

.bio-component .contact-btn:hover::before {
    left: 0;
}

.bio-component .contact-btn:hover {
    background: rgb(239, 236, 223);
    color: #000;
    transform: translateY(-2px);
}

.cta-button {
    background: #3498db;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.about {
    background: transparent;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
}

/* About Layout - Three Column Grid */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 4rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Left Column - Name Intro */
.name-intro {
    text-align: left;
}

.hello-text {
    font-family: 'Wonder Astrella', sans-serif;
    font-size: 6rem;
    font-weight: bold;
    color: rgb(239, 236, 223);
    line-height: 1.1;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: -2px;
    animation: slideInLeft 1.2s ease 0.3s both;
    text-shadow: 0 0 30px rgba(239, 236, 223, 0.3);
}

.subtitle {
    font-family: 'Ansani', sans-serif;
    font-size: 1.2rem;
    color: rgb(188, 185, 171);
    margin: 0;
    font-style: italic;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Center Column - Main Description */
.main-description {
    text-align: left;
    padding: 0 2rem;
    width: 50rem;
}

.main-description p {
    font-family: 'Arial', sans-serif;
    font-size: 2rem;
    line-height: 1.6;
    color: rgb(239, 236, 223);
    margin: 0;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: fadeInUp 1.5s ease 0.8s both;
    position: relative;
}

.main-description p::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #3498db, transparent);
    animation: slideInLeft 1s ease 1.2s both;
}

/* Right Column - Model Section */
.model-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.model-container {
    width: 750px;
    height: 750px;
    border-radius: 20px;
    overflow: hidden;
}

#krishna-model {
    width: 100%;
    height: 100%;
    display: block;
}

/* Interests Section */
.interests {
    background: transparent;
    padding: 8rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.interests-title {
    font-family: 'Wonder Astrella', sans-serif;
    color: rgb(239, 236, 223);
    font-size: 5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 400;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.3s both;
    position: relative;
    text-shadow: 0 0 40px rgba(239, 236, 223, 0.2);
}

.interests-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3498db, transparent);
    animation: expandLine 1.5s ease 1s forwards;
    transform: translateX(-50%);
}

@keyframes expandLine {
    0% { width: 0; }
    100% { width: 200px; }
}

.interests-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.interest-bubble {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgb(239, 236, 223);
    border-radius: 50px;
    padding: 1.5rem 2.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    font-family: 'Ansani', sans-serif;
    min-width: 200px;
    text-align: center;
}

.interest-bubble span {
    color: rgb(239, 236, 223);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.interest-bubble::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgb(239, 236, 223);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.interest-bubble:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: #3498db;
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.3);
}

.interest-bubble:hover::before {
    width: 120%;
    height: 120%;
}

.interest-bubble:hover span {
    color: black;
    font-weight: 700;
}

/* Special pizza bubble */
.pizza-special {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.pizza-special:hover {
    border-color: #e74c3c;
    box-shadow: 0 15px 30px rgba(231, 76, 60, 0.4);
    transform: translateY(-8px) scale(1.05) rotate(5deg);
}

.pizza-special::before {
    background: #e74c3c;
}

.pizza-special:hover span {
    color: white;
}

/* Responsive design for interests */
@media (max-width: 768px) {
    .interests-title {
        font-size: 3rem;
    }
    
    .interests-grid {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .interest-bubble {
        min-width: 150px;
        padding: 1rem 2rem;
    }
    
    .interest-bubble span {
        font-size: 0.8rem;
    }
}

.projects {
    background: transparent;
}

.project-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
    min-height: 400px; /* Ensure consistent height during animations */
    align-items: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.project-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, opacity 0.8s ease;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 700px;
    position: relative;
}

/* Staircase effect - alternate left and right positioning */
.project-card:nth-child(1) {
    margin-left: 0;
    margin-right: auto;
}

.project-card:nth-child(2) {
    margin-left: 4rem;
    margin-right: 0;
}

.project-card:nth-child(3) {
    margin-left: 8rem;
    margin-right: auto;
}

.project-card:nth-child(4) {
    margin-left: 12rem;
    margin-right: 0;
}

/* Image placeholder box */
.project-image {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.project-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.project-card:hover .project-image::before {
    transform: rotate(45deg) translate(100%, 100%);
}

/* Content area */
.project-content {
    flex: 1;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.project-card:hover .project-image {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.project-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-family: 'Wonder Astrella', sans-serif;
    font-weight: 500;
}

.project-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-family: 'Romance Logic', sans-serif;
    font-size: 2rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-tag {
    background: #3498db;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Ansani', sans-serif;
    letter-spacing: 0.5px;
}

/* Active navigation link */
.nav-links a.active {
    color: #3498db00;
    position: relative;
    text-decoration: line-through;
}

.nav-links a.active::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #3498db00;
}

.nav-links a.active::after {
    display: none;
}

/* Contact Section */
.contact {
    background: transparent;
    color: white;
    padding: 8rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.contact-header {
    text-align: left;
    margin-bottom: 4rem;
}

.contact-title {
    font-family: 'Wonder Astrella', sans-serif;
    color: rgb(239, 236, 223);
    font-size: 24rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    line-height: 1;
    animation: slideInLeft 1.5s ease 0.2s both;
    background: linear-gradient(45deg, rgb(239, 236, 223), #3498db, rgb(239, 236, 223));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 1.5s ease 0.2s both, textShimmer 5s ease-in-out 2s infinite;
}

.contact-question {
    font-family: 'Romance Logic', sans-serif;
    color: rgb(188, 185, 171);
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.contact-email-btn {
    display: inline-block;
    background: rgba(239, 236, 223, 0.1);
    border: 2px solid rgb(239, 236, 223);
    color: rgb(239, 236, 223);
    padding: 1rem 3rem;
    text-decoration: none;
    font-family: 'Ansani', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-email-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgb(239, 236, 223);
    transition: all 0.3s ease;
    z-index: -1;
}

.contact-email-btn:hover {
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(239, 236, 223, 0.2);
}

.contact-email-btn:hover::before {
    left: 0;
}

.socials {
    text-align: center;
}

.socials-title {
    font-family: 'Wonder Astrella', sans-serif;
    color: rgb(239, 236, 223);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.social-link {
    color: rgb(188, 185, 171);
    text-decoration: none;
    font-family: 'Ansani', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: rgb(239, 236, 223);
    transition: width 0.3s ease;
}

.social-link:hover {
    color: rgb(239, 236, 223);
    transform: translateY(-2px);
}

.social-link:hover::after {
    width: 100%;
}

/* Responsive design for contact */
@media (max-width: 768px) {
    .contact-title {
        font-size: 4rem;
    }
    
    .contact-question {
        font-size: 1.2rem;
    }
    
    .contact-email-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .socials-title {
        font-size: 2rem;
    }
    
    .social-links {
        gap: 2rem;
    }
    
    .social-link {
        font-size: 1rem;
    }
}

/* Footer */
footer {
    background: transparent;
    color: white;
    text-align: center;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    nav {
        padding: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    /* Reset staircase effect on mobile */
    .project-card {
        flex-direction: column;
        text-align: center;
        margin-left: 0 !important;
        margin-right: auto !important;
        max-width: 90%;
    }
    
    .project-image {
        width: 120px;
        height: 120px;
    }
    
    /* About section responsive */
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .model-container {
        flex: none;
        width: 100%;
        max-width: 300px;
        height: 300px;
    }
    
    .about-text p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .project-card {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .project-image {
        width: 100px;
        height: 100px;
        font-size: 0.8rem;
    }
}

/* Comprehensive Mobile Responsiveness */
@media (max-width: 768px) {
    /* Header and Navigation */
    header {
        padding: 10px 20px;
    }
    
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .logo h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .logo h2 {
        font-size: 1rem;
        margin-left: 0 !important;
    }
    
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    /* Hero Section Mobile */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 1rem 2rem;
        min-height: 100vh;
        justify-content: space-between;
    }
    
    .hero-content {
        margin-left: 0 !important;
        margin-bottom: 2rem;
        order: 1;
    }
    
    .creative-text {
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }
    
    .title-text {
        font-size: 2.5rem;
    }
    
    .hero-content span {
        display: block !important;
        margin-bottom: 0.5rem;
    }
    
    .hero-content p {
        font-size: 1.5rem;
        margin: 0;
    }
    
    /* Date and Availability Mobile */
    .date-availability {
        position: static;
        transform: none;
        margin: 2rem 0 !important;
        text-align: center;
        background: rgba(0, 0, 0, 0.5);
        padding: 1.5rem;
        border-radius: 10px;
        order: 2;
    }
    
    .current-date {
        font-size: 4rem;
        margin-bottom: 0.5rem;
    }
    
    .availability-text {
        font-size: 1.2rem;
    }
    
    /* Bio Component Mobile */
    .bio-component {
        position: static;
        bottom: auto;
        right: auto;
        margin: 2rem 0;
        max-width: 100%;
        text-align: center;
        order: 3;
    }
    
    .bio-component .bio-text p {
        font-size: 1.1rem;
        text-transform: none;
        line-height: 1.5;
    }
    
    .bio-component .contact-btn {
        margin-top: 1rem;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* About Section Mobile */
    .about {
        padding: 4rem 0;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    .hello-text {
        font-size: 3rem;
        letter-spacing: -1px;
        margin-bottom: 1rem;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .main-description {
        padding: 0;
        width: 100%;
        order: 3;
    }
    
    .main-description p {
        font-size: 1.1rem;
        text-transform: none;
        letter-spacing: 0;
        line-height: 1.6;
    }
    
    .model-section {
        order: 2;
        margin: 2rem 0;
    }
    
    .model-container {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }
    
    /* Projects Section Mobile */
    .projects h2 {
        font-size: 3rem !important;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .project-grid {
        max-width: 100%;
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .project-card {
        flex-direction: column;
        text-align: center;
        max-width: 100%;
        margin: 0 !important;
        padding: 1.5rem;
    }
    
    .project-image {
        width: 100%;
        height: 200px;
        margin-bottom: 1.5rem;
    }
    
    .project-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .project-card p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .tech-stack {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .tech-tag {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Contact Section Mobile */
    .contact {
        padding: 4rem 0;
        text-align: center;
    }
    
    .contact-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .contact-title {
        font-size: 4rem;
        letter-spacing: 1px;
        line-height: 0.9;
        margin-bottom: 1rem;
    }
    
    .contact-question {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .contact-email-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .socials-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .social-link {
        font-size: 1.1rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo h2 {
        font-size: 0.9rem;
    }
    
    .nav-links a {
        font-size: 1rem;
    }
    
    /* Hero Section */
    .creative-text {
        font-size: 2.5rem;
    }
    
    .title-text {
        font-size: 2rem;
    }
    
    .current-date {
        font-size: 3rem;
    }
    
    .availability-text {
        font-size: 1rem;
    }
    
    .bio-component .bio-text p {
        font-size: 1rem;
    }
    
    /* About Section */
    .hello-text {
        font-size: 2.5rem;
    }
    
    .main-description p {
        font-size: 1rem;
    }
    
    .model-container {
        width: 250px;
        height: 250px;
    }
    
    /* Projects */
    .projects h2 {
        font-size: 2.5rem !important;
    }
    
    .project-card h3 {
        font-size: 1.3rem;
    }
    
    .project-card p {
        font-size: 0.9rem;
    }
    
    .project-image {
        height: 150px;
    }
    
    /* Interests */
    .interests-title {
        font-size: 2.5rem;
    }
    
    .interest-bubble {
        min-width: 140px;
        padding: 0.8rem 1.5rem;
    }
    
    .interest-bubble span {
        font-size: 0.7rem;
    }
    
    /* Contact */
    .contact-title {
        font-size: 3rem;
    }
    
    .contact-question {
        font-size: 1rem;
    }
    
    .socials-title {
        font-size: 1.8rem;
    }
    
    .social-link {
        font-size: 1rem;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 140vh;
    }
    
    .date-availability {
        margin: 1rem 0 !important;
    }
    
    .current-date {
        font-size: 3rem;
    }
    
    .creative-text {
        font-size: 2.5rem;
    }
    
    .title-text {
        font-size: 2rem;
    }
}

/* Custom classes for previously inline styles */
.header-transparent {
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 20px 50px;
    box-sizing: border-box;
}

.logo-primary-text {
    color: rgb(239, 236, 223);
}

.logo-title {
    display: inline;
    color: rgb(239, 236, 223);
}

.logo-subtitle {
    display: inline;
    color: rgb(188, 185, 171);
    margin-left: 2rem;
}

.nav-link-light {
    color: rgb(239, 236, 223);
}

.hero-content-offset {
    margin-left: 10rem;
}

.title-text-inline {
    display: inline;
}

.date-availability-offset {
    margin-right: 35rem;
}

.projects-title {
    color: rgb(239, 236, 223);
    font-size: 5rem;
}

/* Responsive Design for Custom Classes */

/* Extra Large Screens (1400px and up) */
@media (min-width: 1400px) {
    .hero-content-offset {
        margin-left: 12rem;
    }
    
    .date-availability-offset {
        margin-right: 40rem;
    }
    
    .projects-title {
        font-size: 6rem;
    }
    
    .header-transparent {
        padding: 25px 60px;
    }
    
    .logo-subtitle {
        margin-left: 3rem;
    }
}

/* Large Desktop (1200px to 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .hero-content-offset {
        margin-left: 8rem;
    }
    
    .date-availability-offset {
        margin-right: 30rem;
    }
    
    .projects-title {
        font-size: 4.5rem;
    }
}

/* Medium Desktop (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .hero-content-offset {
        margin-left: 6rem;
    }
    
    .date-availability-offset {
        margin-right: 25rem;
    }
    
    .projects-title {
        font-size: 4rem;
    }
    
    .header-transparent {
        padding: 15px 40px;
    }
    
    .logo-subtitle {
        margin-left: 1.5rem;
    }
}

/* Small Desktop/Large Tablet (768px to 991px) */
@media (max-width: 991px) and (min-width: 769px) {
    .hero-content-offset {
        margin-left: 4rem;
    }
    
    .date-availability-offset {
        margin-right: 15rem;
    }
    
    .projects-title {
        font-size: 3.5rem;
    }
    
    .header-transparent {
        padding: 15px 30px;
    }
    
    .logo-subtitle {
        margin-left: 1rem;
        font-size: 1.2rem;
    }
    
    .logo-title {
        font-size: 2rem;
    }
}

/* Tablet (600px to 768px) */
@media (max-width: 768px) and (min-width: 601px) {
    .hero-content-offset {
        margin-left: 2rem;
    }
    
    .date-availability-offset {
        margin-right: 8rem;
    }
    
    .projects-title {
        font-size: 3rem;
    }
    
    .header-transparent {
        padding: 12px 25px;
    }
    
    .logo-subtitle {
        margin-left: 0.8rem;
        font-size: 1rem;
    }
    
    .logo-title {
        font-size: 1.8rem;
    }
}

/* Large Mobile (481px to 600px) */
@media (max-width: 600px) and (min-width: 481px) {
    .hero-content-offset {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .date-availability-offset {
        margin-right: 2rem;
        margin-left: 2rem;
    }
    
    .projects-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .header-transparent {
        padding: 10px 20px;
    }
    
    .logo-subtitle {
        display: block;
        margin-left: 0;
        margin-top: 0.5rem;
        font-size: 0.9rem;
    }
    
    .title-text-inline {
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .logo-title {
        font-size: 1.6rem;
    }
}

/* Small Mobile (320px to 480px) */
@media (max-width: 480px) {
    .hero-content-offset {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        text-align: center;
    }
    
    .date-availability-offset {
        margin-right: 0.5rem;
        margin-left: 0.5rem;
        text-align: center;
    }
    
    .projects-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .header-transparent {
        padding: 8px 15px;
    }
    
    .logo-subtitle {
        display: block;
        margin-left: 0;
        margin-top: 0.3rem;
        font-size: 0.8rem;
    }
    
    .title-text-inline {
        display: block;
        margin-bottom: 0.3rem;
    }
    
    .logo-title {
        font-size: 1.4rem;
    }
}

/* Very Small Mobile (up to 319px) */
@media (max-width: 319px) {
    .hero-content-offset {
        margin-left: 0.25rem;
        margin-right: 0.25rem;
        text-align: center;
    }
    
    .date-availability-offset {
        margin-right: 0.25rem;
        margin-left: 0.25rem;
        text-align: center;
    }
    
    .projects-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .header-transparent {
        padding: 5px 10px;
    }
    
    .logo-subtitle {
        display: block;
        margin-left: 0;
        margin-top: 0.2rem;
        font-size: 0.7rem;
    }
    
    .logo-title {
        font-size: 1.2rem;
    }
}
