/* 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;
                }
            }
/* HERO */
.fees-page .fees-hero {
  position: relative;
  background: url("https://raw.githubusercontent.com/ethn-boyi/fiesta-site/main/images/catering/cater.jpg") center/cover no-repeat;
  height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.fees-page .fees-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.fees-page .hero-overlay {
  position: relative;
  z-index: 1;
  display: block;
}

.fees-page .fees-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 0.5rem;
  color: #ff6600;
}

.fees-page .fees-hero p {
  font-size: 1.2rem;
}

/* CONTAINER */
.fees-page .fees-container {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 0 20px;
}

/* TITLE */
.fees-page .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
  position: relative;
}

.fees-page .section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #ff6600;
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}

/* TABLE */
.fees-page .table-wrapper {
  overflow-x: auto;
  margin-bottom: 2.5rem;
}

.fees-page .fees-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-radius: 10px;
  overflow: hidden;
}

.fees-page .fees-table th,
.fees-page .fees-table td {
  padding: 15px;
  text-align: center;
}

.fees-page .fees-table th {
  background: #ff6600;
  color: #fff;
}

.fees-page .fees-table tr:nth-child(even) {
  background: #f9f9f9;
}

.fees-page .fees-table tr:hover {
  background: #fff3e6;
  transition: background 0.3s ease;
}

/* NOTES */
.fees-page .notes-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.fees-page .notes-card h3 {
  margin-bottom: 1rem;
  color: #ff6600;
}

.fees-page .notes-card ul {
  list-style: none;
  padding: 0;
}

.fees-page .notes-card li {
  margin: 0.7rem 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.fees-page .notes-card li i {
  color: #ff6600;
  margin-right: 10px;
}
