/* Updated Color Variables with Only Three Colors */
:root {
    /* Color Palette */
    --book-color: #eaca99;
    --dark-brown: #9a522c;
    --light-brown: #c38b6a; /* Lighter variant of dark brown */
    
    /* Gradients */
    --book-gradient: linear-gradient(to bottom right, #f5f1eb 0%, var(--book-color) 100%);
    --gold-gradient: linear-gradient(135deg, var(--book-color) 0%, var(--light-brown) 100%);
    --button-hover-gradient: linear-gradient(135deg, var(--dark-brown) 0%, #7a4123 100%);
    
    /* Textures */
    --paper-texture: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="%23f5f1eb"/><path d="M0 20 L100 20" stroke="%23eaca99" stroke-width="1" stroke-opacity="0.2"/><path d="M0 40 L100 40" stroke="%23eaca99" stroke-width="1" stroke-opacity="0.2"/><path d="M0 60 L100 60" stroke="%23eaca99" stroke-width="1" stroke-opacity="0.2"/><path d="M0 80 L100 80" stroke="%23eaca99" stroke-width="1" stroke-opacity="0.2"/></svg>');
    --brown-texture: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="%239a522c" opacity="0.8"/><circle cx="20" cy="20" r="3" fill="%23c38b6a" opacity="0.3"/><circle cx="80" cy="30" r="4" fill="%23c38b6a" opacity="0.3"/><circle cx="50" cy="70" r="5" fill="%23c38b6a" opacity="0.3"/><circle cx="70" cy="80" r="3" fill="%23c38b6a" opacity="0.3"/></svg>');
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Georgia', serif;
}

body {
    overflow-x: hidden;
    background-color: #f5f1eb;
    background-image: var(--paper-texture), var(--book-gradient);
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar Styles with Texture */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: #f5f1eb;
    background-image: var(--paper-texture);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(234, 202, 153, 0.5);
}

.navbar.scrolled {
    background-color: rgba(245, 241, 235, 0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 10px;
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    height: 60px;
    overflow: visible;
    padding: 0 0 20px 0;
}

.logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    position: relative;
    top: 10px;
}

/* Adjust for different screen sizes */
@media (min-width: 768px) {
    .logo-image {
        height: 100px;
        top: 15px;
    }
}

@media (min-width: 992px) {
    .logo-image {
        height: 120px;
        top: 20px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 70px;
        top: 5px;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.submit-btn, .contact-btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.submit-btn {
    background-color: var(--dark-brown);
    color: #fff;
    border: 2px solid var(--dark-brown);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
}

.submit-btn:hover {
    background: var(--button-hover-gradient);
    border-color: #7a4123;
}

.submit-btn:hover::before {
    left: 100%;
}

.contact-btn {
    background-color: transparent;
    color: var(--dark-brown);
    border: 2px solid var(--dark-brown);
}

.contact-btn:hover {
    background-color: rgba(154, 82, 44, 0.1);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-left: 10px;
}

.social-icons a {
    color: var(--dark-brown);
    font-size: 16px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--book-color);
    position: relative;
    overflow: hidden;
}

.social-icons a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    color: #fff;
    background-color: var(--dark-brown);
}

.social-icons a:hover::after {
    transform: translate(-50%, -50%) scale(15);
    opacity: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-brown);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url(assets/landing\ image.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 76px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(154, 82, 44, 0.85);
    opacity: 0.85;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-family: 'Palatino', serif;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--light-brown);
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid var(--book-color);
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
}

.whatsapp-btn:hover {
    background-color: var(--dark-brown);
}

.whatsapp-btn:hover::before {
    left: 100%;
}

/* ========== TEAM SLIDER SECTION ========== */
.team-section {
  padding: 80px 0;
  background-color: #f5f1eb;
  background-image: var(--paper-texture);
  text-align: center;
  border-top: 1px solid rgba(234, 202, 153, 0.5);
  border-bottom: 1px solid rgba(234, 202, 153, 0.5);
  position: relative;
  width: 100%;
  overflow: hidden;
}

.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark-brown);
  position: relative;
  display: inline-block;
  font-family: 'Palatino', serif;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

.team-slider-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.team-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.team-slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
  padding: 0 20px;
  box-sizing: border-box;
}

.team-photo {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(234, 202, 153, 0.5);
  transition: all 0.3s ease;
}

