/* === components.css === */

/* Buttons */
.btn {
    display: inline-block;
    background: #f5d76e;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    background: #fff1a6;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
  }
  
  /* Headings */
  h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    text-shadow: 0 0 6px rgba(255, 215, 0, 0.3);
  }
  
  /* Hero Section */
  .hero {
    padding: 4rem 0;
    text-align: center;
  }
  
  .hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
  }
  
  .hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
  }
  
  /* Services */
  .services h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #ffd700;
  }
  
  .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .service-card {
    background: #0f0f0f;
    border: 1px solid #222;
    padding: 2rem;
    border-radius: 12px;
    box-shadow:
      inset 0 0 10px rgba(255, 215, 0, 0.05),
      0 10px 30px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    text-align: center;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  }
  
  .service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #f5d76e;
  }
  
  /* About Page */
  .about {
    padding: 4rem 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
  }
  
  .about h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #ffd700;
  }
  
  .about p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #fefefe;
    line-height: 1.9;
  }
  
  .about blockquote {
    font-style: italic;
    margin-top: 2.5rem;
    padding-left: 1.5rem;
    border-left: 4px solid #f5d76e;
    color: #ccc;
  }
  
  /* Gallery */
  .gallery {
    padding: 4rem 0;
    text-align: center;
  }
  
  .gallery h2 {
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 1rem;
  }
  
  .gallery-message {
    color: #bbb;
    font-size: 1.1rem;
    margin-top: 2rem;
    font-style: italic;
  }
  
  /* Blog */
  .blog {
    padding: 4rem 0;
    text-align: center;
  }
  
  .blog h2 {
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 1rem;
  }
  
  .blog-message {
    color: #bbb;
    font-size: 1.1rem;
    margin-top: 2rem;
    font-style: italic;
  }
  
  /* Contact Page */
  .contact {
    padding: 4rem 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  .contact h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #ffd700;
  }
  
  .contact-message {
    font-size: 1.1rem;
    color: #bbb;
    margin-bottom: 2rem;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: auto;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  @media (min-width: 600px) {
    .form-group {
      flex-direction: row;
      gap: 1.5rem;
    }
  
    .form-group input {
      width: 100%;
    }
  }
  