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

html {
  overflow-x: hidden;
}

body {
  background-color: #f6f8f9;
  font-family: 'Lora', serif;
  color: #222;
  overflow-x: hidden;
  min-height: 100vh;
}

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

/* --- Header --- */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
  background: transparent;
  position: relative;
}

.social-icons {
  position: absolute;
  left: 2rem;
  top: 1.5rem;
  display: flex;
  gap: 1rem;
}

.social-icons img {
  width: 18px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.social-icons img:hover {
  opacity: 1;
}

.language-switcher {
  position: absolute;
  right: 2rem;
  top: 1.5rem;
  display: flex;
  gap: 0.5rem;
}

.lang-btn {
  background: transparent;
  border: none;
  color: #666;
  padding: 0;
  font-size: 0.85rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.lang-btn:hover {
  color: #333;
}

.lang-btn.active {
  color: #333;
  font-weight: 700;
}

.signature {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #d35400;
}

/* --- Mobile Header --- */
@media (max-width: 768px) {
  header {
    padding: 1rem 1rem;
  }

  .social-icons {
    position: static;
    justify-content: center;
    margin-bottom: 1rem;
    gap: 1.5rem;
  }

  .language-switcher {
    position: static;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .signature {
    display: none;
  }

  .nav-menu {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    text-align: center;
  }

  .nav-menu a {
    font-size: 0.85rem;
    white-space: nowrap;
  }
}

/* --- Hero Section --- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  padding: 2rem 8rem 6rem 8rem;
  gap: 3rem;
  position: relative;
}

/* background name text */
.hero::before {
  content: "Fatmanur Savruk";
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 10rem;
  font-family: 'Playfair Display', serif;
  color: rgba(0,0,0,0.03);
  pointer-events: none;
  user-select: none;
}

.bio h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.bio p {
  color: #555;
  font-size: 1.1rem;
}

.artwork img {
  width: 100%;
  border: 10px solid #111;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.text p {
  line-height: 1.7;
  color: #555;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.btn {
  text-decoration: none;
  background-color: #d35400;
  color: #fff;
  padding: 0.7rem 1.6rem;
  border-radius: 3px;
  font-weight: 500;
  transition: background 0.2s ease;
}

.btn:hover {
  background-color: #b84300;
}

/* --- Mobile Hero --- */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 1rem 1.5rem 3rem 1.5rem;
    gap: 2rem;
    text-align: center;
  }

  .hero::before {
    font-size: 3.5rem;
    top: 10%;
    opacity: 0.5;
  }

  .bio h2 {
    font-size: 2.5rem;
  }

  .bio p {
    font-size: 1rem;
  }

  .artwork img {
    border: 5px solid #111;
    max-width: 100%;
  }

  .text p {
    font-size: 0.95rem;
  }
}

/* --- Footer --- */
footer {
  text-align: center;
  padding: 3rem 1rem;
  font-size: 0.9rem;
  color: #777;
}


/* --- About Page --- */
.about {
  padding: 6rem 8rem;
  background-color: #f6f8f9;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  object-fit: cover;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1rem;
  text-align: justify;
}

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 3rem 1.5rem;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 0.95rem;
    text-align: left;
  }
}

/* --- Artwork Gallery --- */
.gallery {
  padding: 6rem 8rem;
  text-align: center;
  background-color: #f6f8f9;
}

.gallery h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.gallery-intro {
  font-size: 1rem;
  color: #555;
  margin-bottom: 3rem;
}

.gallery-grid {
  column-count: 4;
  column-gap: 2.5rem;
}

.art-item {
  break-inside: avoid;
  margin-bottom: 2.5rem;
  text-align: center;
  transition: transform 0.25s ease;
}

.art-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.art-item:hover img {
  transform: scale(1.03);
  box-shadow: 0 25px 40px rgba(0,0,0,0.15);
}

.art-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #222;
}

.art-item p {
  font-size: 0.95rem;
  color: #666;
  margin-top: 0.3rem;
}

@media (max-width: 1200px) {
  .gallery-grid {
    column-count: 3;
  }
}

@media (max-width: 900px) {
  .gallery {
    padding: 4rem 2rem;
  }

  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 768px) {
  .gallery {
    padding: 3rem 1.5rem;
  }

  .gallery h2 {
    font-size: 2rem;
  }

  .gallery-intro {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .gallery-grid {
    column-count: 1;
    column-gap: 0;
  }

  .art-item {
    margin-bottom: 2rem;
  }

  .art-item h3 {
    font-size: 1.1rem;
  }

  .art-item p {
    font-size: 0.9rem;
  }
}

/* --- Exhibitions Page --- */
.exhibitions {
  padding: 6rem 8rem;
  background-color: #f6f8f9;
}

.exhibitions h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.exhibitions-intro {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 4rem;
}

.exhibitions-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.exhibition-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  padding: 2rem;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  transition: box-shadow 0.3s ease;
}