.team-slide:hover .team-photo {
  transform: scale(1.01);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.team-info {
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  background: linear-gradient(to top, rgba(154, 82, 44, 0.9), transparent);
  color: white;
  padding: 20px;
  text-align: center;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.team-info h3 {
  font-family: 'Palatino', serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 5px;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.team-info p {
  font-family: 'Georgia', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #f0f0f0;
  font-style: italic;
}

/* Dot indicators */
.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--book-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--dark-brown);
  transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .team-photo {
    height: 60vh;
  }
  
  .team-info h3 {
    font-size: 1.8rem;
  }
  
  .team-info p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .team-photo {
    height: 50vh;
  }
  
  .team-slide {
    padding: 0 15px;
  }
  
  .team-info {
    left: 15px;
    right: 15px;
    padding: 15px;
  }
  
  .team-info h3 {
    font-size: 1.5rem;
  }
  
  .team-info p {
    font-size: 1rem;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 576px) {
  .team-photo {
    height: 40vh;
  }
  
  .team-slide {
    padding: 0 10px;
  }
  
  .team-info {
    left: 10px;
    right: 10px;
    padding: 10px;
  }
  
  .team-info h3 {
    font-size: 1.3rem;
  }
  
  .team-info p {
    font-size: 0.9rem;
  }
  
  .slider-dots {
    margin-top: 20px;
  }
}

/* Events Section Styles */
.events-section {
    padding: 80px 0;
    background-color: #f5f1eb;
    background-image: var(--paper-texture);
    text-align: center;
    border-top: 1px solid rgba(234, 202, 153, 0.5);
    border-bottom: 1px solid rgba(234, 202, 153, 0.5);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--dark-brown);
    position: relative;
    display: inline-block;
    font-family: 'Palatino', serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.recent-event-card {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    height: 400px;
    position: relative;
    cursor: pointer;
    display: block;
    will-change: transform;
    background-color: #f5f1eb;
    background-image: var(--paper-texture);
    border: 1px solid rgba(234, 202, 153, 0.5);
}

.recent-event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gold-gradient);
    z-index: 3;
}

.recent-event-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.event-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.recent-event-card:hover .event-image {
    width: 50%;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.recent-event-card:hover .event-image img {
    transform: scale(1.03);
}

.event-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, rgba(154, 82, 44, 0.9), transparent);
    color: #fff;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    z-index: 2;
}

.recent-event-card:hover .event-content {
    left: 50%;
    width: 50%;
    height: 100%;
    background: #f5f1eb;
    background-image: var(--paper-texture);
    color: #333;
    align-items: center;
    padding: 40px;
}

.event-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
    transition: all 0.4s ease 0.1s;
}

.recent-event-card:hover .event-title {
    font-size: 1.8rem;
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.event-description {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-bottom: 0;
    line-height: 1.6;
    transition: all 0.5s ease 0.2s;
}

.recent-event-card:hover .event-description {
    max-height: 200px;
    opacity: 1;
    margin-bottom: 20px;
}

.event-info {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    justify-content: flex-start;
    gap: 30px;
    margin-bottom: 0;
    transition: all 0.5s ease 0.3s;
}

.recent-event-card:hover .event-info {
    max-height: 100px;
    opacity: 1;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #fff;
    transition: color 0.4s ease;
}

.recent-event-card:hover .info-item {
    color: var(--dark-brown);
}

.event-btn {
    display: inline-block;
    width: 0;
    padding: 0;
    opacity: 0;
    background-color: var(--dark-brown);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.5s ease 0.4s;
    position: relative;
}

.event-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
}

.recent-event-card:hover .event-btn {
    width: auto;
    padding: 12px 30px;
    opacity: 1;
}

.event-btn:hover {
    background: var(--button-hover-gradient);
    transform: translateY(-3px);
}

.event-btn:hover::before {
    left: 100%;
}

/* Past Events Section */
.past-events {
    padding: 80px 0;
    background-color: #f5f1eb;
    background-image: var(--paper-texture);
    position: relative;
}

.past-events .section-title {
    text-align: center;
    width: 100%;
}

.events-scroll-container {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.events-scroll-container::-webkit-scrollbar {
    display: none;
}

.events-scroll {
    display: inline-flex;
    gap: 30px;
    padding: 0 50px;
    transition: transform 0.5s ease;
}

.event-card {
    width: 300px;
    height: 400px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
    background-color: #f5f1eb;
    background-image: var(--paper-texture);
    border: 1px solid rgba(234, 202, 153, 0.5);
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gold-gradient);
    z-index: 2;
}

.event-card .event-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.event-card .event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-img img {
    transform: scale(1.05);
}

.event-card .card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 25px;
    background: rgba(154, 82, 44, 0.9);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-card .card-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.event-card .card-info p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.event-card .card-info .event-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.95rem;
}

.event-card .card-info .event-meta i {
    margin-right: 8px;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.event-card:hover .card-info {
    opacity: 1;
}

/* Scroll buttons */
.scroll-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.scroll-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--dark-brown);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
}

.scroll-btn:hover {
    background: var(--button-hover-gradient);
    transform: scale(1.05);
}

.scroll-btn:hover::before {
    left: 100%;
}

.scroll-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* YouTube Videos Section */
.youtube-section {
    padding: 80px 0;
    background-color: #f5f1eb;
    background-image: var(--paper-texture);
    text-align: center;
    border-top: 1px solid rgba(234, 202, 153, 0.5);
    border-bottom: 1px solid rgba(234, 202, 153, 0.5);
}

.youtube-section .section-title {
    color: var(--dark-brown);
}

