@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

:root {
    --font-family: 'Inter', sans-serif;
    
    /* Natural Color Palette */
    --bg-color: #FDFDFD;
    --text-color: #333333;
    --primary-color: #A8B3A2; /* Muted Forest Green */
    --secondary-color: #D2C4A8; /* Dry Earth */
    --accent-color: #8E9B9E; /* Cool Water */
    --border-color: #EAEAEA;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-color);
}

.logo a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
}

nav a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-color);
}

main {
    padding: 4rem 5%;
}

.page {
    display: none;
    animation: fadeIn 0.8s ease;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Section (Home) */
.hero {
    position: relative;
    min-height: 80vh;
    text-align: center;
    color: white;
    background-image: url('../images/inact_main.png');
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 300;
    margin: 0 auto 1rem auto;
    line-height: 1.3;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* General Page Styles */
h2 {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1rem;
}

.subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
}

.content-box {
    max-width: 750px;
    margin: 0 auto;
}

.content-box h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    margin-top: 2rem;
    color: var(--primary-color);
}

/* Gallery Grid (Art & Practice) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.gallery-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 1.5rem 0.5rem 1.5rem;
}

.gallery-item p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #666;
    font-size: 0.95rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 1.8rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #8A9A84; /* Darker shade of primary */
}


/* Footer */
footer {
    padding: 2rem 5%;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: #888;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links a {
    color: #888;
    text-decoration: none;
    margin-left: 1.5rem;
}

.social-links a:hover {
    color: var(--primary-color);
}
rem 5%;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: #888;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links a {
    color: #888;
    text-decoration: none;
    margin-left: 1.5rem;
}

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

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    header {
        padding: 1rem 5%;
    }

    nav a {
        margin-left: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}