/* =====================================================
   RESET AND BASE STYLES
===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tanker', 'Impact', 'Arial Black', sans-serif;
    color: #3d2b24;
    background-color: #f5e6d3;
    min-height: 100vh;
    overflow-x: hidden;
}

/* =====================================================
   HEADER & NAVIGATION
===================================================== */
.main-header {
    background-color: #4d3530;
    padding: 1.5rem 2rem;
}

/* Default nav for pages WITH logo in nav (5 columns) */
.main-nav {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link.active {
    color: #b8d4a8;
}

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

.logo-link {
    justify-self: center;
}

.nav-logo {
    height: 50px;
    width: auto;
    display: block;
    filter: brightness(0) saturate(100%) invert(79%) sepia(12%) saturate(834%) hue-rotate(62deg) brightness(95%) contrast(88%);
}

/* =====================================================
   HOME PAGE STYLES
===================================================== */
/* Override nav for home page (4 columns, no logo in nav) */
body:has(.hero-section .logo) {
    display: grid;
    grid-template-rows: auto 1fr auto auto;
}

body:has(.hero-section .logo) .main-header {
    padding: 2rem 2rem;
    grid-row: 1;
}

body:has(.hero-section .logo) .main-nav {
    grid-template-columns: repeat(4, auto);
    max-width: 1200px;
}

body:has(.hero-section .logo) .nav-link {
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    background-color: #f5e6d3;
    padding: 2rem 2rem;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
    max-width: 1400px;
    width: 100%;
    align-items: center;
}

.logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    align-self: center;
    width: 280px;
    height: auto;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}

.tagline {
    grid-column: 3;
    grid-row: 1;
    font-size: 1.6rem;
    font-weight: 900;
    color: #3d2b24;
    line-height: 1.3;
    text-align: left;
    align-self: center;
    letter-spacing: 0.02em;
    padding-left: 2rem;
}

.cta-button {
    grid-column: 2;
    grid-row: 2;
    background-color: #8fad8e;
    color: #3d2b24;
    text-decoration: none;
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 30px;
    text-align: center;
    transition: background-color 0.3s ease;
    justify-self: center;
    align-self: start;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #7a9a79;
}

/* Gallery Section */
.gallery-section {
    background-color: #f5e6d3;
    padding: 1rem 0 0 0;
    grid-row: 3;
    overflow: hidden;
}

.gallery-container {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 180px;
    gap: 1rem;
    padding: 0 0 1rem 0;
    width: max-content;
    animation: scroll-infinite 30s linear infinite;
}

.gallery-container:hover {
    animation-play-state: paused;
}

