/* Reset und Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #f9f9f7;
    font-size: 14px;
    letter-spacing: 0.02em;
    display: flex;
    min-height: 100vh;
}

/* Left Sidebar Navigation */
.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
    height: 100vh;
    background-color: #f9f9f7;
    border-right: 1px solid #eee;
    z-index: 1000;
}

.nav-content {
    padding: 40px 30px;
}

.site-title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #000;
    margin-bottom: 60px;
    line-height: 1.3;
}

.site-title-link {
    text-decoration: none;
    color: inherit;
}

.site-title-link:hover .site-title {
    color: #666;
    transition: color 0.2s ease;
}

.site-logo {
    width: 100%;
    max-width: 140px;
    height: auto;
    margin-bottom: 60px;
    display: block;
}

.nav-menu {
    list-style: none;
}

.nav-menu li {
    margin-bottom: 25px;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
    display: block;
}

.nav-link:hover,
.nav-link.active {
    color: #000;
}

/* Main Content */
.main-content {
    margin-left: 250px;
    padding: 40px 60px;
    flex: 1;
    max-width: calc(100% - 250px);
}

/* Image Column Layout */
.image-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 80%;
    align-items: flex-start;
}

.page-header {
    margin-bottom: 25px;
    width: 80%;
    text-align: left;
}

.page-header h2 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
}

.page-logo {
    width: 80%;
    max-width: 450px;
    height: auto;
    margin: 0 auto 10px auto;
    display: block;
}

.page-logo-small {
    width: 60%;
    max-width: 220px;
    height: auto;
    margin: 0 auto 10px auto;
    display: block;
}

.page-logo-medium {
    width: 80%;
    max-width: 320px;
    height: auto;
    margin: 0 auto 10px auto;
    display: block;
}

.project-description {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.image-item {
    cursor: default;
}

.image-item:hover {
    opacity: 1 !important;
    transform: none !important;
}

/* Side by side images */
.image-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.image-row .image-item {
    flex: 1;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
}

.image-item:hover .image-placeholder {
    border-color: #ddd !important;
    color: #666 !important;
}

/* Styles for real images */
.image-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: opacity 0.2s ease;
}

.image-item:hover img {
    opacity: 1 !important;
}

/* Extra Small Screens */
@media screen and (max-width: 360px) {
    .project-description {
        font-size: 9px;
        line-height: 1.2;
        padding: 0 10px;
    }
    
    .page-logo {
        max-width: 200px;
    }
}

/* Extra Small Screens */
@media screen and (max-width: 360px) {
    .page-header {
        width: 85%;
    }
    
    .page-logo {
        width: 85%;
        max-width: 280px;
    }
    
    .page-logo-medium {
        width: 85%;
        max-width: 240px;
    }
    
    .project-description {
        font-size: 10px;
        line-height: 1.5;
        max-width: 320px;
    }
    
    .image-column {
        width: 85%;
        gap: 25px;
    }
}

/* About Page Specific Styles */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1000px;
}

.about-text {
    font-size: 14px;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 20px;
    color: #333;
}

.about-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.about-text li {
    margin-bottom: 8px;
    color: #666;
}

.contact-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info strong {
    font-weight: 500;
    color: #000;
}

.contact-info a {
    color: #000;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.contact-info a:hover {
    opacity: 0.6;
}

.about-image .image-placeholder {
    aspect-ratio: 3/4;
    max-width: 300px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1200px;
    max-height: 80%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #000;
    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    z-index: 2001;
    transition: opacity 0.2s ease;
}

.close:hover {
    opacity: 0.6;
}

#caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Simple Mobile Menu */
.mobile-btn {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 999;
    padding: 20px;
    box-sizing: border-box;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #000;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 20px;
    max-width: 300px;
    margin: 0 auto;
}

.mobile-logo {
    width: 150px;
    height: auto;
    margin-bottom: 30px;
}

