/*!***********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./src/components/Bottom_to_top/BToT.css ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************/
.scroll-to-top-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 20px;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 150%;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.scroll-to-top-button:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.scroll-to-top-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.scroll-to-top-button svg {
  display: block;
  width: 24px;
  height: 24px;
}

@media screen and (max-width: 768px) {
  .scroll-to-top-button {
    bottom: 15px;
    right: 15px;
    padding: 8px 16px;
  }
  
  .scroll-to-top-button svg {
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 480px) {
  .scroll-to-top-button {
    bottom: 10px;
    right: 10px;
    padding: 6px 12px;
  }
  
  .scroll-to-top-button svg {
    width: 18px;
    height: 18px;
  }
} 
/*!****************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./src/components/Event/event.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************************/
/* Page Container */
.page-container {
  min-height: 100vh;
  opacity: 0;
  margin-top: 9.5%;
  animation: fadeInPage 1s ease-out forwards;
  }

@keyframes fadeInPage {
  to {
    opacity: 1;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 50vh;
  overflow: hidden;
  perspective: 1000px;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1) rotateX(5deg);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.9);
}

.hero-section:hover .hero-background {
  transform: scale(1) rotateX(0);
  filter: brightness(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  /* backdrop-filter: blur(3px); */
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  z-index: 1;
  top: 15%;
}

.hero-title {
  color: white;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 2.0rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-title:hover {
  transform: translateZ(50px);
  letter-spacing: 3rem;
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.5);
}

/* Events Container */
.events-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 2rem;
  perspective: 1000px;
}

.no-events {
  text-align: center;
  padding: 5rem 0;
  font-size: 1.5rem;
  color: var(--secondary-text);
  animation: slideUp 0.6s ease-out;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-gap: 3rem;
  gap: 3rem;
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
  animation-delay: 0.3s;
  padding: 0% 10%;    
}

/* Event Card */
.event-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.event-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.event-image-container {
  position: relative;
  padding-bottom: 65%;
  overflow: hidden;
}

.event-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card:hover .event-overlay {
  opacity: 1;
}

.event-content {
  padding: 0.5rem;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 1)
  );
  transform: translateY(0);
  transition: transform 0.5s ease;
}

.event-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  position: relative;
}

.event-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0rem;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.event-card:hover .event-title::after {
  width: 100px;
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-detail {
  display: flex;
  align-items: center;
  color: var(--secondary-text);
  transition: transform 0.3s ease;
}

.icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  color: var(--secondary-text);
  transition: all 0.3s ease;
}

.event-detail:hover {
  transform: translateX(10px);
  color: var(--primary-color);
}

.event-detail:hover .icon {
  transform: scale(1.2);
}

.event-button {
  width: 100%;
  padding: 1rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.event-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.event-button:hover {
  background-color: var(--primary-color-dark);
}

.event-button:hover::before {
  width: 200%;
  height: 200%;
  transition: width 0.5s, height 0.5s;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

@keyframes heroTitle {
  0% {
    letter-spacing: 0.5rem;
    opacity: 0;
  }
  100% {
    letter-spacing: 2rem;
    opacity: 1;
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
    letter-spacing: 1.5rem;
  }
  .events-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 40vh;
  }
  .page-container {
    margin-top: 8%;
  }
  .hero-title {
    font-size: 2rem;
    letter-spacing: 1rem;
  }
  .events-container {
    padding: 4rem 1rem;
  }
  .events-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0% 5%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
    letter-spacing: 0.8rem;
  }
  .event-content {
    padding: 0.3rem;
  }
  .event-title {
    font-size: 1.2rem;
  }
  .event-button {
    font-size: 0.9rem;
    padding: 0.7rem;
  }
  .hero-content {
    top: 20%;
  }
  .events-grid {
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
} 
/*!******************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./src/components/Navbar/Navbar.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************************/
/* General Navbar Styling */
:root {
  --primary-color: #a5c847;
  --text-dark: #333;
  --transition-speed: 0.4s;
}

.navbar-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
  width: 100%;
  height: 100px;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: height 0.3s ease;
}

.navbar-row.scrolled {
  height: 80px;
}

.navbar-logo {
  margin-left: 1.2rem;
  margin-right: 2rem;
  display: flex;
  align-items: center;
}

