/* Общие стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
  color: #333;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #2E8B57;
}

/* Header/Hero */
.hero {
  height: 100vh;
  background: url('../images/banner-1.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  background: rgba(46, 139, 87, 0.7);
  padding: 2rem;
  border-radius: 10px;
  color: white;
  width: 100%;
  max-width: 800px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: white;
}

/* Центрирование логотипа */
.logo-center {
  margin: 1rem 0;
}

.logo {
  width: 200px;
  height: auto;
  border-radius: 10px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: white;
}

/* Buttons */
.btn {
  display: inline-block;
  background: #2E8B57;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #228B22;
  transform: translateY(-2px);
}

.btn-small {
  display: inline-block;
  background: #2E8B57;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-small:hover {
  background: #228B22;
  transform: translateY(-2px);
}

/* Slider */
.slider-section {
  padding: 4rem 2rem;
  background: white;
  text-align: center;
}

.slider-section h2 {
  font-size: 2.5rem;
  color: #2E8B57;
  margin-bottom: 2rem;
}

.slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.slide img {
  width: calc(33.333% - 1rem);
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.prev-btn, .next-btn {
  background: rgba(46, 139, 87, 0.7);
  color: white;
  border: none;
  padding: 1rem;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev-btn:hover, .next-btn:hover {
  background: #2E8B57;
}

/* International Sales */
.international-sales {
  padding: 3rem 2rem;
  background: #2E8B57;
  color: white;
  text-align: center;
}

.international-sales h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.international-sales p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.flags {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 2rem;
  flex-wrap: wrap;
}

/* Collezioni Iconiche */
.iconic-collections {
  padding: 4rem 2rem;
  text-align: center;
  background: #f0f8f0;
}

.iconic-collections h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2E8B57;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.collection-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.collection-item:hover {
  transform: translateY(-10px);
}

.collection-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.collection-item h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #2E8B57;
}

.collection-item.blue h3 {
  color: #1E90FF;
}

.collection-item.green h3 {
  color: #228B22;
}

.collection-item.red h3 {
  color: #DC143C;
}

.collection-item p {
  margin-bottom: 1.5rem;
  color: #666;
}

/* I Nostri Gioielli */
.our-jewels {
  padding: 4rem 2rem;
  background: white;
  text-align: center;
}

.our-jewels h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2E8B57;
}

.jewels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.jewel-card {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.jewel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.jewel-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.jewel-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #2E8B57;
}

.price {
  font-weight: bold;
  color: #2E8B57;
  font-size: 1.1rem;
}

/* About Section */
.about {
  padding: 4rem 2rem;
  background: #f0f8f0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2E8B57;
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.signature {
  font-style: italic;
  color: #2E8B57;
  margin-top: 2rem;
}

/* Contact Form Section */
.contact-form-section {
  padding: 4rem 2rem;
  background: white;
  text-align: center;
}

.contact-form-section h2 {
  font-size: 2.5rem;
  color: #2E8B57;
  margin-bottom: 1rem;
}

.contact-form-section p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #2E8B57;
  border-radius: 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #228B22;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 500;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Footer */
footer {
  background: #2E8B57;
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .logo {
    width: 150px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .about-image {
    order: 2;
  }
  
  .about-content {
    order: 1;
  }
  
  .slide img {
    width: 100%;
    height: 300px;
  }
  
  .collection-grid,
  .jewels-grid {
    grid-template-columns: 1fr;
  }
}