/* Art Program Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #fb923c 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
  }
  
  .page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("/placeholder.svg?height=400&width=1200&text=Art+Background") center / cover;
    opacity: 0.1;
    z-index: 1;
  }
  
  .header-content {
    position: relative;
    z-index: 2;
    text-align: center;
  }
  
  .breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
  }
  
  .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .breadcrumb a:hover {
    color: white;
  }
  
  .separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.6);
  }
  
  .current {
    color: white;
    font-weight: 500;
  }
  
  .page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .page-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Art Overview */
  .art-overview {
    padding: 80px 0;
    background: #f8fafc;
  }
  
  .overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .overview-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 25px;
  }
  
  .overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 20px;
  }
  
  .highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .highlight-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
  }
  
  .highlight-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
  }
  
  .highlight-item p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
  }
  
  /* Art Programs */
  .art-programs {
    padding: 80px 0;
    background: white;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
  }
  
  .section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
  }
  
  .program-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }
  
  .program-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
  }
  
  .program-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .program-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #6b7280;
  }
  
  .program-meta i {
    color: #f59e0b;
  }
  
  .program-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 25px;
  }
  
  .program-features h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
  }
  
  .program-features ul {
    list-style: none;
    padding: 0;
  }
  
  .program-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #4b5563;
    font-size: 0.95rem;
  }
  
  .program-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: bold;
  }
  
  /* Art Facilities */
  .art-facilities {
    padding: 80px 0;
    background: #f8fafc;
  }
  
  .facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .facility-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }
  
  .facility-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
  }
  
  .facility-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
  }
  
  .facility-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
  }
  
  /* Art Faculty */
  .art-faculty {
    padding: 80px 0;
    background: white;
  }
  
  .faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .faculty-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .faculty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }
  
  .faculty-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f59e0b;
  }
  
  .faculty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .faculty-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
  }
  
  .designation {
    font-size: 1rem;
    color: #f59e0b;
    font-weight: 500;
    margin-bottom: 20px;
  }
  
  .faculty-details {
    text-align: left;
  }
  
  .detail-item {
    margin-bottom: 12px;
    font-size: 0.9rem;
  }
  
  .detail-item strong {
    color: #374151;
    display: inline-block;
    width: 100px;
  }
  
  .detail-item span {
    color: #6b7280;
  }
  
  /* Student Achievements */
  .student-achievements {
    padding: 80px 0;
    background: #f8fafc;
  }
  
  .achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .achievement-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }
  
  .achievement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 28px;
  }
  
  .achievement-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
  }
  
  .achievement-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 20px;
  }
  
  .achievement-year {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
  }
  
  /* Recent Events */
  .recent-events {
    padding: 80px 0;
    background: white;
  }
  
  .events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
  }
  
  .event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }
  
  .event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
  }
  
  .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .event-card:hover .event-image img {
    transform: scale(1.05);
  }
  
  .event-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    min-width: 60px;
  }
  
  .event-date .day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
  }
  
  .event-date .month {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
  }
  
  .event-content {
    padding: 25px;
  }
  
  .event-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
  }
  
  .event-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 20px;
  }
  
  .read-more {
    color: #f59e0b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
  }
  
  .read-more:hover {
    color: #f97316;
  }
  
  /* Enrollment Section */
  .enrollment-section {
    padding: 80px 0;
    background: var(--accent-color);
    color: white;
  }
  
  .enrollment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .enrollment-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
  }
  
  .enrollment-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
  }
  
  .enrollment-features {
    display: grid;
    gap: 15px;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
  }
  
  .feature-item i {
    color: #fef3c7;
    font-size: 1.1rem;
  }
  
  .cta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .cta-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .cta-card p {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.9;
  }
  
  .cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
  }
  
  .btn {
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }
  
  .btn-primary {
    background: white;
    color: #f59e0b;
  }
  
  .btn-primary:hover {
    background: #f9fafb;
    transform: translateY(-2px);
  }
  
  .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
  }
  
  .btn-secondary:hover {
    background: white;
    color: #f59e0b;
  }
  
  .contact-info {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  .contact-info p {
    margin: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .page-title {
      font-size: 2.5rem;
    }
  
    .page-subtitle {
      font-size: 1.1rem;
    }
  
    .overview-content,
    .enrollment-content {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  
    .highlight-grid {
      grid-template-columns: 1fr;
    }
  
    .programs-grid,
    .facilities-grid,
    .faculty-grid,
    .achievements-grid,
    .events-grid {
      grid-template-columns: 1fr;
    }
  
    .cta-buttons {
      flex-direction: column;
      align-items: center;
    }
  
    .btn {
      width: 100%;
      max-width: 200px;
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    .page-header {
      padding: 60px 0 40px;
    }
  
    .page-title {
      font-size: 2rem;
    }
  
    .section-header h2 {
      font-size: 2rem;
    }
  
    .overview-text h2,
    .enrollment-text h2 {
      font-size: 2rem;
    }
  
    .art-overview,
    .art-programs,
    .art-facilities,
    .art-faculty,
    .student-achievements,
    .recent-events,
    .enrollment-section {
      padding: 60px 0;
    }
  }
  