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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #fafafa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 300;
    font-style: italic;
    font-family: Georgia, serif;
    margin: 0;
}

.logo a {
    color: #000;
    text-decoration: none;
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-links a {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #000;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #000;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #000;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid #e5e5e5;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    color: #4a5568;
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: #000;
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .logo h1 {
        font-size: 2.5rem;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
    min-height: calc(100vh - 160px);
}

.masonry-grid {
    column-count: 1;
    column-gap: 1.5rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: background-color 0.3s ease;
    opacity: 0;
}

.gallery-item:hover .gallery-item-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 1;
}

.gallery-item-info {
    color: #fff;
    text-align: center;
    transform: translateY(1rem);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-info {
    transform: translateY(0);
}

.gallery-item-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-item-info p {
    font-size: 0.875rem;
    color: #d1d5db;
    margin-bottom: 0.25rem;
}

.gallery-item-info .meta {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Responsive Columns */
@media (min-width: 640px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (min-width: 1024px) {
    .masonry-grid {
        column-count: 3;
    }
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
    z-index: 110;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: #d1d5db;
}

.lightbox-close {
    top: 1rem;
    right: 1rem;
}

.lightbox-prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev.hidden,
.lightbox-next.hidden {
    display: none;
}

.lightbox-content {
    position: relative;
    z-index: 105;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
}

.lightbox-info {
    color: #fff;
    text-align: center;
    margin-top: 1.5rem;
    max-width: 700px;
}

.lightbox-info h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.lightbox-info p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.lightbox-meta {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Footer Styles */
.footer {
    background-color: #fff;
    border-top: 1px solid #e5e5e5;
    padding: 3rem 0;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f2937;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #000;
}

.footer-text {
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
}

.footer-text p {
    margin-bottom: 0.5rem;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* ---------- About & Contact Section Styles ---------- */
.section-content {
    display: none;
    padding: 4rem 1rem;
    min-height: calc(100vh - 240px);
    background-color: #fafafa;
}

.section-content.active {
    display: block !important;
}

/* About Section */
.about-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 0.5s ease-in;
}

.about-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    font-style: italic;
    font-family: Georgia, serif;
    margin-bottom: 2rem;
    color: #1f2937;
}

.about-text p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Contact Section */
.contact-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 0.5s ease-in;
}

.contact-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    font-style: italic;
    font-family: Georgia, serif;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background-color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.contact-form button:hover {
    background-color: #1f2937;
    transform: translateY(-2px);
}

.contact-form button:active {
    transform: translateY(0);
}

.contact-image {
    margin-top: 3rem;
}

.contact-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-text h2,
    .contact-container h2 {
        font-size: 2rem;
    }
    
    .about-text p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .contact-image img {
        max-width: 100%;
    }
    
    .section-content {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .about-text h2,
    .contact-container h2 {
        font-size: 1.75rem;
    }
    
    .about-image {
        border-radius: 8px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.875rem;
        font-size: 0.9375rem;
    }
}"