.exhibition-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.exhibition-year {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #d35400;
  text-align: center;
}

.exhibition-details h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.exhibition-type {
  font-weight: 600;
  color: #d35400;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.exhibition-location,
.exhibition-date {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.3rem;
}

.exhibition-description {
  margin-top: 1rem;
  line-height: 1.7;
  color: #444;
}

@media (max-width: 900px) {
  .exhibitions {
    padding: 4rem 2rem;
  }
  
  .exhibition-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .exhibition-year {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .exhibitions {
    padding: 3rem 1.5rem;
  }

  .exhibitions h2 {
    font-size: 2rem;
  }

  .exhibitions-intro {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
  }

  .exhibition-card {
    padding: 1.5rem;
  }

  .exhibition-year {
    font-size: 1.5rem;
  }

  .exhibition-details h3 {
    font-size: 1.2rem;
  }

  .exhibition-type,
  .exhibition-location,
  .exhibition-date {
    font-size: 0.9rem;
  }

  .exhibition-description {
    font-size: 0.95rem;
  }
}

/* --- Shop Page --- */
.shop {
  padding: 6rem 8rem;
  background-color: #f6f8f9;
}

.shop h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.shop-intro {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 4rem;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.shop-item {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.shop-image {
  position: relative;
  overflow: hidden;
}

.shop-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.shop-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.shop-item:hover .shop-overlay {
  opacity: 1;
}

.shop-btn {
  background-color: #fff;
  color: #222;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 2px;
  transition: background-color 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.shop-btn:hover {
  background-color: #d35400;
  color: #fff;
}

.shop-info {
  padding: 1.5rem;
}

.shop-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.shop-medium,
.shop-size {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.3rem;
}

.shop-price {
  font-weight: 600;
  color: #d35400;
  margin-top: 0.8rem;
  font-size: 1rem;
}

.shop-notice {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  text-align: center;
}

.shop-notice p {
  line-height: 1.7;
  color: #444;
}

@media (max-width: 900px) {
  .shop {
    padding: 4rem 2rem;
  }
}

@media (max-width: 768px) {
  .shop {
    padding: 3rem 1.5rem;
  }

  .shop h2 {
    font-size: 2rem;
  }

  .shop-intro {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
  }

  .shop-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .shop-image img {
    height: 300px;
  }

  .shop-info h3 {
    font-size: 1.2rem;
  }

  .shop-notice {
    padding: 1.5rem;
  }

  .shop-notice p {
    font-size: 0.95rem;
  }
}

/* --- Contact Page --- */
.contact {
  padding: 6rem 8rem;
  background-color: #f6f8f9;
}

.contact h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.contact-intro {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 3rem;
}

.contact-message {
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 3rem;
  background-color: #fff;
  border-left: 4px solid #d35400;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-radius: 2px;
}

.contact-message p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #444;
  font-style: italic;
  text-align: center;
  margin: 0;
}

.contact-signature {
  font-style: normal !important;
  font-weight: 600;
  color: #d35400;
  margin-top: 1.5rem !important;
  font-size: 1rem !important;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-details {
  background-color: #fff;
  padding: 2.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
}

.contact-details h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #222;
}

.contact-item {
  margin-bottom: 1.8rem;
}

.contact-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #666;
  line-height: 1.6;
}

.contact-item a {
  color: #d35400;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: #b84300;
}

.contact-social {
  display: flex;
  gap: 1.5rem;
}

.contact-social a {
  color: #d35400;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-social a:hover {
  color: #b84300;
}

@media (max-width: 900px) {
  .contact {
    padding: 4rem 2rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 3rem 1.5rem;
  }

  .contact h2 {
    font-size: 2rem;
  }

  .contact-intro {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .contact-message {
    padding: 2rem 1.5rem;
    margin-bottom: 3rem;
  }

  .contact-message p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .contact-signature {
    font-size: 0.9rem !important;
    margin-top: 1rem !important;
  }

  .contact-details {
    padding: 1.5rem;
  }

  .contact-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .contact-item h4 {
    font-size: 0.95rem;
  }

  .contact-item p {
    font-size: 0.9rem;
  }

  .contact-social {
    gap: 1rem;
  }
}