/* Base Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff0f3;
  scroll-behavior: smooth;
}

/* Language Switcher */
.language-switcher {
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 1001; /* higher than header */
  background-color: #fff0f3;
  padding: 5px 8px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.language-switcher .flag {
  width: 32px;
  height: 32px;
  margin-left: 6px;
  cursor: pointer;
  object-fit: cover;
}

/* Header */
header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #fff0f3;
  padding: 10px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
  min-height: 60px;
  flex-wrap: nowrap;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo .name {
  font-family: "Amatic SC", cursive;
  font-size: 2.5em;
  color: #333;
}

.logo .title {
  font-family: Arial, sans-serif;
  font-style: italic;
  font-size: 1em;
  color: #555;
  margin-top: 2px;
  position: relative;
  left: 50px;
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav a {
  text-decoration: none;
  color: #333;
  font-size: 1em;
  padding: 5px 10px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #c71585;
}

/* Home Section */
#home {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  background-color: #fff0f3;
  flex-wrap: wrap;
}

.home-intro {
  font-size: 5em;
  font-family: "Amatic SC", cursive;
  text-align: center;
}

.home-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-image img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  max-width: 100%;
  height: auto;
}

/* About Section */
#about {
  padding: 1px;
  background-color: #fff0f3;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  padding: 20px;
  text-align: left;
}

.about-text h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #333;
}

.about-text p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.about-image img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Sections */
section {
  padding: 80px 20px;
  text-align: center;
}

/* Contact */
.contact-text {
  text-align: center;
  margin-bottom: 30px;
  font-size: 16px;
  color: #555;
}

.contact-text p {
  margin: 10px 0;
}

.contact-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}

.contact-icons a i {
  font-size: 40px;
  color: #333;
  transition: color 0.3s ease, transform 0.3s ease;
}

.contact-icons a i:hover {
  color: #c71585;
  transform: scale(1.2);
}

#contact .copyright {
  margin-top: 20px;
  font-size: 14px;
  color: #777;
  text-align: center;
}

/* Portfolio */
.portfolio-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.portfolio-item,
.portfolio-item-2,
.portfolio-item-3 {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.portfolio-item {
  width: 250px;
  height: 350px;
}

.portfolio-item-2 {
  width: 248px;
  height: 400px;
}

.portfolio-item-3 {
  width: 600px;
  height: 400px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-title {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 1.1em;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 5px;
}

.portfolio-detail {
  padding: 80px 20px;
  text-align: center;
}

.portfolio-detail h1 {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 20px;
}

.portfolio-detail p {
  font-size: 1.2em;
  color: #666;
  max-width: 800px;
  margin: 0 auto 40px;
}

.portfolio-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.portfolio-images-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Prices */
#prices {
  padding: 80px 20px;
}

.price-category {
  margin-bottom: 60px;
}

.price-category h3 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #555;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1em;
  color: #444;
}

.service-item:last-child {
  border-bottom: none;
}

/* Collaborations */
#collaborations {
  padding: 50px 0;
  text-align: center;
}

#collaborations h2 {
  margin-bottom: 30px;
}

.collaboration-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slide-track {
  display: flex;
  width: calc(250px * 20);
  animation: scroll 60s linear infinite;
}

.slide-track img {
  height: 100px;
  width: auto;
  margin: 0 30px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Headings */
h1, h2 {
  color: #333;
}

/* Responsive Styles */
@media (max-width: 768px) {
  header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    min-height: 50px;
  }

  .logo .name {
    font-size: 1.5em;
  }

  .logo .title {
    font-size: 0.9em;
    left: 0;
  }

  nav ul {
    flex-direction: row;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
  }

  nav a {
    font-size: 0.9em;
    padding: 4px 8px;
  }

  .home-intro {
    font-size: 3em;
  }

  .home-image img,
  .about-image img {
    width: 250px;
    height: 250px;
  }

  .service-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .slide-track img {
    height: 60px;
    margin: 0 15px;
  }
}
