:root {
    --primary: #2c3e50;
    --secondary: #d4af37; /* Gold for devotional feel */
    --bg-light: #f9f7f2;
    --text-dark: #1a1a1a;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    display: flex; /* This creates the Sidebar + Content layout */
}

/* --- Sidebar Navigation --- */
nav {
    width: 250px;
    height: 100vh;
    background: var(--primary);
    position: fixed;
    left: 0;
    top: 0;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
}

.logo-container {
    text-align: center;
    margin-bottom: 50px;
}

.logo-container img {
    width: 100%;
    max-width: 200px; /* Make it big as requested */
    height: auto;
}

nav ul {
    list-style: none;
    width: 100%;
}

nav ul li {
    margin: 25px 0;
    text-align: center;
}

nav ul li a {
    text-decoration: none;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: bold;
    transition: 0.3s;
    letter-spacing: 1px;
}

nav ul li a:hover {
    color: var(--secondary);
    padding-left: 10px;
}

/* --- Main Content Area --- */
main {
    margin-left: 250px; /* Push content to the right of the sidebar */
    width: calc(100% - 250px);
    min-height: 100vh;
}

/* --- Hero Section --- */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('images/artist-bg.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin-bottom: 30px;
}

/* --- General Sections --- */
section {
    padding: 80px 10%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.feature-item i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

/* --- Gallery/Photos Page --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.03);
}

/* --- Buttons & Footer --- */
.btn-buy {
    padding: 15px 40px;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
}

footer {
    background: #1a1a1a;
    color: white;
    padding: 40px;
    text-align: center;
}

/* --- Responsive Mobile Fix --- */
@media (max-width: 768px) {
    body { flex-direction: column; }
    nav {
        position: relative;
        width: 100%;
        height: auto;
        padding: 20px;
    }
    main { margin-left: 0; width: 100%; }
    .hero h1 { font-size: 2.5rem; }
}