.mobile-link {
    display: block;
    padding: 15px 30px;
    background: #f0f0f0;
    border: 2px solid #333;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.mobile-link:hover {
    background: #333;
    color: #fff;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .mobile-btn {
        display: block;
    }
    
    .sidebar-nav {
        display: none;
    }
    
    .main-content {
        margin-left: 0;
        padding: 80px 0 20px;
        max-width: 100%;
    }
    
    .page-header {
        width: 80%;
        margin: 0 auto 30px;
        text-align: left;
        padding: 0;
        box-sizing: border-box;
    }
    
    .page-logo {
        width: 80%;
        max-width: 450px;
        height: auto;
        margin: 0 auto 10px auto;
        display: block;
    }
    
    .page-logo-medium {
        width: 80%;
        max-width: 320px;
        height: auto;
        margin: 0 auto 10px auto;
        display: block;
    }
    
    .page-logo-small {
        width: 60%;
        max-width: 200px;
        height: auto;
        margin: 0 auto 10px auto;
        display: block;
    }
    
    .image-column {
        width: 80%;
        margin: 0 auto;
        align-items: flex-start;
    }
    
    .project-description {
        font-size: 12px;
        line-height: 1.4;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
        padding: 0;
    }
    
    .image-item {
        width: 100%;
        margin: 0;
    }
    
    .image-item img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0;
    }
    
    .about-content {
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image img {
        width: 100%;
        height: auto;
    }
}

