/* Base Styles */
:root {
    --primary-color: #000000;
    --secondary-color: #666666;
    --accent-color: #000000;
    --background-color: #ffffff;
    --font-mono: 'Space Mono', monospace;
    --font-serif: 'Playfair Display', serif;
}

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-mono);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

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

/* Header */
.site-header {
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid #eee;
    margin-bottom: 4rem;
}

.site-title {
    font-size: 3.5rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.site-subtitle {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    color: var(--secondary-color);
}

/* Typewriter Effect */
.typewriter-cursor {
    position: fixed;
    top: 0;
    right: 2rem;
    font-size: 2.4rem;
    font-weight: bold;
    animation: blink 1s step-end infinite;
    z-index: 1000;
    pointer-events: none;
}

@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

/* Intro Section */
.intro-section {
    padding: 8rem 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.typewriter-text {
    font-size: 2.2rem;
    line-height: 1.6;
    font-family: var(--font-serif);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

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

/* Gallery */
.gallery {
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

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

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





/* About Section */
.about-section {
    padding: 8rem 0;
    border-top: 1px solid #eee;
    margin-top: 4rem;
}

.about-section h2 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}

.about-section p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.8;
}

/* Footer */
.site-footer {
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid #eee;
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.site-footer {
    position: relative;
}

.site-footer p {
    margin-bottom: 1rem;
}

.instagram-link {
    display: inline-block;
    color: var(--primary-color);
    font-size: 2.4rem;
    margin-top: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.instagram-link:hover {
    color: #E1306C; /* Instagram brand color */
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    display: block;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2100;
}

.close-btn:hover {
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .site-title {
        font-size: 2.8rem;
    }
    
    .typewriter-text {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .about-section p {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 2.4rem;
    }
    
    .typewriter-text {
        font-size: 1.6rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
