/* ===== RESET & BASE STYLES ===== */

/* PARTICULARITATI  =============================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --primary: #021859;
  --primary-dark: #0077b3;
  --secondary: #00c6ff;
  --accent: #2f033f !important;
  --text-dark: #333;
  --text-light: #fff;
  --bg-light: #f8f9fa;
  --bg-dark: #333;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  background-color: var(--primary);
  color: var(--text-light);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--text-light);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--accent);
}

.section-title p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

section {
  padding: 5rem 0;
}

/* PARTICULARITATI  =============================== */

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/static/img/b.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 153, 229, 0.7), rgba(0, 198, 255, 0.7));
  opacity: 0.3;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeIn 1s ease-out;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 400;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 2rem;
}

/* ===== ABOUT SECTION ===== */
.about {
  background-color: var(--bg-light);
  position: relative;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition);
}

.about-image:hover {
  transform: perspective(1000px) rotateY(0);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== VIDEO FEATURE SECTION ===== */
.video-feature {
  background-color: #fff;
}

.video-feature .video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 35px rgba(2, 24, 89, 0.15);
  background: #000;
}

.video-feature .video-wrapper::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.video-feature .video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-feature .section-title p {
  max-width: 600px;
}

@media (max-width: 768px) {
  .video-feature .video-wrapper {
    border-radius: 14px;
  }
}

