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

body {
  font-family: 'Georgia', serif;
  line-height: 1.6;
  color: #333;
  background-color: #fdfcf8;
}

header {
  background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.logo {
  font-size: 3rem;
  font-weight: bold;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.tagline {
  font-size: 1.2rem;
  color: #444;
  font-style: italic;
  margin-bottom: 1rem;
}

.contact-header {
  background-color: rgba(0,0,0,0.8);
  color: white;
  padding: 0.8rem;
  border-radius: 10px;
  display: inline-block;
  margin-top: 1rem;
}

.contact-header strong {
  color: #ffd700;
}

nav {
  background-color: #2c2c2c;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

nav li {
  margin: 0 1rem;
}
nav a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: block;
}

nav a:hover {
  background-color: #ffd700;
  color: #2c2c2c;
  transform: translateY(-2px);
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
  padding: 4rem 1rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,215,0,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,179,71,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,215,0,0.1)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,179,71,0.1)"/></svg>') repeat;
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(45, 45, 45, 0.9);
  padding: 3rem 2rem;
  border-radius: 15px;
  border: 3px solid #ffd700;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.cta-button {
  background: linear-gradient(135deg, #ffd700, #ffb347);
  color: #2c2c2c;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.section h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #2c2c2c;
  margin-bottom: 3rem;
  position: relative;
}

.section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ffd700, #ffb347);
  margin: 1rem auto;
  border-radius: 2px;
}

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

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #ffd700;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.service-card h3 {
  color: #2c2c2c;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.service-card ul {
  list-style: none;
  padding-left: 0;
}

.service-card li {
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.service-card li::before {
  content: '🌸';
  position: absolute;
  left: 0;
}

.service-card li a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-card li a:hover {
  color: #ffd700;
  font-weight: bold;
  padding-left: 0.5rem;
}
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-preview img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-preview img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.important-info {
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
  border-left: 5px solid #ffb347;
}

.important-info h3 {
  color: #856404;
  margin-bottom: 1rem;
}

.important-info ul {
  list-style: none;
  padding-left: 0;
}

.important-info li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

.important-info li::before {
  content: '⚠️';
  position: absolute;
  left: 0;
}

.delivery-info {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin: 2rem 0;
}

.delivery-info h3 {
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.delivery-zone {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  border: 2px solid #ffd700;
}

.press-section {
  background: #f8f9fa;
  padding: 3rem 1rem;
  margin: 2rem 0;
  border-radius: 15px;
  text-align: center;
}

.press-section h3 {
  color: #2c2c2c;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.press-section a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border: 2px solid #ffd700;
  border-radius: 25px;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 1rem;
}

.press-section a:hover {
  background-color: #ffd700;
  color: #2c2c2c;
}

.social-section {
  background: #2c2c2c;
  color: white;
  padding: 3rem 1rem;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.social-links a {
  color: #ffd700;
  font-size: 1.5rem;
  text-decoration: none;
  padding: 1rem;
  border: 2px solid #ffd700;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #ffd700;
  color: #2c2c2c;
  transform: scale(1.1);
}

footer {
  background-color: #1a1a1a;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

@media (max-width: 768px) {
  .logo {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

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

  nav li {
    margin: 0.5rem 0;
  }

  .social-links {
    flex-wrap: wrap;
  }
}