/* COPSE WORKS - STYLE.CSS */

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #fefefe;
}

/* HEADER */
header {
    padding: 40px 20px 60px;
}

/* NAVIGATION */
.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
}

.logo-nav {
    height: 40px;
    width: auto;
    margin: 0 20px;
}

.nav-link {
    color: #222;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8B6F47;
}

/* HEADER TITLE */
.header-title {
    margin-top: 30px;
    text-align: center;
}

/* LANGUAGE TOGGLE */
.lang-toggle {
    text-align: center;
    margin-top: 20px;
    padding: 10px 0;
}

.lang-link {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.lang-link:hover {
    color: #222;
}

.lang-link.active {
    color: #222;
    font-weight: 600;
}

.lang-separator {
    color: #ccc;
    margin: 0 10px;
}

.logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 8px;
    margin-bottom: 15px;
    color: #222;
}

.tagline {
    font-size: 0.95rem;
    color: #888;
    font-weight: 300;
    letter-spacing: 1px;
}

/* PORTFOLIO GRID */
.portfolio-grid {
    column-count: 3;
    column-gap: 15px;
    padding: 0 40px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.grid-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    break-inside: avoid;
}

.grid-item a {
    display: block;
    cursor: pointer;
}

/* IMAGE PLACEHOLDERS - Replace with actual images */
.image-placeholder {
    width: 100%;
    height: 300px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.image-placeholder span {
    color: #999;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.grid-item:hover .image-placeholder {
    transform: scale(1.02);
}

/* For actual images, use this instead of placeholder */
.grid-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.grid-item a:hover img {
    transform: scale(1.02);
    opacity: 0.9;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #e5e5e5;
    color: #888;
    font-size: 0.85rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .portfolio-grid {
        column-count: 2;
        padding: 0 30px 60px;
    }
    
    h1 {
        font-size: 2.5rem;
        letter-spacing: 6px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-nav {
        height: 35px;
        margin: 10px 0;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .logo {
        max-width: 400px;
    }
    
    h1 {
        font-size: 2rem;
        letter-spacing: 4px;
    }
    
    .tagline {
        font-size: 0.85rem;
    }
    
    .portfolio-grid {
        column-count: 1;
        gap: 15px;
        padding: 0 20px 40px;
    }
    
    .bio-page {
        padding: 20px 20px 40px;
    }
    
    .bio-section {
        margin-bottom: 40px;
    }
    
    .bio-section h2 {
        font-size: 1rem;
    }
    
    .bio-section p {
        font-size: 0.95rem;
    }
    
    .contact-page {
        padding: 20px 20px 40px;
    }
    
    .contact-section {
        margin-bottom: 35px;
    }
    
    .contact-section h2 {
        font-size: 1rem;
    }
    
    .contact-section p {
        font-size: 0.95rem;
    }
    
    .contact-email {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .contact-email p {
        font-size: 1.1rem;
    }
}

/* CONTACT PAGE */
.contact-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 40px 80px;
}

.contact-section {
    margin-bottom: 50px;
}

.contact-section:last-child {
    margin-bottom: 40px;
}

.contact-section h2 {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #222;
    text-transform: uppercase;
}

.contact-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0;
}

.contact-email {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
}

.contact-email p {
    font-size: 1.2rem;
}

.contact-email a {
    color: #8B6F47;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: #222;
    text-decoration: underline;
}

/* BIO PAGE */
.bio-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 40px 80px;
}

.bio-section {
    margin-bottom: 60px;
}

.bio-section:last-child {
    margin-bottom: 40px;
}

.bio-section h2 {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #222;
    text-transform: uppercase;
}

.bio-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.bio-timeline {
    padding-left: 30px;
    margin-top: 15px;
}

.bio-closing {
    font-weight: 500;
    color: #222;
    text-align: center;
    margin-top: 30px;
}

.bio-link {
    color: #8B6F47;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.bio-link:hover {
    color: #222;
    text-decoration: underline;
}

/* ACCENT COLOR - Warm wood tone */
/* Used for hover states and accents throughout */
/* Change #8B6F47 to your preferred accent color */