/* blog.css - სტილები ჩამოსასხმელი ღვინო რქაწითელის გვერდისთვის */

/* ძირითადი ფერები */
:root {
  --primary-color: #8b0000;
  --secondary-color: #d4af37;
  --bg-light: #f9f5ea;
  --bg-dark: #1a1a1a;
  --text-light: #f9f5ea;
  --text-dark: #333;
  --accent-color: #a67c52;
}

/* ანიმაციები */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* გვერდის ძირითადი სტილები */
body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-family: 'FiraGO', 'BPG Arial', sans-serif;
  overflow-x: hidden;
}

/* რქაწითელის დეტალური ინფორმაციის სექცია */
.wine-details-section {
  padding: 0;
  background: linear-gradient(135deg, #f9f5ea 0%, #e9e1d0 100%);
  position: relative;
  overflow: hidden;
}

.wine-details-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/images/wine-pattern.png');
  background-repeat: repeat;
  opacity: 0.05;
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}

/* Hero სექცია */
.wine-hero {
  height: 60vh;
  min-height: 500px;
  background-image: url('/images/winestoretasting2.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 50px;
}

.wine-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  animation: fadeInDown 1s ease-out;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  animation: fadeIn 1.2s ease-out;
}

/* კონტენტის სტილები */
.wine-details-content {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 50px;
  padding: 50px 30px;
  max-width: 1230px;
  margin: 0 auto;
  min-height: auto;
  position: relative;
}

/* wine-info გაუმჯობესება */
.wine-info {
  animation: slideInLeft 1s ease-out;
  position: relative;
  z-index: 1;
  max-width: 100%;
  padding-right: 30px;
}

/* სურათის კონტეინერი */
.wine-image-container {
  position: relative;
  height: 100%;
  grid-column: 2;
  margin-left: -50px;
  max-width: 100%;
}

/* სურათების გალერეა */
.wine-image-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: slideInRight 1s ease-out;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 0 10px;
}

.wine-image-item {
  position: relative;
  transition: transform 0.3s ease;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.wine-image-item:hover {
  transform: translateY(-3px);
}

.wine-image-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  display: block;
}

.wine-image-item:hover img {
  transform: scale(1.05);
}

/* სათაურები და ტექსტი */
.wine-details-section h2 {
  font-family: 'FiraGO', 'BPG Nino Mtavruli', sans-serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.wine-details-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
}

.wine-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 30px;
}

/* მახასიათებლების სტილები */
.wine-characteristics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.characteristic {
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid var(--secondary-color);
}

.characteristic:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.characteristic h3 {
  font-family: 'FiraGO', 'BPG Nino Mtavruli', sans-serif;
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
}

.characteristic p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

/* ისტორიის სტილები */
.wine-story {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.wine-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/images/wine-texture.png');
  background-size: cover;
  opacity: 0.1;
}

.wine-story h3 {
  font-family: 'FiraGO', 'BPG Nino Mtavruli', sans-serif;
  font-size: 1.6rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  position: relative;
}

.wine-story p {
  font-size: 1.1rem;
  line-height: 1.8;
  position: relative;
}

/* ფასების სტილები */
.price-section {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.price-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-image: url('/images/wine-icon.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.1;
}

.price-section h3 {
  font-family: 'FiraGO', 'BPG Nino Mtavruli', sans-serif;
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
}

.price-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.price-option {
  background: linear-gradient(135deg, var(--primary-color) 0%, #c62828 100%);
  color: white;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.price-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
  animation: pulse 1.5s infinite;
}

.price-option .volume {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.price-option .price {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--secondary-color);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.price-note {
  font-size: 0.9rem;
  color: #777;
  text-align: center;
  font-style: italic;
  margin-top: 15px;
}

/* CTA სექციის სტილები */
.cta-section {
  background: linear-gradient(135deg, var(--accent-color) 0%, #8b5a2b 100%);
  color: white;
  border-radius: 10px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-section h3 {
  font-family: 'FiraGO', 'BPG Nino Mtavruli', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: white;
}

.cta-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.primary-btn {
  background-color: var(--secondary-color);
  color: var(--bg-dark);
}

.primary-btn:hover {
  background-color: #e6c14f;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.secondary-btn {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.secondary-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ღვინის ტეგების სტილები - ამოღებულია */

/* რესპონსიული დიზაინი */
@media (max-width: 1350px) {
  .wine-details-content {
    grid-template-columns: 50% 50%;
  }
}

@media (max-width: 992px) {
  .wine-details-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .wine-info {
    padding-right: 0;
  }
  
  .wine-image-container {
    grid-column: 1;
    height: auto;
    margin-top: 30px;
  }
  
  .wine-image-gallery {
    flex-direction: row;
    gap: 15px;
    padding: 0 5px;
  }
  
  .wine-image-item {
    flex: 1;
  }
  
  .wine-image-item img {
    height: 180px;
  }
  
  .wine-characteristics {
    grid-template-columns: 1fr;
  }
  
  .price-options {
    grid-template-columns: 1fr;
  }
  
  .wine-hero {
    height: 50vh;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .wine-image-gallery {
    flex-direction: column;
    gap: 15px;
    padding: 0;
  }
  
  .wine-image-item img {
    height: 150px;
  }
  
  .wine-hero {
    height: 40vh;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .wine-characteristics {
    grid-template-columns: 1fr;
  }
  
  .price-options {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .wine-details-section h2 {
    font-size: 1.8rem;
  }
  
  .wine-intro {
    font-size: 1rem;
  }
  
  .characteristic h3 {
    font-size: 1.2rem;
  }
  
  .price-option .volume {
    font-size: 1.1rem;
  }
  
  .price-option .price {
    font-size: 1.6rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
}

/* ფუტერის კონტეინერი */
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}