/* ===== MISSION & VISION SECTION ===== */
.mission-vision {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.mission-vision::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: var(--bg-light);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

.mission-vision::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.mission-vision-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.mission-box,
.vision-box {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.mission-box:hover,
.vision-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.mission-box::before,
.vision-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
}

.mission-box h3,
.vision-box h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.mission-box h3 i,
.vision-box h3 i {
  margin-right: 15px;
  font-size: 2.5rem;
  color: var(--accent);
}

/* ===== SERVICES SECTION ===== */
.services {
  background-color: #fff;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0.1;
  transition: var(--transition);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-icon img {
  height: 3rem;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.service-card:hover .service-icon img {
  transform: scale(1.1);
  filter: brightness(1.2); /* This gives a similar effect to the color change */
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

/* ===== COMMITTEES GRID ===== */
.committees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}


.committee-card {
  display: block;
  background: linear-gradient(135deg, var(--primary) 0%, #0b2fa5 100%);
  color: var(--text-light);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(2, 24, 89, 0.2);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.committee-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.committee-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(2, 24, 89, 0.35);
  border-color: rgba(255, 255, 255, 0.25);
}

.committee-card:hover::before {
  opacity: 1;
}

.committee-logo {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  padding: 1rem;
}

.committee-logo img {
  max-height: 100px;
  max-width: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: var(--transition);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.committee-card:hover .committee-logo img {
  transform: scale(1.1);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
}

.committee-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.committee-card:hover h3 {
  color: var(--secondary);
}

.committee-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin: 0;
  transition: var(--transition);
}

.committee-card:hover p {
  color: rgba(255, 255, 255, 1);
}

/* Responsive design for committees */
@media (max-width: 768px) {
  .committees-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .committee-card {
    padding: 1.5rem;
  }
  
  .committee-logo {
    height: 100px;
  }
  
  .committee-logo img {
    max-height: 80px;
    max-width: 80px;
  }
  
  .committee-card h3 {
    font-size: 1.2rem;
  }
  
  .committee-card p {
    font-size: 0.9rem;
  }
}

/* Show More Button Styles */
.show-more-container {
  text-align: center;
  margin-top: 3rem;
}

.hidden-committee {
  display: none;
}

/* ===== STATS SECTION ===== */
.stats {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("/static/img/patrat.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-light);
  padding: 5rem 0;
  text-align: center;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item {
  flex: 1;
  min-width: 200px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
  display: inline-block;
}

.stat-text {
  font-size: 1.2rem;
  font-weight: 500;
}

/* ===== WHY US SECTION ===== */
.why-us {
  background-color: var(--bg-light);
}

.why-us-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.why-us-text {
  flex: 1;
}

.why-us-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.why-us-circle {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  position: relative;
}

.why-us-circle::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border-radius: 50%;
  border: 2px dashed var(--primary);
  animation: rotate 30s linear infinite;
}

.circle-item {
  position: absolute;
  width: 120px;
  height: 120px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-light);
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.circle-item span {
  display: block;
  text-align: center;
  padding: 0 10px;
  line-height: 1.2;
}

.circle-item:hover {
  transform: scale(1.1);
}

.circle-item i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.circle-item:nth-child(1) {
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #3498db;
}

.circle-item:nth-child(2) {
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  background-color: #e74c3c;
}

.circle-item:nth-child(3) {
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #2ecc71;
}

.circle-item:nth-child(4) {
  top: 50%;
  left: -60px;
  transform: translateY(-50%);
  background-color: #2f033f;
}

.circle-center {
  text-align: center;
}

.circle-center p {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary);
}

/* ===== TEAM SECTION ===== */
.team {
  background-color: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
}

.team-member {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-member.active {
  border: 3px solid var(--primary);
}

.member-image {
  height: 500px;
  overflow: hidden;
  position: relative;
}

.logo-centered {
  object-fit: contain;
  object-position: center;
  padding: 15px; /* ajustează după cum vrei */
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-info {
  padding: 1.5rem;
  text-align: center;
}

.member-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.member-info p {
  color: #666;
  margin-bottom: 1rem;
}

.member-country {
  display: inline-block;
  background-color: var(--bg-light);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--primary);
  margin-top: 0.5rem;
}

/* ===== EVENTS SECTION ===== */
.events {
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.events-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.event-card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.event-image {
  flex: 1;
  min-height: 300px;
  background-size: cover;
  background-position: center;
}

.event-content {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.event-subtitle {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.event-details {
  margin-bottom: 2rem;
}

.event-detail {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.event-detail i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 1rem;
  width: 30px;
  text-align: center;
}

.event-buttons {
  display: flex;
  gap: 15px;
}

/* ===== CONTACT SECTION ===== */
.contact {
  background-color: #fff;
}

.contact-container {
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 1;
}

.contact-form {
  flex: 1;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 1rem;
  width: 30px;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 153, 229, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 4rem 0 2rem;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 3rem;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--text-light);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-light);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--accent);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

.counter {
  display: inline-block;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
  .about-content,
  .why-us-content,
  .contact-container {
    flex-direction: column;
  }

  .event-card {
    flex-direction: column;
  }

  .event-image {
    min-height: 200px;
  }

  .mission-vision-container {
    flex-direction: column;
  }

  .why-us-circle {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .mobile-toggle {
    display: block;
  }

  .header-content {
    justify-content: space-between;
  }

  nav {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: var(--transition);
    z-index: 999;
    height: 0;
    overflow: hidden;
  }

  nav.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    height: auto;
    max-height: 80vh;
    overflow-y: auto;
  }

  nav ul {
    flex-direction: column;
    padding: 1rem 0;
  }

  nav ul li {
    margin: 0;
    text-align: center;
    padding: 1rem 0;
  }

  .header-content .btn {
    display: none;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 576px) {
  .section-title h2 {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .event-title {
    font-size: 2rem;
  }

  .event-subtitle {
    font-size: 1.2rem;
  }

  .why-us-circle {
    width: 250px;
    height: 250px;
  }

  .circle-item {
    width: 80px;
    height: 80px;
    font-size: 0.8rem;
  }

  .circle-item i {
    font-size: 1.5rem;
  }
}

.announcement-banner {
  background: linear-gradient(135deg, var(--accent), #4a0a5e);
  color: var(--text-light);
  padding: 1.5rem 0;
  position: relative;
  overflow: hidden;
  margin-top: -2px; /* Ensure no gap between hero and announcement */
}

.announcement-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.announcement-icon {
  font-size: 2.5rem;
  margin-right: 1.5rem;
  animation: pulse 2s infinite ease-in-out;
  flex-shrink: 0;
}

.announcement-text {
  flex: 1;
}

.announcement-text h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.announcement-text p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

.announcement-action {
  margin-left: 1.5rem;
  flex-shrink: 0;
}

.btn-accent {
  background-color: #fff;
  color: var(--accent);
  font-weight: 700;
  border: 2px solid transparent;
  padding: 0.75rem 1.5rem;
}

.btn-accent:hover {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
  transform: translateY(-3px);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* ===== FEATURED VIDEO SECTION ===== */
.featured-video {
  background-color: #fff;
  position: relative;
}

.video-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.featured-video-player {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: auto !important;
  z-index: 1;
  position: relative;
}

.featured-video-player::-webkit-media-controls {
  z-index: 2147483647 !important;
  pointer-events: auto !important;
}

.featured-video-player::-webkit-media-controls-panel {
  z-index: 2147483647 !important;
  pointer-events: auto !important;
}

.featured-video-player::-webkit-media-controls-play-button,
.featured-video-player::-webkit-media-controls-mute-button,
.featured-video-player::-webkit-media-controls-volume-slider {
  pointer-events: auto !important;
  z-index: 2147483647 !important;
}

/* ===== MEDIA COLLAGE SECTION ===== */
.media-collage {
  background-color: var(--bg-light);
  position: relative;
}

.collage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 15px;
  margin-top: 2rem;
}

.collage-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.collage-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.collage-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.collage-item.wide {
  grid-column: span 2;
}

.collage-item img,
.collage-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.collage-item:hover img,
.collage-item:hover .collage-video {
  transform: scale(1.1);
}

.collage-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--text-light);
  padding: 1rem;
  transform: translateY(100%);
  transition: var(--transition);
}

.collage-item:hover .collage-overlay {
  transform: translateY(0);
}

.collage-overlay h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--text-light);
}

.collage-overlay p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* ===== RESPONSIVE STYLES FOR NEW SECTIONS ===== */
@media (max-width: 992px) {
  .collage-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 180px);
  }

  .collage-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .collage-item.wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .video-container {
    margin: 0 1rem;
  }

  .collage-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 200px);
  }

  .collage-item.large,
  .collage-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .video-overlay,
  .collage-overlay {
    transform: translateY(0);
    background: rgba(0, 0, 0, 0.6);
  }
}