@keyframes scroll-infinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery-item {
    position: relative;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

/* =====================================================
   PORTFOLIO PAGE STYLES
===================================================== */
.portfolio-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-section {
    text-align: center;
    padding: 3rem 2rem 2rem;
}

.page-title {
    font-size: 6rem;
    font-weight: 900;
    color: #3d2b24;
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.categories-section {
    padding: 2rem 0;
    text-align: center;
}

.category-circles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto 2rem;
}

.category-circle {
    width: 240px;
    height: 240px;
    background-color: #8fad8e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
    justify-self: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.category-circle:hover {
    transform: scale(1.05);
    background-color: #7a9a79;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #3d2b24;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.scroll-indicator {
    margin-top: 1rem;
}

.scroll-indicator p {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.arrow-down {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.project-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    margin: 0 auto;
    max-width: 1200px;
}

.project-section.left-aligned {
    grid-template-columns: auto 1fr;
}

.project-section.right-aligned {
    grid-template-columns: 1fr auto;
}

.project-card {
    background-color: #4d3530;
    border-radius: 50px;
    padding: 4rem 3rem;
    min-width: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-heading {
    font-size: 3rem;
    font-weight: 900;
    color: #8fad8e;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 1px;
}

.project-description {
    padding: 2rem;
}

.project-description p {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* =====================================================
   WORK PAGES (HAN, INTERIOR, MUSIC)
===================================================== */
.work-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.work-hero {
    text-align: center;
    padding: 3rem 0 2rem;
}

.work-hero .page-title {
    font-size: 5rem;
    font-weight: 900;
    color: #3d2b24;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.explore-indicator {
    margin-top: 2rem;
}

.explore-indicator p {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    padding: 3rem 0;
    max-width: 1000px;
    margin: 0 auto;
}

.projects-grid .project-card {
    background-color: #4d3530;
    border-radius: 45px;
    padding: 1.2rem;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    min-width: auto;
}

.projects-grid .project-card:hover {
    transform: scale(1.02);
}

.projects-grid .project-card img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    display: block;
}

/* Music Cards */
.music-card {
    background-color: #4d3530;
    border-radius: 45px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
    min-height: 320px;
}

.song-title {
    background-color: #8fad8e;
    color: #3d2b24;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-align: center;
}

.music-icon {
    font-size: 8rem;
    color: #f5e6d3;
}

.music-link {
    background-color: #8fad8e;
    color: #3d2b24;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    text-align: center;
}

.music-link:hover {
    background-color: #7a9a79;
}

.back-button-container {
    text-align: center;
    padding: 2rem 0;
}

.back-button {
    display: inline-block;
    background-color: #8fad8e;
    color: #3d2b24;
    text-decoration: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    letter-spacing: 1px;
}

.back-button:hover {
    background-color: #7a9a79;
}

/* =====================================================
   ABOUT PAGE STYLES
===================================================== */
.about-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-main .hero-section {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 8rem;
    padding: 3rem 4rem 3rem 2rem;
    align-items: start;
    max-width: 1600px;
    margin: 0 auto;
}

.profile-container {
    position: relative;
}

.profile-card {
    background-color: #4d3530;
    border-radius: 50px;
    padding: 1.2rem;
    width: 360px;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
}

.about-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin-left: auto;
    margin-right: 2rem;
}

.about-main .page-title {
    font-size: 5rem;
    font-weight: 900;
    color: #3d2b24;
    letter-spacing: 0.02em;
    margin-bottom: 0.1rem;
}

.about-section {
    margin-bottom: 0.15rem;
}

.section-heading {
    font-size: 1.3rem;
    font-weight: 900;
    color: #3d2b24;
    margin-bottom: 0.2rem;
    letter-spacing: 0.5px;
}

.section-text {
    font-size: 0.85rem;
    line-height: 1.4;
    font-weight: bold;
    letter-spacing: 0.3px;
    margin-bottom: 0.3rem;
}

.connect-indicator {
    text-align: center;
    margin-top: 0rem;
    grid-column: 1 / -1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 0;
}

.connect-indicator p {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.contact-section {
    text-align: center;
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-heading {
    font-size: 2rem;
    font-weight: 900;
    color: #3d2b24;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    max-width: 800px;
}

.contact-button {
    display: inline-block;
    background-color: #8fad8e;
    color: #3d2b24;
    text-decoration: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.contact-button:hover {
    background-color: #7a9a79;
}

.social-icons {
    display: grid;
    grid-auto-flow: column;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-icon-large {
    color: #3d2b24;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
}

.social-icon-large svg {
    width: 50px;
    height: 50px;
}

.social-icon-large:hover {
    color: #4d3530;
    transform: scale(1.1);
}

/* =====================================================
   CONTACT PAGE STYLES
===================================================== */
body:has(.contact-main) {
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.contact-main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem;
    overflow: hidden;
}

.contact-form-section {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.contact-form-section .page-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #3d2b24;
    letter-spacing: 0.02em;
    margin-bottom: 0.3rem;
}

.subtitle {
    font-size: 0.85rem;
    font-weight: bold;
    color: #3d2b24;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.form-container {
    display: grid;
    gap: 1rem;
}

.form-group {
    display: grid;
    gap: 0.3rem;
    text-align: left;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: bold;
    color: #3d2b24;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.7rem;
    border: none;
    border-radius: 10px;
    background-color: #e8dcc8;
    font-family: 'Tanker', 'Impact', 'Arial Black', sans-serif;
    font-size: 0.8rem;
    color: #6b5d52;
    letter-spacing: 0.5px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a89d91;
    text-transform: uppercase;
}

.form-group textarea {
    resize: vertical;
    min-height: 70px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid #8fad8e;
}

.submit-button {
    background-color: #8fad8e;
    color: #3d2b24;
    border: none;
    padding: 0.7rem 2.2rem;
    font-size: 0.95rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Tanker', 'Impact', 'Arial Black', sans-serif;
    letter-spacing: 1px;
    justify-self: center;
    margin-top: 0.5rem;
}

.submit-button:hover {
    background-color: #7a9a79;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: #4d3530;
    border-radius: 50px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mail-icon {
    margin-bottom: 1rem;
}

.popup-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #8fad8e;
    letter-spacing: 0.5px;
}

.popup-text {
    font-size: 0.95rem;
    font-weight: bold;
    color: #f5e6d3;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.popup-button {
    background-color: #8fad8e;
    color: #3d2b24;
    border: none;
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Tanker', 'Impact', 'Arial Black', sans-serif;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.popup-button:hover {
    background-color: #7a9a79;
}

.popup-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.popup-social a {
    transition: transform 0.3s ease;
}

.popup-social a:hover {
    transform: scale(1.1);
}

/* =====================================================
   DETAIL PAGE STYLES
===================================================== */
.detail-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: calc(100vh - 200px);
}

.poster-image {
    background-color: #f5e6d3;
    padding: 3rem 2rem 3rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.poster-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.project-details {
    background-color: #f5e6d3;
    padding: 3rem 4rem 3rem 2rem;
    overflow-y: auto;
}

.project-title {
    font-size: 3rem;
    font-weight: 900;
    color: #3d2b24;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.project-info {
    margin-top: 1rem;
}

.project-subtitle {
    color: #8fad8e;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.project-details .section-heading {
    font-size: 1.1rem;
    font-weight: 900;
    color: #3d2b24;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.project-details .section-text {
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: bold;
    letter-spacing: 0.3px;
    margin-bottom: 0.8rem;
    text-align: justify;
}

.section-list {
    list-style-position: inside;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.section-list li {
    font-size: 0.75rem;
    line-height: 1.6;
    font-weight: bold;
    letter-spacing: 0.3px;
    margin-bottom: 0.5rem;
}

.conclusion {
    margin-top: 1.5rem;
}

/* =====================================================
   FOOTER
===================================================== */
.main-footer {
    background-color: #4d3530;
    padding: 2.5rem 2rem;
    grid-row: 4;
}

body:has(.hero-section .logo) .main-footer {
    grid-row: 4;
}

body:has(.contact-main) .main-footer {
    padding: 1.8rem 2rem;
}

body:has(.about-main) .main-footer {
    padding: 3rem 2rem;
    margin-top: 4rem;
}

body:has(.portfolio-main) .main-footer {
    margin-top: 4rem;
}

body:has(.detail-main) .main-footer {
    padding: 2rem 2rem;
    margin-top: 0;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 2rem;
}

body:has(.hero-section .logo) .social-links {
    display: grid;
    grid-auto-flow: column;
    gap: 1.5rem;
    justify-content: start;
    padding-left: 2rem;
}

body:has(.contact-main) .social-links {
    justify-content: center;
    padding-left: 0;
}

body:has(.portfolio-main) .social-links {
    display: grid;
    grid-auto-flow: column;
    gap: 1.5rem;
    justify-content: start;
}

.social-icon {
    color: #8fad8e;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
}

body:has(.hero-section .logo) .social-icon {
    color: #8fad8e;
}

body:has(.portfolio-main) .social-icon,
body:has(.work-main) .social-icon {
    color: #b8d4a8;
}

body:has(.detail-main) .social-icon {
    color: #b8d4a8;
}

.social-icon svg {
    width: 36px;
    height: 36px;
}

.social-icon:hover {
    color: #b8d4a8;
    transform: scale(1.1);
}

body:has(.portfolio-main) .social-icon:hover,
body:has(.work-main) .social-icon:hover,
body:has(.detail-main) .social-icon:hover {
    color: #8fad8e;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
    align-items: center;
}

.footer-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: center;
    color: #8fad8e;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.footer-item:first-child {
    justify-self: start;
}

.footer-item:nth-child(2) {
    justify-self: center;
}

.footer-item:last-child {
    justify-self: end;
}

.footer-item svg {
    justify-self: center;
}

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */
@media (max-width: 1200px) {
    .about-main .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .profile-container {
        position: relative;
        top: 0;
    }
    
    .profile-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .project-section {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        text-align: center;
    }
    
    .project-card {
        min-width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .project-section.right-aligned .project-card {
        order: 1;
    }
    
    .project-section.right-aligned .project-description {
        order: 2;
    }
    
    .detail-container {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .poster-image {
        padding: 3rem 2rem;
    }
    
    .project-details {
        padding: 3rem 2rem;
    }
    
    .poster-image img {
        max-width: 600px;
    }
}

@media (max-width: 968px) {
    .main-nav {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
    
    .logo-link {
        grid-column: 1 / -1;
        order: -1;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        text-align: center;
    }
    
    .logo {
        grid-column: 1;
        grid-row: 1;
        width: 180px;
    }
    
    .tagline {
        grid-column: 1;
        grid-row: 2;
        text-align: center;
        font-size: 1.4rem;
        align-self: center;
        padding-left: 0;
    }
    
    .cta-button {
        grid-column: 1;
        grid-row: 3;
    }
    
    .page-title {
        font-size: 3.5rem;
    }
    
    .portfolio-main .page-title {
        font-size: 4rem;
    }
    
    .category-circles {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-title {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-item {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

@media (max-width: 600px) {
    .logo {
        width: 150px;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .gallery-container {
        grid-auto-columns: 160px;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .portfolio-main .page-title {
        font-size: 3rem;
    }
    
    .intro-text {
        font-size: 0.85rem;
    }
    
    .category-circle {
        width: 220px;
        height: 220px;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
    
    .project-heading {
        font-size: 2.2rem;
    }
    
    .project-description p {
        font-size: 0.9rem;
    }
    
    .profile-card {
        height: 400px;
    }
    
    .section-heading {
        font-size: 1.2rem;
    }
    
    .section-text {
        font-size: 0.85rem;
    }
    
    .contact-heading {
        font-size: 1.5rem;
    }
    
    .social-icons {
        gap: 2rem;
    }
    
    .social-icon-large svg {
        width: 60px;
        height: 60px;
    }
    
    .project-title {
        font-size: 2rem;
    }
    
    .project-details .section-heading {
        font-size: 1rem;
    }
    
    .poster-image {
        padding: 2rem 1rem;
    }
    
    .project-details {
        padding: 2rem 1rem;
    }
    
    .projects-grid {
        gap: 1.5rem;
    }
    
    .projects-grid .project-card {
        padding: 1rem;
    }
}