/* ========== General Reset ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fefdfb;
    color: #222;
    line-height: 1.6;
  }
  
  /* ========== Navigation ========== */
  header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 18px;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1250px;
    margin: auto;
  }
  
  .logo a {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
  }
  
  .nav-links li a:hover {
    color: #d4af37;
  }
  
  /* ========== Hero Section ========== */
  .hero {
    padding: 100px 20px 60px;
    text-align: center;
    background-color: #fffdf7;
  }
  
  .main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .tagline {
    font-size: 1.2rem;
    color: #666;
  }
  
  /* ========== Workshops ========== */
  .programs, .why-unique, .contact {
    padding: 80px 20px;
    text-align: center;
  }
  
  .programs h2, .why-unique h2, .contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  
  .workshop {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: left;
  }
  
  .workshop h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  
  .workshop ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #555;
  }
  
  .why-unique ul {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    list-style-type: square;
    color: #444;
    padding-left: 20px;
  }

  .dropdown-toggle {
    font-size: 1.3rem;
    background: none;
    border: none;
    color: #131212;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px auto;
  }
  .paintings-gallery {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
  }
  .paintings-gallery.show {
    display: flex;
  }
  .painting-card {
    width: 200px;
    text-align: center;
  }
  .painting-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .painting-card p {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #444;
  }
  
  .dropdown-toggle i {
    transition: transform 0.3s ease;
  }
  
  .dropdown-toggle i.rotate {
    transform: rotate(180deg);
  }
  
  /* ========== Contact ========== */
  .contact-info p {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  .contact-info a {
    color: #d4af37;
    text-decoration: none;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }
  
  .social-icons a {
    font-size: 1.6rem;
    color: #222;
    margin: 0 10px;
    transition: color 0.3s ease;
  }
  
  .social-icons a:hover {
    color: #d4af37;
  }
  
  /* ========== Footer ========== */
  footer {
    padding: 30px 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #999;
  }
  