/* Base Styles */
:root {
    --primary: #FF6B6B;
    --secondary: #4ECDC4;
    --dark: #2D3436;
    --light: #FDFDFD;
}

body {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(45, 52, 54, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
    height: 40px;
    mix-blend-mode: lighten;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    margin: 0 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

/* Fullscreen Sections */
.fullscreen-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
    text-align: center;
}

/* Intro Section */
.intro-content {
    z-index: 1;
}

.glitch {
    font-size: 4rem;
    text-transform: uppercase;
    position: relative;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0% { text-shadow: 2px 2px var(--primary), -2px -2px var(--secondary); }
    50% { transform: translate(2px, -2px); }
    100% { text-shadow: none; }
}

.tagline {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.scroll-down {
    margin-top: 2rem;
    font-size: 2rem;
    color: var(--light);
    animation: bounce 2s infinite;
}

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

/* Photography Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    width: 80%;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

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

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

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
}

/* Writing Section */
.writing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 80%;
    margin: 0 auto;
}

.writing-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.writing-card:hover {
    transform: translateY(-10px);
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
}

/* Contact Section */
.contact-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin: 0.5rem 0;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
}

.contact-form button {
    background: var(--primary);
    color: var(--light);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: var(--secondary);
}

.social-links {
    margin-top: 2rem;
}

.social-icon {
    color: var(--light);
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--primary);
}
