:root {
  --wedding-pink: #ffd1dc;
  --wedding-gold: #d4af37;
  --wedding-purple: #e6e6fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #fff9fb;
  color: #333;
  overflow-x: hidden;
}

/* Header Styles */
header {
  background: linear-gradient(135deg, var(--wedding-pink), var(--wedding-purple));
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;
  opacity: 0.3;
  z-index: 0;
}

header h1 {
  position: relative;
  z-index: 1;
  font-size: 2.5rem;
  color: #8b4513;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease;
}

.price-container {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.9);
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  margin: 1rem 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  animation: bounce 2s infinite;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 1.2rem;
}

.current-price {
  color: #e74c3c;
  font-size: 1.8rem;
  font-weight: bold;
}

.tagline {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  animation: fadeIn 1.5s ease;
}

.category {
  text-align: center;
  margin: 1rem 0;
  font-style: italic;
  color: #666;
}

.description {
  background: white;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 1000px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.description::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--wedding-pink), var(--wedding-gold), var(--wedding-purple));
}

.description h2 {
  color: #8b4513;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.description h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50%;
  height: 3px;
  background: var(--wedding-gold);
}

.description p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature {
  background: rgba(255, 209, 220, 0.3);
  padding: 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  background: rgba(255, 209, 220, 0.5);
}

.feature i {
  color: var(--wedding-gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}

.cta-button {
  display: block;
  width: 80%;
  max-width: 300px;
  margin: 2rem auto;
  padding: 1rem;
  background: linear-gradient(45deg, var(--wedding-gold), #f1c40f);
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  border: none;
  cursor: pointer;
  animation: pulse 2s infinite;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(212, 175, 55, 0.6);
}

/* Footer Styles */
footer {
  background: linear-gradient(135deg, var(--wedding-purple), var(--wedding-pink));
  padding: 2rem 1rem 1rem;
  text-align: center;
  color: #555;
  position: relative;
  overflow: hidden;
}

.footer-divider {
  height: 30px;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.ribbon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  display: flex;
  justify-content: center;
}

.ribbon {
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, var(--wedding-pink) 0%, var(--wedding-gold) 50%, var(--wedding-pink) 100%);
  transform: rotate(-2deg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0;
  font-size: 1.8rem;
  color: var(--wedding-gold);
  animation: floatIcons 6s ease-in-out infinite;
}

.footer-icons i {
  text-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.footer-icons i:hover {
  transform: translateY(-5px) scale(1.2);
  color: #e74c3c;
}

.footer-content {
  text-align: center;
  padding: 0 1rem 2rem;
}

.footer-content h3 {
  font-size: 1.5rem;
  color: #8b4513;
  margin-bottom: 1rem;
}

.wishes {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.magic-text {
  background: linear-gradient(to right, var(--wedding-gold), #e84393);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
  animation: shine 3s infinite;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.social-links a {
  color: var(--wedding-gold);
  background: rgba(255,255,255,0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--wedding-gold);
  color: white;
  transform: translateY(-3px);
}

.copyright {
  font-size: 0.9rem;
  color: #666;
  margin-top: 1rem;
}

.brand-name {
  font-weight: bold;
  color: var(--wedding-gold);
}

/* Navigation Styles */
nav {
  background-color: #4a2c2a;
  padding: 1rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: bold;
}

.burger {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1001;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes floatIcons {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes shine {
  0% { opacity: 0.8; }
  50% { opacity: 1; text-shadow: 0 0 10px rgba(232, 67, 147, 0.5); }
  100% { opacity: 0.8; }
}

/* Responsive Styles */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.6rem;
    padding-top: 2rem;
  }
  
  .price-container {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .features {
    grid-template-columns: 1fr;
  }
  
  .footer-icons {
    gap: 1rem;
    font-size: 1.5rem;
  }

  /* Mobile Navigation */
  nav {
    display: none;
    flex-direction: column;
    background-color: #4a2c2a;
    position: absolute;
    top: 70px;
    width: 100%;
    left: 0;
    padding: 1rem 0;
  }

  nav.active {
    display: flex;
  }

  nav a {
    margin: 0.7rem 0;
    font-size: 1.2rem;
  }

  .burger {
    display: block;
  }

  .quantity-selector {
    flex-direction: column;
    gap: 10px;
  }

  .cta-button {
    width: 90%;
  }

  .tagline {
    font-size: 1rem;
  }
}
.quantity-selector { display: none; 
}
.description {
    text-align: center; /* Κεντράρει το κείμενο */
    max-width: 800px; /* Προαιρετικό: Περιορίζει το πλάτος για καλύτερη ευαναγνωσία */
    margin: 0 auto; /* Κεντράρει το container οριζόντια */
    padding: 20px; /* Προσθέτει λίγο χώρο γύρω */
}

.description h2 {
    margin-bottom: 15px; /* Απόσταση μεταξύ τίτλου και παραγράφου */
}

.description p {
    font-size: 1.1rem; /* Προαιρετικό: Μεγαλώνει λίγο το κείμενο */
    line-height: 1.5; /* Βελτιώνει την ευαναγνωσία */
}
/* Βασικά Styling */
.wedding-website-intro {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    padding: 40px 0;
    background: #fff9f9;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-title {
    text-align: center;
    color: #d23c77;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.section-box {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.highlight-box {
    border: 2px solid #f8d7e6;
}

h2 {
    color: #d23c77;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

h3 {
    color: #e67e9f;
    font-size: 1.4rem;
}

.emoji-list {
    list-style: none;
    padding-left: 0;
}

.emoji-list li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.emoji-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d23c77;
    font-size: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-card {
    background: #fff5f9;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.cta-box {
    text-align: center;
}

.bonus-box {
    background: #fef0f7;
    border-left: 4px solid #d23c77;
    padding: 15px;
    margin: 20px 0;
}

.final-cta {
    text-align: center;
    margin-top: 40px;
}

.love-note {
    font-size: 1.2rem;
}

.tags, .custom-request {
    text-align: center;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 1.8rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
}