/* Base Styles */
:root {
  --primary: #333333;
  --accent: #ED1C24;
  --secondary: #ffffff;
  --light: #ffffff;
  --dark: #FFFFFF;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
  height: 40px;
}

.menu-toggle, .close-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
}

.nav-links ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

/* Hero Section */
#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  /* background: linear-gradient(135deg, rgba(241, 250, 238, 0.8), rgba(255, 255, 255, 0.9)) */
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-logo {
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-logo img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.hero-content p {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  background-color: var(--accent);
  color: var(--light);
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: rgba(230, 57, 70, 0.9);
}

/* About Section */
#about {
  padding: 4rem 0;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

/* Artists Section */
#artists {
  padding: 4rem 0;
  background-color: var(--secondary);
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.artist-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: var(--light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.artist-image {
  position: relative;
  overflow: hidden;
  padding-bottom: 125%; /* 4:5 aspect ratio */
}

.artist-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.artist-card:hover .artist-image img {
  transform: scale(1.05);
}

.artist-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.artist-card:hover .artist-overlay {
  opacity: 1;
}

.overlay-btn {
  background-color: var(--accent);
  color: var(--light);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.overlay-btn:hover {
  background-color: rgba(230, 57, 70, 0.9);
}

.artist-info {
  padding: 1.5rem;
}

.artist-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.artist-info .artist-meta {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.75rem;
}

/* Services Section */
#services {
  padding: 4rem 0;
  background-color: var(--secondary);
}

.services-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--light);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(230, 57, 70, 0.1);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* Contact Section */
#contact {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info .contact-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-icon {
  color: var(--accent);
  margin-right: 1rem;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary);
  color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.social-link:hover {
  background-color: var(--accent);
}

.contact-form {
  background-color: var(--light);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 2px var(--accent);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  width: 100%;
  background-color: var(--accent);
  color: var(--light);
  border: none;
  padding: 0.75rem;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: rgba(230, 57, 70, 0.9);
}

/* Footer */
footer {
  background-color: var(--dark);
  color: var(--primary);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 3rem;
  margin-bottom: 1.5rem;
}

.footer-about {
  opacity: 0.8;
  max-width: 400px;
}

.footer-title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-address {
  font-style: normal;
  opacity: 0.8;
}

.footer-hours {
  margin-top: 1rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  opacity: 0.6;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.footer-legal a:hover {
  opacity: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .artist-feature-grid, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .artist-feature-grid .artist-images-grid {
    order: -1;
  }
}

@media (max-width: 768px) {
  .hero-logo {
    max-width: 90%;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .menu-toggle, .close-menu {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    background-color: var(--light);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  
  .nav-links.active {
    transform: translateX(0);
  }
  
  .close-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  
  .nav-links ul {
    flex-direction: column;
  }
  
  .nav-links li {
    margin: 1rem 0;
  }
}

@media (max-width: 576px) {
  .artists-grid, .services-grid {
    grid-template-columns: 1fr;
  }
  
  .artist-images-grid {
    gap: 0.5rem;
  }
  
  .hero-logo {
    max-width: 95%;
  }
}