
        .events-section {
          padding: 80px 40px;
          background-color: #050714;
          font-family: "Georgia", "Times New Roman", serif;
        }

        .events-title {
          text-align: center;
          font-size: 48px;
          font-weight: 700;
          color: #fff;
          margin-bottom: 60px;
          position: relative;
        }

        .events-title::after {
          content: "";
          display: block;
          width: 120px;
          height: 3px;
          background-color: #c89b3c;
          margin: 18px auto 0;
        }

        .events-container {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 32px;
          max-width: 1200px;
          margin: 0 auto;
        }

        .event-card {
          position: relative;
          height: 420px;
          border-radius: 14px;
          overflow: hidden;
          cursor: pointer;
          box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5);
          background-color: #000;
        }

        .image-wrapper {
          position: relative;
          width: 100%;
          height: 100%;
        }

        .image {
          position: absolute;
          inset: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .image-hover {
          opacity: 0;
        }

        .event-card:hover .image-default {
          opacity: 0;
        }

        .event-card:hover .image-hover {
          opacity: 1;
          transform: scale(1.05);
        }

        .overlay {
          position: absolute;
          inset: 0;
          display: flex;
          flex-direction: column;
          justify-content: flex-end;
          padding: 32px;
          background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.25),
            transparent
          );
          color: #fff;
        }

        .overlay h3 {
          font-size: 26px;
          margin-bottom: 12px;
        }

        .overlay p {
          font-size: 15px;
          line-height: 1.7;
          color: #e0e0e0;
        }

        .overlay button {
          margin-top: 18px;
          padding: 12px 26px;
          background-color: #c89b3c;
          border: none;
          color: #000;
          font-size: 14px;
          font-weight: 600;
          border-radius: 6px;
          cursor: pointer;
          width: fit-content;
          transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .overlay button:hover {
          background-color: #e2b857;
          transform: translateY(-2px);
        }

        @media (max-width: 1024px) {
          .events-container {
            grid-template-columns: repeat(2, 1fr);
          }
          .events-title {
            font-size: 40px;
          }
        }

        @media (max-width: 768px) {
          .events-container {
            grid-template-columns: 1fr;
          }
          .events-title {
            font-size: 34px;
            margin-bottom: 40px;
          }
          .event-card {
            height: 380px;
          }
        }

        @media (max-width: 480px) {
          .events-title {
            font-size: 28px;
          }
          .event-card {
            height: 340px;
          }
          .overlay h3 {
            font-size: 22px;
          }
          .overlay p {
            font-size: 14px;
          }
        }