.navbar-logo .logo {
  height: 90px;
  width: auto;
  max-width: 180px;
  max-height: 90px;
  transition: height 0.3s, max-width 0.3s, max-height 0.3s;
}

.navbar-row.scrolled .navbar-logo .logo {
  height: 50px;
  max-width: 80px;
  max-height: 60px;
}

@media screen and (max-width: 992px) {
  .navbar-logo .logo {
    height: 40px;
    max-width: 80px;
    max-height: 40px;
  }
}

/* Desktop Styles */
.desktop-links {
  display: flex;
  justify-content: flex-end;
  flex-grow: 1;
  width: auto;
  margin-left: auto;
}

.navbar-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
  margin-left: 0;
}

.navbar-menu li a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 5px;
}

.navbar-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.navbar-menu li a:hover,
.navbar-menu li a.active {
  color: var(--primary-color);
}

.navbar-menu li a:hover::after,
.navbar-menu li a.active::after {
  width: 100%;
}

.contact-btn, .contact-btn.active {
  text-decoration: none !important;
}
.contact-btn::after {
  display: none !important;
}

/* Mobile & Hamburger Styles */
.mobile-sidebar {
  display: none;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .navbar-row {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 0;
  }
  .navbar-logo {
    margin-left: 1.2rem;
    margin-right: 2rem;
  }
  .desktop-links, .desktop-contact {
    display: none;
  }
  .menu-toggle {
    display: block !important;
    margin-left: auto;
    margin-right: 1.2rem;
    order: 2;
    z-index: 1102;
  }
  .navbar-row {
    display: flex;
    align-items: center;
    flex-direction: row;
  }
  .mobile-sidebar {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    height: 100%;
    width: 300px;
    background: #fff;
    box-shadow: 2px 0 15px rgba(0,0,0,0.15);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 2.2rem 1.2rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .mobile-sidebar.open {
    transform: translateX(0);
  }
  .close-icon {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    left: auto;
    font-size: 2.5rem;
    color: var(--primary-color);
    cursor: pointer;
    margin-bottom: 1.2rem;
  }
  .mobile-menu {
    list-style: none;
    padding: 0;
    margin-top: 2.2rem;
    width: 100%;
  }
  .mobile-menu li {
    margin-bottom: 1.1rem;
    width: 100%;
  }
  .mobile-menu li a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.2s, background 0.2s, padding 0.2s;
    display: block;
    padding: 0.2rem 0 0.2rem 1.2rem;
    border-radius: 6px;
    margin-left: 0.2rem;
    letter-spacing: 0.5px;
  }
  .mobile-menu li a.active {
    color: var(--primary-color);
    background: rgba(165,200,71,0.08);
    font-weight: 700;
  }
  .mobile-menu li a:hover {
    color: var(--primary-color);
    background: rgba(165,200,71,0.13);
    padding-left: 1.6rem;
  }
  .contact-btn-mobile {
    background: var(--primary-color);
    color: #fff !important;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    text-align: center;
    display: block;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    width: 95%;
    margin-left: 2.5%;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(165,200,71,0.10);
    letter-spacing: 0.5px;
    transition: background 0.2s, box-shadow 0.2s;
  }
  .contact-btn-mobile:hover {
    background: #8db035;
    box-shadow: 0 8px 24px rgba(165,200,71,0.18);
  }
  .overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
  }
  .mobile-sidebar.open ~ .overlay {
    opacity: 1;
    visibility: visible;
  }
}

#contact-me {
  margin-right: 1.2rem;
}

#contact-me a {
  padding: 0.7rem 1.1rem;
  font-size: 1.1rem;
  background-color: var(--primary-color);
  color: #fff !important;
  border-radius: 6px;
  transition: all var(--transition-speed) ease;
  border: none;
  text-decoration: none !important;
  position: relative;
  font-weight: 700;
  letter-spacing: 1px;
}
#contact-me a::after {
  display: none !important;
}

.menu-toggle {
  display: none;
}
.menu-toggle .hamburger {
  width: 32px;
  height: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.menu-toggle .hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: var(--text-dark);
  border-radius: 2px;
  margin: 3px 0;
  transition: all 0.3s;
}
.menu-toggle .hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle .hamburger.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle .hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