/* Mobile Navigation Content - Force Override */
@media screen and (max-width: 768px) {
    .sidebar-nav.mobile-open .nav-content {
        padding: 80px 40px 40px;
        text-align: center;
        width: 100%;
        height: 100%;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    
    .sidebar-nav.mobile-open .site-logo {
        max-width: 150px;
        margin: 0 auto 30px;
        display: block;
    }
    
    .sidebar-nav.mobile-open .nav-menu {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .sidebar-nav.mobile-open .nav-menu li {
        margin: 0;
        padding: 0;
        width: 100%;
        display: block;
    }
    
    .sidebar-nav.mobile-open .nav-link {
        font-size: 18px;
        font-weight: 600;
        color: #000;
        padding: 18px 24px;
        display: block;
        text-decoration: none;
        background: #f5f5f5;
        border: 2px solid #000;
        border-radius: 12px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        transition: all 0.2s ease;
    }
    
    .sidebar-nav.mobile-open .nav-link:hover,
    .sidebar-nav.mobile-open .nav-link.active {
        background: #000;
        color: #fff;
    }
    
    .sidebar-nav.mobile-open .nav-instagram {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 18px 24px;
        background: #f5f5f5;
        border: 2px solid #000;
        border-radius: 12px;
        margin: 0;
        text-decoration: none;
        width: 100%;
        box-sizing: border-box;
        transition: all 0.2s ease;
    }
    
    .sidebar-nav.mobile-open .nav-instagram:hover {
        background: #000;
        color: #fff;
    }
    
    .sidebar-nav.mobile-open .nav-instagram svg {
        width: 22px;
        height: 22px;
        stroke: currentColor;
    }
    
    .main-content {
        margin-left: 0;
        padding: 20px;
        max-width: 100%;
    }
    
    .page-header {
        margin-bottom: 40px;
    }
    
    .page-header h2 {
        font-size: 20px;
    }
    
    .image-column {
        gap: 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .close {
        top: 20px;
        right: 20px;
        font-size: 20px;
    }
    
    /* Mobile menu toggle */
    .mobile-menu-toggle {
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 1001;
        background: #fff;
        border: 1px solid #eee;
        padding: 10px 15px;
        cursor: pointer;
        font-size: 12px;
        letter-spacing: 0.02em;
    }
    
    /* Hide about image on mobile screens */
    .about-image {
        display: none;
    }
    
    /* Stack sketchbook images individually on mobile */
    .image-row {
        flex-direction: column;
        gap: 40px;
    }
}

@media screen and (max-width: 480px) {
    .main-content {
        padding: 60px 15px 15px;
    }
    
    .page-header {
        width: 80%;
        margin: 0 auto 25px;
    }
    
    .page-logo {
        width: 80%;
        max-width: 350px;
    }
    
    .page-logo-medium {
        width: 80%;
        max-width: 280px;
    }
    
    .page-logo-small {
        width: 60%;
        max-width: 180px;
    }
    
    .project-description {
        font-size: 11px;
        line-height: 1.6;
        max-width: 480px;
    }
    
    .image-column {
        width: 80%;
        gap: 30px;
    }
}

/* Extra Small Screens */
@media screen and (max-width: 360px) {
    .page-header {
        width: 85%;
    }
    
    .page-logo {
        width: 85%;
        max-width: 280px;
    }
    
    .page-logo-medium {
        width: 85%;
        max-width: 240px;
    }
    
    .project-description {
        font-size: 10px;
        line-height: 1.5;
        max-width: 320px;
    }
    
    .image-column {
        width: 85%;
        gap: 25px;
    }
}

.nav-content {
    padding: 30px 20px;
    
    .page-header h2 {
        font-size: 18px;
    }
    
    .image-column {
        gap: 20px;
    }
    
    .project-description {
        font-size: 10px;
        line-height: 1.2;
    }
}

/* Extra Small Screens */
@media screen and (max-width: 360px) {
    .project-description {
        font-size: 9px;
        line-height: 1.2;
        padding: 0 10px;
    }
    
    .page-logo {
        max-width: 200px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background-color: #000;
    color: #fff;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 100px 20px 50px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.hero-image {
    flex: 1;
}

.image-placeholder {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px dashed #dee2e6;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-weight: 500;
    aspect-ratio: 4/3;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    border-color: #e74c3c;
    color: #e74c3c;
}

.hero-image .image-placeholder {
    aspect-ratio: 1/1;
    max-width: 500px;
}

/* Section Titles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

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

/* Featured Work */
.featured-work {
    padding: 80px 0;
    background: #f8f9fa;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.featured-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.featured-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.featured-item .image-placeholder {
    height: 250px;
    border-radius: 0;
    border: none;
    margin-bottom: 1.5rem;
}

.featured-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    padding: 0 1.5rem;
}

.featured-item p {
    color: #7f8c8d;
    padding: 0 1.5rem 1.5rem;
}

/* Gallery */
.gallery {
    padding: 80px 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid #e74c3c;
    color: #e74c3c;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #e74c3c;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item .image-placeholder {
    height: 300px;
    border-radius: 15px;
    border: none;
}

.gallery-item.hidden {
    display: none;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #555;
}

.skills {
    margin-top: 2rem;
}

.skills h3 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.skills ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.skills li {
    color: #7f8c8d;
    position: relative;
    padding-left: 20px;
}

.skills li::before {
    content: '•';
    color: #e74c3c;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.about-image .image-placeholder {
    aspect-ratio: 3/4;
    max-width: 300px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #c0392b;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    background: #f8f9fa;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #e74c3c;
    color: white !important;
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.contact-form button {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    width: 100%;
}

.contact-form button:hover {
    background: #c0392b;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80%;
    object-fit: contain;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover {
    color: #e74c3c;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .featured-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .skills ul {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero,
    .featured-work,
    .gallery,
    .about,
    .contact {
        padding: 60px 0;
    }
}

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

.gallery-item,
.featured-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling enhancement */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #e74c3c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c0392b;
}

/* Social Icons */
.social-icons {
    margin-top: 20px;
    text-align: center;
}

.social-icon {
    display: inline-block;
    padding: 10px;
    color: #666;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: #e74c3c;
}

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

/* Navigation Instagram Icon */
.nav-instagram {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-instagram svg {
    width: 16px;
    height: 16px;
}

/* Additional responsive rule for Gartenfreunde logo in 360px breakpoint */
@media screen and (max-width: 360px) {
    .page-logo-small {
        width: 65%;
        max-width: 160px;
    }
}