/* Modern Reset & Variables */
:root {
    --primary: #1a1a1a;
    --accent: #ff4757;
    --text: #333;
    --bg: #fdfdfd;
}
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('hero-bg.jpg'); /* You can add a bg image later */
    background-size: cover;
    color: white;
}

.hero-content h2 { font-size: 3.5rem; margin-bottom: 1rem; }
.hero-content p { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.9; }

.btn-main {
    padding: 15px 40px;
    background: #ff4757;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-main:hover { background: white; color: #ff4757; }
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    margin: 0;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.navbar h1 span { color: var(--accent); }

.navbar ul { display: flex; list-style: none; }

.navbar ul li a {
    text-decoration: none;
    color: var(--text);
    margin-left: 25px;
    font-weight: 500;
    transition: 0.3s;
}

.navbar ul li a:hover, .active { color: var(--accent); }

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 5%;
}

.art-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.image-container img {
    width: 100%;
    height: 350px;
    object-fit: cover; /* This keeps images from looking stretched */
}

.art-info {
    padding: 20px;
}

.art-info h3 { margin: 0 0 10px 0; font-size: 1.2rem; }
.art-info p { font-size: 0.9rem; color: #777; line-height: 1.4; }

