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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(245, 245, 245, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    padding: 20px 0;
}

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

.logo {
    font-size: 0.75rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    color: #999;
    font-weight: 400;
    margin-left: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #999;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.nav-menu a:hover {
    color: #333;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 20px 80px 20px;
}

/* About Hero */
.about-hero {
    margin-bottom: 60px;
    max-width: 700px;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.3;
    color: #333;
    font-family: 'Georgia', serif;
}

/* About Content */
.about-content {
    margin-bottom: 80px;
    max-width: 700px;
}

.about-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
}

.about-text a {
    color: #666;
    text-decoration: underline;
}

.about-text a:hover {
    color: #333;
}

.about-list {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    margin-left: 20px;
    padding-left: 0;
    list-style: disc;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.about-list li {
    margin-bottom: 4px;
}

/* Photo Gallery */
.photo-gallery {
    margin-bottom: 80px;
    max-width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 1400px;
}

.gallery-item {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Footer */
footer {
    padding: 60px 0 40px;
    text-align: center;
    color: #999;
    font-size: 0.85rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        gap: 25px;
    }

    .container {
        padding: 120px 20px 40px;
    }

    .about-hero h1 {
        font-size: 3rem;
    }

    .intro {
        font-size: 1.2rem;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-text {
        font-size: 0.95rem;
    }

    .about-list {
        font-size: 0.95rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 20px;
    }

    .nav-menu a {
        font-size: 0.85rem;
    }

    .container {
        padding: 100px 20px 30px;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-text {
        font-size: 0.9rem;
    }

    .about-list {
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}
