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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, serif;
    color: #251f1f;
    background-color: #fff8f9;
    background-image: 
        radial-gradient(circle at center, transparent 0%, transparent 40%, rgba(232, 232, 232, 0.3) 70%, rgba(232, 232, 232, 0.8) 100%),
        linear-gradient(#e8e8e8 1px, transparent 1px),
        linear-gradient(90deg, #e8e8e8 1px, transparent 1px);
    background-size: 100% 100%, 25px 25px, 25px 25px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 248, 249, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(208, 206, 207, 0.2);
    box-shadow: 0 2px 20px rgba(144, 38, 41, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: Georgia, serif;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    color: #251f1f;
    transition: color 0.3s ease;
}

.nav-logo:hover {
    color: #902629;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #251f1f;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #902629;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #902629;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero-About Combined Section */
.hero-about {
    min-height: 100vh;
    padding: 6rem 0;
    background: linear-gradient(135deg, #fff8f9 0%, rgba(255, 248, 249, 0.1) 100%);
}

.hero-about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-header {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-title {
    font-family: Georgia, serif;
    font-weight: bold;
    font-size: 4rem;
    margin-bottom: 2rem;
    color: #251f1f;
    animation: fadeInUp 1s ease-out;
}

.hero-contact {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.1s both;
}

.hero-contact-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-contact-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid #902629;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: #902629;
    backdrop-filter: blur(10px);
}

.hero-contact-link:hover {
    background: #b7484b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(144, 38, 41, 0.2);
    border-color: #b7484b;
}

/* Floating Shapes */

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

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

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-title {
    font-family: Georgia, serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #251f1f;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: #902629;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* About Section */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.about-image {
    max-width: 300px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(144, 38, 41, 0.15);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.currently {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.currently h3 {
    font-family: Georgia, serif;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: #251f1f;
}

.currently-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.currently-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.note {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.05),
        0 2px 4px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    border: 1px solid #fff8f9;
    font-family: Georgia, serif;
    min-width: 320px;
    backdrop-filter: blur(10px);
}

.note-2 {
    min-width: 380px;
    transform: rotate(0.5deg);
    z-index: 1;
}


.note-1 {
    z-index: 2;
}


.note h4 {
    font-family: Georgia, serif;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #251f1f;
    border-bottom: 1px solid rgba(45, 45, 52, 0.2);
    padding-bottom: 0.5rem;
}

.note p {
    font-size: 1rem;
    color: #251f1f;
    margin: 0;
    line-height: 1.4;
}

.spotify-embed {
    margin-top: 1rem;
}

.spotify-embed iframe {
    border-radius: 8px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.reading-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 0.8rem;
}

.book-info {
    flex: 1;
}

.book-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 0.3rem 0;
    color: #251f1f;
}

.book-author {
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
    color: #666;
}

.book-cover {
    width: 120px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.polaroid {
    background: #FFFFFF;
    padding: 12px 12px 45px 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 200px;
    margin: 0 auto;
}

.bulletin-images {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.polaroid-book {
    width: 180px;
    transform: rotate(-5deg);
    margin-top: -10px;
}

.polaroid-book img {
    height: 240px;
}

.polaroid-bookstore {
    width: 500px;
}

.polaroid-bookstore img {
    height: 450px;
}


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


/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 248, 249, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(144, 38, 41, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(144, 38, 41, 0.15);
    background: rgba(255, 255, 255, 0.8);
    border-color: #c44a80;
}

.project-card h3 {
    font-family: Georgia, serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #251f1f;
}

.project-card p {
    margin-bottom: auto;
    line-height: 1.7;
    flex-grow: 1;
}

.project-card-footer {
    margin-top: 1.5rem;
}

.project-links {
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.project-link {
    display: inline-block;
    margin-right: 1rem;
    padding: 0.5rem 1rem;
    background: #902629;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(144, 38, 41, 0.2);
}

.project-link:hover {
    background: #b7484b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(183, 72, 75, 0.3);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
}

.tag {
    background: #fff8f9;
    color: #251f1f;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(208, 206, 207, 0.3);
}

/* Writing Section */
.writing {
    background: transparent;
    border-top: 1px solid rgba(208, 206, 207, 0.1);
    border-bottom: 1px solid rgba(208, 206, 207, 0.1);
}

.writing-list {
    max-width: 800px;
    margin: 0 auto;
}

.writing-item {
    display: block;
    padding: 2rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    text-decoration: none;
    color: #251f1f;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    border: 1px solid rgba(255, 248, 249, 0.5);
    box-shadow: 0 4px 15px rgba(144, 38, 41, 0.03);
    backdrop-filter: blur(15px);
}

.writing-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(12px);
    border-left-color: #c44a80;
    box-shadow: 0 8px 25px rgba(144, 38, 41, 0.12);
}

.writing-item h3 {
    font-family: Georgia, serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #251f1f;
}

.writing-item p {
    font-style: italic;
    opacity: 0.8;
}

/* Photos Section */
.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.photo-item {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 248, 249, 0.5);
    box-shadow: 0 4px 15px rgba(144, 38, 41, 0.08);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-item:hover {
    transform: scale(1.05);
    border-color: #c44a80;
    box-shadow: 0 8px 25px rgba(144, 38, 41, 0.15);
}

.photo-item:hover img {
    transform: scale(1.1);
}

/* Contact Section */


/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-header {
        margin-bottom: 3rem;
    }
    
    .hero-contact-links {
        gap: 1rem;
    }
    
    .about-text {
        flex-direction: column;
    }
    
    .about-image {
        max-width: 250px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .currently-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .currently-section {
        gap: 1.5rem;
    }
    
    .reading-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .book-cover {
        margin-top: 1rem;
        width: 100px;
    }
    
    .note {
        min-width: unset;
        padding: 1.5rem;
    }
    
    .note-2 {
        min-width: unset;
    }
    
    .polaroid {
        width: 180px;
    }
    
    .polaroid-bookstore {
        width: 300px !important;
    }
    
    .polaroid-bookstore img {
        height: 220px !important;
    }
    
    .currently {
        padding: 1rem 0;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-header {
        margin-bottom: 2rem;
    }
    
    .hero-contact-links {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .project-card {
        padding: 1.5rem;
    }
    
    .writing-item {
        padding: 1.5rem;
    }
    
    .photos-grid {
        grid-template-columns: 1fr;
    }
}