.youtube-section .section-subtitle {
    font-size: 1.2rem;
    color: var(--light-brown);
    margin-bottom: 50px;
    font-style: italic;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.video-card {
    background: #f5f1eb;
    background-image: var(--paper-texture);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(234, 202, 153, 0.5);
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gold-gradient);
    z-index: 1;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--brown-texture);
    opacity: 0.3;
    pointer-events: none;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(234, 202, 153, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-icon i {
    color: var(--dark-brown);
    font-size: 24px;
    margin-left: 5px;
}

.video-card:hover .play-icon {
    background-color: var(--book-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 20px;
    text-align: left;
    background: #f5f1eb;
}

.video-info h3 {
    color: var(--dark-brown);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.video-info p {
    color: var(--light-brown);
    font-size: 0.9rem;
    line-height: 1.4;
}

.view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--dark-brown);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid var(--dark-brown);
    position: relative;
    overflow: hidden;
}

.view-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
}

.view-btn:hover {
    background: var(--button-hover-gradient);
    transform: translateY(-3px);
}

.view-btn:hover::before {
    left: 100%;
}

.view-btn i {
    font-size: 1.2rem;
}

/* Instagram Section */
.instagram-section {
    padding: 80px 0;
    background: rgba(154, 82, 44, 0.9);
    text-align: center;
    position: relative;
}

.instagram-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--light-brown), var(--book-color), var(--light-brown));
}

.instagram-section .section-title {
    color: var(--book-color);
}

.instagram-section .section-subtitle {
    font-size: 1.2rem;
    color: rgba(234, 202, 153, 0.8);
    margin-bottom: 50px;
    font-style: italic;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.insta-post {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(234, 202, 153, 0.3);
}

.insta-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-post:hover {
    transform: translateY(-5px);
}

.insta-post:hover img {
    transform: scale(1.05);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(154, 82, 44, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.insta-post:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.insta-overlay p {
    font-size: 1rem;
    font-weight: 500;
}

/* Footer Styles */
.site-footer {
    background: rgba(154, 82, 44, 0.9);
    position: relative;
    color: #fff;
    padding: 80px 0 0;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--light-brown), var(--book-color), var(--dark-brown));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    padding: 0 15px;
    display: flex;
    flex-direction: column;
}

/* Logo Column */
.footer-logo-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.footer-logo {
    height: 200px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Common Footer Column Styles */
.footer-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: var(--book-color);
    font-family: 'Palatino', serif;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-list li i {
    margin-right: 10px;
    color: var(--book-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
}

.footer-list a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Connect With Us Section */
.footer-connect {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    font-size: 1.2rem;
}

.footer-social a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--book-color);
    transform: translateY(-3px);
    color: var(--dark-brown);
}

.footer-social a:hover::after {
    transform: translate(-50%, -50%) scale(15);
    opacity: 0;
}

.footer-newsletter {
    margin-top: 20px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-brown);
    font-family: 'Georgia', serif;
}

.newsletter-form button {
    padding: 10px 20px;
    border-radius: 5px;
    background-color: var(--dark-brown);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.newsletter-form button:hover {
    background: var(--button-hover-gradient);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 10px 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #fff;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-logo {
        height: 180px;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col {
        align-items: center;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-list li {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-logo {
        height: 140px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        margin-top: 15px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-logo {
        height: 120px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 76px);
        background-color: #f5f1eb;
        background-image: var(--paper-texture);
        flex-direction: column;
        gap: 20px;
        padding: 40px 20px;
        transition: all 0.5s ease;
        align-items: flex-start;
    }

    .nav-links.active {
        left: 0;
    }

    .submit-btn, .contact-btn {
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }

    .social-icons {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .events-section, .youtube-section, .instagram-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .recent-event-card {
        height: 350px;
        max-width: 90%;
    }
    
    .recent-event-card:hover {
        height: auto;
        min-height: 350px;
        display: block;
        transform: none;
    }

    .recent-event-card:hover .event-image {
        position: relative;
        width: 100%;
        height: 250px;
    }

    .recent-event-card:hover .event-content {
        position: relative;
        left: 0;
        width: 100%;
        height: auto;
        padding: 30px 20px;
    }
    
    .event-title {
        font-size: 1.3rem;
    }

    .recent-event-card:hover .event-title {
        font-size: 1.5rem;
    }
    
    .event-info {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .events-scroll {
        padding: 0 30px;
        gap: 20px;
    }
    
    .event-card {
        width: 280px;
        height: 380px;
    }
    
    .event-card .card-info {
        padding: 20px;
    }

    .scroll-buttons {
        margin-top: 20px;
    }
    
    .scroll-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .video-grid, .instagram-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .video-thumbnail {
        height: 150px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .past-events, .youtube-section, .instagram-section {
        padding: 60px 0;
    }
    
    .event-card {
        width: 260px;
        height: 350px;
    }
    
    .event-card .card-info {
        padding: 15px;
    }
    
    .event-card .card-info h3 {
        font-size: 1.3rem;
    }
    
    .event-card .card-info p {
        font-size: 0.9rem;
    }

    .video-grid, .instagram-grid {
        grid-template-columns: 1fr;
    }
    
    .video-thumbnail {
        height: 200px;
    }
    
    .youtube-section .section-subtitle, 
    .instagram-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-col {
        margin-bottom: 30px;
    }
    
    .footer-col:last-child {
        margin-bottom: 0;
    }
}