
/***************************************************** LANGUAGE TOGGLE STYLES *************************************************/

.language-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    margin-left: auto;
}

.language-btn {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 5px 15px;
    font-size: 14px;
    font-family: 'poppins', sans-serif;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.language-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.language-btn.active {
    background-color: white;
    color: black;
}

.flag-icon {
    width: 20px;
    height: 15px;
}

/* Update contacttop to accommodate language toggle */
.contacttop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    background-color: black;
    font-size: 15px;
    color: white;
    padding-left: 260px;
    padding-right: 250px;
    font-family: 'open sans', sans-serif;
    z-index: 2;
    position: relative;
}

/* Mobile responsive adjustments for language toggle */
@media screen and (max-width: 768px) {
    .contacttop {
        padding: 10px 20px;
        font-size: 12px;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        text-align: center;
    }
    
    .language-toggle {
        margin: 0;
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .language-btn {
        font-size: 12px;
        padding: 4px 12px;
    }
}

@media screen and (max-width: 480px) {
    .language-btn {
        font-size: 11px;
        padding: 3px 10px;
    }
    
    .flag-icon {
        width: 16px;
        height: 12px;
    }
}






















/* NAVBAR STYLES ****************************************************/

/* ROW IMPORTANT ****************************************************/
.row{
  margin-left: 60px;
  display:flex;
  justify-content: space-between;
  margin-right: 60px;
  margin-top: 20px;
}
/* ROW IMPORTANT ****************************************************/

html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body{
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.navbar{
  display: flex;
  justify-content:center;
  background-color: transparent;
  align-items: center;
  padding: 0 20px;
  position: sticky;
  top: 0;
  margin: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(194, 168, 120, 0.1);
  border-bottom: 1px solid rgba(194, 168, 120, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 5px 20px;
  transition: all 0.3s ease;
  height: 60px;
}

.navbar:hover {
    box-shadow: 0 4px 20px rgba(194, 168, 120, 0.15);
}

.navbar ul{ 
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  list-style: none;
  align-items: center;
}

.navbar ul li{
  display: inline;
  padding: 15px;
  color: black;
}

.navbar ul li a{
  text-decoration: none;
  color: black;
  transition: color 0.3s ease;
  font-family: 'poppins', sans-serif;
  font-weight: 500;
  padding-left: 20px;
  font-size: 18px;
}

.navbar ul li a:hover{
  color: #C2A878;
}

.donate-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    background-color: #C2A878;
    padding: 10px 18px;
    font-size: 18px;
    font-family: 'poppins', sans-serif;
    font-weight: 600;
    border-radius: 20px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.donate-btn:hover {
    background-color: rgba(194, 168, 120, 0.8);
    color: white;
    transition: 0.3s;
}

.donate-btn:active {
    background-color: rgba(194, 168, 120, 0.6);
    color: white;
    transition: 0.3s;
}

.donate-form {
    display: inline-flex;
    margin: 0;
    padding: 0;
    margin-left: 50px; 
    align-items: center; 
}

.heart-icon {
    width: 20px;
    height: 20px;
}

.contacttop{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  background-color:black;
  font-size: 15px;
  color: white;
  padding-left: 260px;
  padding-right: 250px;
  font-family: 'open sans', sans-serif;
  z-index: 2;
  position: relative;
}

.logo img{
  width: 150px;
  height: auto;
  margin-right: 30px;
  object-fit: contain;
  padding-top: 0px;
  justify-content: flex-start;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    display: block;
}

/* MAINPAGE *****************************************************/
.mainpage{
  height: 88vh;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: auto;
}

.mySlides {
  display: none;
  animation: crossfade 1.5s ease-in-out;
}

@keyframes crossfade {
    0% {
        opacity: 0.7;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.slideimg {
  width: 100%;
  height: 100%;
  transform: translateY(-30%);
  object-fit: cover;
  position: relative;
}

.mainpage::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.mainpage h1{
  font-family: 'poppins', sans-serif;
  font-size: 60px;
  color: white;
  margin: 0;
  font-weight: bold;
  z-index: 2;
  position: relative;
}

.mainpage h2{
  font-family: 'poppins', sans-serif;
  font-size: 30px;
  color: white;
  margin: 0;
  font-weight: bold;
  z-index: 2;
  position: relative;
}

.text-overlay {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
  padding-top: 20px;
  width: 80%;
  line-height: 1.2;
  font-family: 'poppins', sans-serif;
}

.banner-text {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
}

/* NEW EVENTS SECTION STYLES *****************************************************/

.events-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    font-family: 'poppins', sans-serif;
    font-size: 42px;
    color: #533805;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #C2A878;
}

.section-subtitle {
    font-family: 'poppins', sans-serif;
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
}

/* Tab Navigation */
.event-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tab-button {
    background-color: white;
    border: 2px solid #C2A878;
    color: #533805;
    padding: 15px 40px;
    font-family: 'poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tab-button:hover {
    background-color: #C2A878;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(194, 168, 120, 0.3);
}

.tab-button.active {
    background-color: #C2A878;
    color: white;
}

/* Event Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.event-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    position: relative;
}

.event-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #28a745;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.event-badge.dinner {
    background-color: #C2A878;
}

.event-content {
    padding: 30px;
}

.event-title {
    font-family: 'poppins', sans-serif;
    font-size: 24px;
    color: #533805;
    margin-bottom: 15px;
    font-weight: 600;
}

.event-details {
    font-family: 'poppins', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.event-highlight {
    background-color: rgba(194, 168, 120, 0.1);
    padding: 15px;
    border-left: 4px solid #C2A878;
    margin: 20px 0;
    border-radius: 5px;
}

.event-time {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'poppins', sans-serif;
    font-size: 18px;
    color: #28a745;
    font-weight: 600;
    margin-bottom: 20px;
}

.event-time.dinner-time {
    color: #C2A878;
}

.clock-icon {
    width: 24px;
    height: 24px;
}

.event-button {
    background-color: #C2A878;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-family: 'poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.event-button:hover {
    background-color: rgba(194, 168, 120, 0.8);
    transform: scale(1.02);
}

/* Special Events Section */
.special-events {
    background: linear-gradient(135deg, rgba(194, 168, 120, 0.1) 0%, rgba(194, 168, 120, 0.05) 100%);
    padding: 60px 40px;
    border-radius: 30px;
    margin-bottom: 80px;
}

.special-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.special-event-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.special-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.special-event-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(194, 168, 120, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

/* Hide sections by default */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Eventbrite button customization */
button[id^="eventbrite-widget-modal-trigger"] {
    background-color: #C2A878;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-family: 'poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

button[id^="eventbrite-widget-modal-trigger"]:hover {
    background-color: rgba(194, 168, 120, 0.8);
    transform: scale(1.02);
}

/**************************** FOOTER *****************************************************/

.support-section {
  margin-top: 60px;
  padding: 40px 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: linear-gradient(90deg,
    rgba(194, 168, 120, 0.9) 0%,    
    rgba(194, 168, 120, 0.3) 100%  
  );
  width: 100%;
}

.support-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 20%;
}

.logo-img {
  width: 300px;
  height: 300px;
  margin-bottom: -90px;
  margin-top: -100px;
  margin-left: -35px;
}

.support-text p {
  font-size: 18px;
  padding-right: 40px;
  color: black;
  font-family: 'poppins', sans-serif;
  margin-top: 0;
}

.facebook-img{
  width: 40px;
  height: 40px;
  margin-top: 0;
  margin-bottom: 50px;
}

.social-media:hover{
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.social-media:active{
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.contact-info {
  color: black;
  font-family: 'poppins', sans-serif;
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 18px;
}

.contact-info h2{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  font-family: 'poppins', sans-serif;
  color: black;
  font-size: 27px;
}

.contact-info h3{
  font-family: 'poppins', sans-serif;
  color: black;
  font-size: 16px;
  color: #533805;
  font-weight: 600;
}

.contact-info p{
  font-family: 'poppins', sans-serif;
  color: black;
  font-weight: 500;
}

.socials {
  color: black;
  font-family: 'poppins', sans-serif;
  width:20%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 18px;
}

.email-icon, .phone-icon, .pin-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 20%;
  font-family: 'poppins', sans-serif;
  color: black;
  font-size: 18px;
}

.newsletter input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.newsletter button {
  background-color: #C2A878;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 20px;
}

.newsletter button:hover {
  background-color: rgba(194, 168, 120, 0.8);
  transition: background-color 0.3s ease;
} 

.newsletter button:active {
  background-color: rgba(194, 168, 120, 0.6);
  transition: background-color 0.3s ease;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
  font-family: 'poppins', sans-serif;
  font-size: 14px;
}

/* MOBILE RESPONSIVE STYLES *****************************************************/

@media screen and (max-width: 1024px) {
    .contacttop {
        padding-left: 50px;
        padding-right: 50px;
        font-size: 14px;
    }
    
    .navbar ul li a {
        font-size: 16px;
        padding-left: 15px;
    }
    
    .donate-form {
        margin-left: 30px;
    }
    
    .events-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
    
    .event-content {
        padding: 25px;
    }
}

@media screen and (max-width: 768px) {
    .contacttop {
        padding: 10px 20px;
        font-size: 12px;
        flex-direction: column;
        gap: 5px;
    }
    

        .row {
        flex-direction: column;
        margin-left: 20px;
        margin-right: 20px;
        gap: 20px;
    }
    
    
    .navbar {
        flex-direction: column;
        height: auto;
        padding: 10px 20px;
        align-items: flex-start;
    }
    
    .navbar ul {
          position: absolute; /* Add this */
        top: 100%; /* Position below navbar */
        left: 0;
        right: 0;
        z-index: 1000; /* Ensure it appears above other content */
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 0; /* Remove margin since it's positioned absolutely */
        background-color: rgba(255, 255, 255, 0.98);
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .navbar ul.show {
        display: flex;
    }
    
    .navbar ul li {
        width: 100%;
        text-align: center;
        padding: 15px;
        border-bottom: 1px solid rgba(194, 168, 120, 0.2);
    }
    
    .navbar ul li:last-child {
        border-bottom: none;
    }
    
    .menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 15px;
    }
    
    .donate-form {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
    
    .logo img {
        width: 100px;
    }
    
    .mainpage {
        height: 33vh;
    }
    
    .slideshow-container {
        height: 60vh;
    }
    
    .mainpage h1 {
        font-size: 36px;
        padding: 0 15px;
    }
    
    .mainpage h2 {
        font-size: 20px;
        padding: 0 15px;
    }
    
    .events-container {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .event-tabs {
        gap: 10px;
        margin-bottom: 40px;
    }
    
    .tab-button {
        padding: 12px 25px;
        font-size: 16px;
        border-radius: 25px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .event-card {
        border-radius: 15px;
    }
    
    .event-card:hover {
        transform: translateY(-5px);
    }
    
    .event-image {
        height: 200px;
    }
    
    .event-content {
        padding: 20px;
    }
    
    .event-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .event-details {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .event-highlight {
        padding: 12px;
        margin: 15px 0;
        font-size: 14px;
    }
    
    .event-time {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .event-button,
    button[id^="eventbrite-widget-modal-trigger"] {
        padding: 12px 25px;
        font-size: 15px;
        border-radius: 20px;
    }
    
    .special-events {
        padding: 40px 20px;
        border-radius: 20px;
        margin-bottom: 50px;
    }
    
    .special-events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .special-event-card {
        padding: 30px;
    }
    
    .special-event-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    /* FIXED MOBILE FOOTER STYLES */
    .support-section {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .support-text, .contact-info, .socials, .newsletter {
        width: 100%;
        text-align: center;
        align-items: center;
    }
    
    .logo-img {
        width: 200px;
        height: 200px;
        margin: 0 auto 20px auto;
    }
    
    .support-text p {
        padding-right: 0;
        text-align: center;
    }
    
    .contact-info h2 {
        width: 100%;
        text-align: center;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .contacttop {
        font-size: 11px;
        padding: 8px 15px;
    }
    
    .navbar {
        padding: 8px 15px;
    }
    
    .logo img {
        width: 80px;
    }
    
    .mainpage {
        height: 28vh;
    }
    
    .slideshow-container {
        height: 50vh;
    }
    
    .mainpage h1 {
        font-size: 28px;
        padding: 0 10px;
    }
    
    .mainpage h2 {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .events-container {
        padding: 30px 10px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .event-tabs {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .tab-button {
        padding: 10px 20px;
        font-size: 15px;
        width: 200px;
    }
    
    .events-grid {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .event-image {
        height: 180px;
    }
    
    .event-content {
        padding: 18px;
    }
    
    .event-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .event-details {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    
    .event-highlight {
        padding: 10px;
        margin: 12px 0;
        font-size: 13px;
    }
    
    .event-time {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .event-button,
    button[id^="eventbrite-widget-modal-trigger"] {
        padding: 10px 20px;
        font-size: 14px;
        border-radius: 18px;
    }
    
    .special-events {
        padding: 30px 15px;
        margin-bottom: 40px;
    }
    
    .special-event-card {
        padding: 25px;
    }
    
    .special-event-icon {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
    
    .support-section {
        padding: 25px 15px;
        gap: 25px;
    }
    
    .logo-img {
        width: 150px;
        height: 150px;
        margin: 0 auto 15px auto;
    }
    
    .support-text p {
        font-size: 16px;
    }
    
    .contact-info h2, .socials h2, .newsletter h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .contact-info h3 {
        font-size: 15px;
        margin: 8px 0 4px 0;
    }
    
    .contact-info p, .socials p, .newsletter p {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .email-icon, .phone-icon, .pin-icon {
        width: 16px;
        height: 16px;
        margin-right: 6px;
    }
    
    .facebook-img {
        width: 32px;
        height: 32px;
        margin-top: 8px;
        margin-bottom: 0;
    }
    
    .newsletter input[type="email"] {
        padding: 8px;
        font-size: 14px;
        margin-top: 8px;
    }
    
    .newsletter button {
        padding: 8px 16px;
        font-size: 14px;
        margin-top: 12px;
    }
}

@media screen and (max-width: 320px) {
    .contacttop {
        font-size: 10px;
        padding: 6px 10px;
    }
    
    .logo img {
        width: 70px;
    }
    
    .mainpage h1 {
        font-size: 24px;
    }
    
    .mainpage h2 {
        font-size: 14px;
    }
    
    .events-container {
        padding: 25px 8px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-subtitle {
        font-size: 13px;
    }
    
    .tab-button {
        padding: 8px 16px;
        font-size: 14px;
        width: 180px;
    }
    
    .event-image {
        height: 160px;
    }
    
    .event-content {
        padding: 15px;
    }
    
    .event-title {
        font-size: 16px;
    }
    
    .event-details {
        font-size: 13px;
    }
    
    .event-highlight {
        font-size: 12px;
        padding: 8px;
    }
    
    .event-time {
        font-size: 14px;
    }
    
    .event-button,
    button[id^="eventbrite-widget-modal-trigger"] {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .support-section {
        padding: 20px 10px;
        gap: 20px;
    }
    
    .logo-img {
        width: 120px;
        height: 120px;
    }
    
    .support-text p {
        font-size: 14px;
    }
    
    .contact-info h2, .socials h2, .newsletter h2 {
        font-size: 18px;
    }
}

/* Additional Mobile-Specific Improvements */

@media screen and (max-width: 768px) {
    /* Mobile menu animation */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Touch-friendly elements */
    .donate-btn, .event-button, .tab-button,
    button[id^="eventbrite-widget-modal-trigger"] {
        min-height: 44px;
        min-width: 44px;
    }
    
    .navbar ul li a {
      
        display: block;
        width: 100%;
    }
    
    /* Improved mobile typography */
    body {
        font-size: 16px;
        line-height: 1.5;
    }
    
    /* Better spacing for mobile cards */
    .event-card {
        margin-bottom: 15px;
    }
    
    .special-event-card {
        margin-bottom: 15px;
    }
    
    /* Mobile-optimized hover effects (simplified for touch) */
    .event-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }
    
    .special-event-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    /* Tab button touch improvements */
    .tab-button {
        border-radius: 25px;
        margin: 5px;
    }
    
    .tab-button:hover {
        transform: none;
        box-shadow: 0 3px 10px rgba(194, 168, 120, 0.2);
    }
    
    /* Event highlight mobile styling */
    .event-highlight {
        border-radius: 8px;
    }
    
    /* Image optimizations */
    .event-image {
        object-position: center;
    }
}

/* Landscape orientation adjustments for mobile */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .mainpage {
        height: 70vh;
    }
    
    .slideshow-container {
        height: 70vh;
    }
    
    .mainpage h1 {
        font-size: 32px;
    }
    
    .mainpage h2 {
        font-size: 18px;
    }
    
    .events-container {
        padding: 35px 15px;
    }
    
    .events-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}

/* Very small screens optimization */
@media screen and (max-width: 280px) {
    .contacttop {
        font-size: 9px;
        padding: 4px 8px;
    }
    
    .logo img {
        width: 60px;
    }
    
    .mainpage h1 {
        font-size: 20px;
    }
    
    .mainpage h2 {
        font-size: 12px;
    }
    
    .events-container {
        padding: 20px 6px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .section-subtitle {
        font-size: 12px;
    }
    
    .tab-button {
        padding: 6px 12px;
        font-size: 13px;
        width: 160px;
    }
    
    .event-image {
        height: 140px;
    }
    
    .event-content {
        padding: 12px;
    }
    
    .event-title {
        font-size: 15px;
    }
    
    .event-details {
        font-size: 12px;
    }
    
    .event-highlight {
        font-size: 11px;
        padding: 6px;
    }
    
    .event-time {
        font-size: 13px;
    }
    
    .event-button,
    button[id^="eventbrite-widget-modal-trigger"] {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* High resolution mobile displays */
@media screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
    .event-image {
        image-rendering: -webkit-optimize-contrast;
    }
    
    .logo img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Focus states for accessibility */
@media screen and (max-width: 768px) {
    .tab-button:focus,
    .event-button:focus,
    button[id^="eventbrite-widget-modal-trigger"]:focus {
        outline: 2px solid #C2A878;
        outline-offset: 2px;
    }
    
    .navbar ul li a:focus {
        outline: 2px solid #C2A878;
        outline-offset: 2px;
        background-color: rgba(194, 168, 120, 0.1);
    }
}


.event-date {
    font-family: 'poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #533805;
    margin-bottom: 8px;
}
