/* Hero */
/* Navigation styling */
            nav {
                height: 80px;
                width: 100%;
                background: rgba(245, 230, 214, 0.95);
                backdrop-filter: blur(10px);
                box-shadow: var(--shadow-sm);
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 0 var(--space-m);
                position: sticky;
                top: 0;
                z-index: 100;
            }

            .fiesta {
                width: 60px;
                height: 50px;
                object-fit: contain;
            }

            label.logo {
                color: var(--dark-color);
                font-size: 1.375rem;
                font-weight: var(--font-weight-bold);
                font-family: 'Playfair Display', Georgia, serif;
                display: flex;
                align-items: center;
                gap: var(--space-s);
            }

            nav ul {
                display: flex;
                align-items: center;
                gap: var(--space-s);
            }

            nav ul li {
                position: relative;
            }

            nav ul li a {
                color: var(--dark-color);
                font-size: var(--font-size-n);
                padding: var(--space-xs) var(--space-s);
                border: 2px solid transparent;
                text-transform: uppercase;
                border-radius: var(--border-radius-m);
                font-weight: var(--font-weight-medium);
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                letter-spacing: 0.5px;
                display: flex;
                align-items: center;
                gap: 0.5rem;
            }

            .dropdown-icon {
                font-size: 0.7rem;
                transition: transform 0.3s ease;
            }

            a.active, a:hover {
                background: var(--secondary-color);
                color: white;
                border-color: var(--secondary-color);
                transform: translateY(-2px);
                box-shadow: var(--shadow-md);
            }

            .dropdown {
                position: relative;
            }

            .dropdown-content {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                background: white;
                min-width: 280px;
                box-shadow: var(--shadow-lg);
                border-radius: var(--border-radius-s);
                z-index: 1000;
                overflow: hidden;
                border: 1px solid rgba(0, 0, 0, 0.1);
                animation: slideDown 0.3s ease;
            }

            @keyframes slideDown {
                from {
                    opacity: 0;
                    transform: translateY(-10px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .dropdown-content a {
                color: var(--dark-color);
                padding: var(--space-s) var(--space-m);
                text-decoration: none;
                display: flex;
                align-items: center;
                gap: var(--space-s);
                text-transform: none;
                font-weight: var(--font-weight-normal);
                border: none;
                border-radius: 0;
                transition: all 0.3s ease;
                background: transparent;
            }

            .dropdown-content a:hover {
                background: var(--light-pink-color);
                color: var(--primary-color);
                transform: translateX(5px);
                border-color: transparent;
            }

            .dropdown-content a i {
                color: var(--secondary-color);
                width: 16px;
            }

            .dropdown:hover .dropdown-content {
                display: block;
            }

            .dropdown:hover .dropdown-icon {
                transform: rotate(180deg);
            }

            .sidebar {
                position: fixed;
                top: 0;
                right: 0;
                height: 100vh;
                width: 360px;
                z-index: 999;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(20px);
                box-shadow: var(--shadow-lg);
                display: none;
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                padding: var(--space-xl) var(--space-l);
            }

            .sidebar li {
                width: 100%;
                margin-bottom: var(--space-s);
            }

            .sidebar a {
                width: 100%;
                padding: var(--space-s);
                border-radius: var(--border-radius-s);
            }

            .materials-symbols-outlined {
                display: none;
                font-size: 1.5rem;
                cursor: pointer;
            }

            @media (max-width: 1100px) {
                .hideonMobile {
                    display: none;
                }
                .materials-symbols-outlined {
                    display: block;
                }
            }
.news-hero {
  position: relative;
    height: 400px;
    background: linear-gradient(135deg, rgba(59, 20, 28, 0.9), rgba(243, 150, 28, 0.7)),
    url('https://raw.githubusercontent.com/ethn-boyi/fiesta-site/main/images/archievement.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    border-radius: 0 0 var(--border-radius-l) var(--border-radius-l);
    overflow: hidden;
}


.news-hero .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.news-hero .hero-text {
  position: relative;
  z-index: 1;
}
.news-hero h1 {
  font-size: 3rem;
  color: orange;
}
.news-hero p {
  font-size: 1.2rem;
}

/* Alternating Layout */
.news-main {
  width: 90%;
  margin: 60px auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.news-block {
  display: flex;
  align-items: center;
  gap: 20px;
}
.news-block.reverse {
  flex-direction: row-reverse;
}
.news-image {
  flex: 1;
}

/* Image Shapes with Soft Faded Edges */

/* All images now use rectangular with soft and faded edges */
.rectangle-soft-shape {
  width: 60%;
  height: auto;
  clip-path: url(#rectangle-soft);
  border-radius: 15px;
  filter: brightness(0.75);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%),
                      linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%);
  -webkit-mask-composite: intersect;
  mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%),
              linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%);
  mask-composite: intersect;
}

.rectangle-soft-shape:hover {
  transform: scale(1.03);
  filter: brightness(0.85);
}

.news-content {
  flex: 1;
}
.news-content h2 {
  color: orange;
  margin-bottom: 15px;
}
.news-content ul {
  list-style: none;
  padding-left: 0;
}
.news-content ul li {
  margin-bottom: 10px;
}

/* Animation */
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .news-block,
  .news-block.reverse {
    flex-direction: column;
  }
  
  /* Adjust image sizes on mobile */
  .rectangle-soft-shape {
    width: 80%;
  }
}