/* RESET */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Poppins', sans-serif;
line-height: 1.6;
color: #333;
background: #fff;
padding-top: 80px; /* So content doesn't hide behind fixed header */
}

/* HEADER */
header {
background: white;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
}

.header-container {
max-width: 1100px;
margin: auto;
padding: 15px 20px;
display: flex;
align-items: center;
justify-content: space-between;
}

.logo img {
height: 100px;
}

/* NAVIGATION */
nav ul {
list-style: none;
display: flex;
gap: 25px;
}

nav ul li a {
text-decoration: none;
color: #333;
font-weight: 500;
transition: color 0.3s;
}

nav ul li a:hover {
color: #ff6600;
}

/* HERO SECTION */
.hero {
position: relative;
height: 100vh;
overflow: hidden;
}

.slides {
height: 100%;
position: relative;
}

.slide {
position: absolute;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
opacity: 0;
transition: opacity 1s ease-in-out;
}

.slide.is-active {
opacity: 1;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.2);
}

.hero-text {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
text-align: center;
color: white;
text-shadow: 0 3px 15px rgba(0,0,0,0.9);
background: rgba(0,0,0,0.4);
padding: 15px 25px;
border-radius: 8px;
width: 90%;
max-width: 600px;
}

.hero-text h1 {
font-size: 2.5rem;
}

.hero-text p {
font-size: 1rem;
}

@media (max-width: 768px) {
.hero {
height: 70vh;
}
.hero-text h1 {
font-size: 1.8rem;
}
.hero-text p {
font-size: 0.9rem;
}
}

/* SECTIONS */
section {
padding: 60px 20px;
}

.container {
max-width: 1100px;
margin: auto;
text-align: center;
}

h2 {
font-size: 2rem;
margin-bottom: 20px;
}

p {
font-size: 1rem;
}

/* SERVICES */
.service-list {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}

.service {
flex: 1 1 250px;
background: #f8f8f8;
padding: 20px;
border-radius: 10px;
}

/* ARTIST GALLERY */
.artist-gallery {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}

.artist-gallery img {
width: 280px;
height: 280px;
object-fit: cover;
border: 5px solid white;
box-shadow: 0 5px 20px rgba(0,0,0,0.3);
border-radius: 10px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-gallery img:hover {
transform: scale(1.05);
box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

/* CONTACT */
form {
display: flex;
flex-direction: column;
gap: 15px;
max-width: 500px;
margin: auto;
}

input, textarea {
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}

button {
padding: 10px;
border: none;
background: black;
color: white;
cursor: pointer;
border-radius: 5px;
}

.social-links {
margin-top: 20px;
}

/* FOOTER */
footer {
background: black;
color: white;
text-align: center;
padding: 20px 0;
}
