* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100vh;
  font-family: 'Quicksand', sans-serif;
  background: #000;
}

.page {
  position: relative;
  width: 100%;
  max-width: 1920px;
  min-height: 100vh;
  margin: 0 auto;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/background.png') no-repeat center center;
  background-size: cover;
  filter: blur(20px);
  -webkit-filter: blur(20px);
  z-index: 1;
}

.left-content {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  z-index: 2;
  color: #ffffff;
}

.logo {
  margin-bottom: 40px;
}

.logo-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.logo h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 10px;
}

.logo span {
  font-size: 20px;
  opacity: 0.8;
}

nav ul {
  list-style: none;
  margin-top: 40px;
}

nav ul li {
  margin: 10px 0;
}

nav ul li a {
  font-size: 28px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

nav ul li a:hover {
  color: #ffdd00;
}

.featured-art {
  position: absolute;
  top: 50%;
  right: 200px;
  transform: translateY(-50%);
  z-index: 2;
  text-align: center;
}

.featured-label {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.featured-image img {
  max-width: 500px;
  max-height: 80vh;
  border-radius: 12px;
  transition: transform 0.3s;
}

.featured-image img:hover {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .left-content {
    left: 30px;
  }
  .featured-art {
    right: 30px;
  }
}

@media (max-width: 768px) {
  .left-content,
  .featured-art {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    text-align: center;
    padding: 20px;
  }
  
  .left-content {
    margin-bottom: 40px;
  }
  
  nav ul li a {
    font-size: 20px;
  }
  
  .featured-image img {
    max-width: 80%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .logo h1 {
    font-size: 36px;
  }
  .logo span {
    font-size: 16px;
  }
  nav ul li a {
    font-size: 18px;
  }
  .featured-label {
    font-size: 22px;
  }
}
