/* ================= PAGE HEADER ================= */
.page-header {
  background: linear-gradient(135deg, var(--red) 0%, #8b0000 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.page-header h1 {
  font-size: 42px;
  margin-bottom: 15px;
  color: white;
}

.page-header p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ================= EVENTS PAGE ================= */
.events-page {
  padding: 80px 0;
  background-color: var(--bg);
}

.events-grid-page {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.event-card-page {
  background: var(--gray);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.event-card-page:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(181, 0, 0, 0.15);
}

.event-image {
  width: 150px;
  flex-shrink: 0;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-info {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-info h3 {
  color: var(--text);
  margin-bottom: 10px;
  font-size: 20px;
}

.event-description {
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 15px;
  flex: 1;
}

.event-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.event-date {
  color: #aaa;
  font-size: 14px;
}

/* ================= ACHIEVEMENTS PAGE ================= */
.achievements-page {
  padding: 80px 0;
  background-color: var(--gray);
}

.achievements-grid-page {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.achievement-card-page {
  background: var(--bg);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.achievement-card-page:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(181, 0, 0, 0.2);
}

.achievement-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid var(--red);
}

.achievement-content-page {
  padding: 25px;
}

.achievement-content-page h3 {
  color: var(--text);
  margin-bottom: 15px;
  font-size: 20px;
}

.tournament-page {
  color: var(--red);
  font-weight: 600;
  margin: 8px 0;
  font-size: 16px;
}

.position-page {
  /* color: #ffd700; */
  font-weight: bold;
  margin: 8px 0;
  font-size: 16px;
}

.description-page {
  color: #ccc;
  line-height: 1.6;
  margin: 15px 0;
}

.date-page {
  color: #888;
  font-size: 14px;
  margin-top: 15px;
}

/* ================= ACHIEVEMENT SINGLE PAGE ================= */
.achievement-single {
  padding: 60px 0;
  background-color: var(--bg);
}

.achievement-full {
  max-width: 800px;
  margin: 0 auto;
  background: var(--gray);
  padding: 40px;
  border-radius: 12px;
}

.achievement-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.achievement-date,
.achievement-tournament,
.achievement-position {
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.achievement-date {
  background: rgba(181, 0, 0, 0.2);
  color: var(--red);
}

.achievement-tournament {
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
}

.achievement-position {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
}

.achievement-hero-image {
  margin-bottom: 30px;
}

.achievement-hero-image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.achievement-content-full {
  color: var(--text);
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 40px;
}

.achievement-content-full p {
  margin-bottom: 20px;
}

.achievement-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid #333;
}

/* Ссылка "Подробнее" в карточках */
.achievement-link,
.achievement-link-page {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
  margin-top: 10px;
  display: inline-block;
}

.achievement-link:hover,
.achievement-link-page:hover {
  color: #ff3333;
}

/* Стили для страницы всех достижений */
.achievement-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.achievement-date-page {
  color: #aaa;
  font-size: 14px;
}

/* Related Achievements */
.related-achievements {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #333;
}

.related-achievements h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .achievement-full {
    padding: 25px;
  }
  
  .achievement-footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .achievement-meta {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  
  .achievement-meta .achievement-date-page {
    order: -1;
  }
}


/* ================= NEWS PAGE ================= */
.news-page {
  padding: 80px 0;
  background-color: var(--bg);
}

.news-list-page {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.news-item-page {
  display: flex;
  background: var(--gray);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.news-item-page:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(181, 0, 0, 0.15);
}

.news-date-block-page {
  background: var(--red);
  color: white;
  padding: 25px;
  text-align: center;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: bold;
}

.news-date-block-page .day {
  font-size: 32px;
  display: block;
  line-height: 1;
}

.news-date-block-page .month {
  font-size: 18px;
  text-transform: uppercase;
  margin-top: 5px;
}

.news-image-page {
  width: 200px;
  flex-shrink: 0;
}

.news-image-page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-content-page {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-content-page h3 {
  color: var(--text);
  margin-bottom: 15px;
  font-size: 22px;
}

.news-excerpt {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.news-full-date {
  color: #aaa;
  font-size: 14px;
}

.news-link-page {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.news-link-page:hover {
  color: #ff3333;
}

/* ================= NEWS SINGLE PAGE ================= */
.news-single {
  padding: 60px 0;
  background-color: var(--bg);
}

.news-full {
  max-width: 800px;
  margin: 0 auto;
  background: var(--gray);
  padding: 40px;
  border-radius: 12px;
}

.news-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  color: #aaa;
  font-size: 14px;
}

.news-hero-image {
  margin-bottom: 30px;
}

.news-hero-image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.news-content-full {
  color: var(--text);
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 40px;
}

.news-content-full p {
  margin-bottom: 20px;
}

.news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid #333;
}

.btn-back {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 20px;
  border: 2px solid var(--red);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-back:hover {
  background: var(--red);
  color: white;
}

.news-share {
  display: flex;
  align-items: center;
  gap: 15px;
}

.news-share span {
  color: #aaa;
}

.share-link {
  color: var(--text);
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.share-link:hover {
  color: var(--red);
}

/* Related News */
.related-news {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #333;
}

.related-news h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.related-item {
  background: var(--gray);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.related-item:hover {
  transform: translateY(-5px);
}

.related-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.related-item h4 {
  padding: 15px 15px 5px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.3;
}

.related-item p {
  padding: 0 15px;
  color: #aaa;
  font-size: 14px;
  margin-bottom: 10px;
}

.read-more {
  display: block;
  padding: 10px 15px;
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  border-top: 1px solid #333;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background-color: rgba(181, 0, 0, 0.1);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .news-full {
    padding: 25px;
  }
  
  .news-footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= NO CONTENT STYLES ================= */
.no-events, .no-achievements, .no-news {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #888;
}

.no-events p, .no-achievements p, .no-news p {
  margin: 10px 0;
  font-size: 18px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .events-grid-page {
    grid-template-columns: 1fr;
  }
  
  .event-card-page {
    flex-direction: column;
  }
  
  .event-image {
    width: 100%;
    height: 200px;
  }
  
  .achievements-grid-page {
    grid-template-columns: 1fr;
  }
  
  .news-item-page {
    flex-direction: column;
  }
  
  .news-date-block-page {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    padding: 20px;
  }
  
  .news-image-page {
    width: 100%;
    height: 200px;
  }
}

/* ================= LINK STYLES ================= */
.events-link, .achievements-link, .news-link {
  text-align: center;
  margin-bottom: 30px;
}

/* .text-main-color {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s;
}

.text-main-color:hover {
  color: #ff3333;
} */


/* ================= CONTACT PAGE ================= */
.contact-content {
  padding: 80px 0;
  background-color: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.contact-info h2,
.contact-form-section h2 {
  color: var(--red);
  margin-bottom: 30px;
  font-size: 28px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--gray);
  border-radius: 8px;
}

.contact-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.contact-details {
    margin-top: -13px;
}

.contact-details h4 {
  color: var(--text);
  margin-bottom: 8px;
}

.contact-details p {
  color: #ccc;
  line-height: 1.5;
}

/* ===== SOCIAL LINKS ===== */

.social-links{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-top:15px;
}

.social-link{
    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:16px 20px;

    background:#1d1d1d;
    border:1px solid #333;
    border-left:4px solid var(--red);

    border-radius:12px;

    color:#fff;
    text-decoration:none;

    transition:.3s;
}

.social-link:hover{
    transform:translateX(8px);
    border-color:var(--red);
    box-shadow:0 10px 25px rgba(181,0,0,.25);
}

.social-left{
    display:flex;
    align-items:center;
    gap:15px;
}

.social-icon{
    width:46px;
    height:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    font-size:22px;
    color:#fff;
}

.social-name{
    font-size:18px;
    font-weight:600;
}

.social-arrow{
    font-size:22px;
    color:#888;
    transition:.3s;
}

.social-link:hover .social-arrow{
    color:white;
    transform:translateX(5px);
}

/* Цвета */

.instagram .social-icon{
    background:linear-gradient(45deg,#833ab4,#fd1d1d,#fcb045);
}

.telegram .social-icon{
    background:#229ED9;
}

.whatsapp .social-icon{
    background:#25D366;
}

/* Contact Form */
.contact-form {
  background: var(--gray);
  padding: 30px;
  border-radius: 12px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background: var(--bg);
  border: 1px solid #333;
  border-radius: 6px;
  color: var(--text);
  font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}

.btn-large {
  padding: 15px 30px;
  font-size: 16px;
  width: 100%;
}

/* Map Section */
.map-section {
  margin-top: 60px;
}

.map-section h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

.map-container {
  background: var(--gray);
  border-radius: 12px;
  overflow: hidden;
  /* height: 400px; */
}

.map-container iframe {
  width: 100%;
  /* height: 100%; */
  border: none;
}   

.map-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text);
  text-align: center;
}


/* ================= ABOUT PAGE ================= */
.about-content {
  padding: 80px 0;
  background-color: var(--bg);
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-hero-text h2 {
  color: var(--red);
  font-size: 36px;
  margin-bottom: 20px;
}

.about-hero-text .lead {
  font-size: 18px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 25px;
}

.about-hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Values Section */
.values-section {
  margin: 80px 0;
}

.values-section h3 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 32px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background: var(--gray);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.value-card h4 {
  color: var(--text);
  margin-bottom: 15px;
}

.value-card p {
  color: #ccc;
  line-height: 1.5;
}

/* Team Section */
.team-section {
  margin: 80px 0;
}

.team-section h3 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 32px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.team-member {
  text-align: center;
  background: var(--gray);
  padding: 30px;
  border-radius: 12px;
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid var(--red);
}

.team-member h4 {
  color: var(--text);
  margin-bottom: 10px;
}

.team-member .position {
  color: var(--red);
  font-weight: 600;
  margin-bottom: 15px;
}

.team-member .bio {
  color: #ccc;
  line-height: 1.5;
}

/* Stats Section */
.stats-section {
  margin: 80px 0;
}

.stats-section h3 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat-item {
  text-align: center;
  background: var(--gray);
  padding: 40px 20px;
  border-radius: 12px;
}

.stat-number {
  font-size: 42px;
  font-weight: bold;
  color: var(--red);
  margin-bottom: 10px;
}

.stat-label {
  color: var(--text);
  font-size: 16px;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 968px) {
  .about-hero,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-hero-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .values-grid,
  .team-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
}

/* MEMBERS - УЧАСТНИКИ */
/* redirect to members */
.btn-outline {
    background: transparent;
    border: 2px solid var(--red);
    color: var(--red);
    margin-left: 15px;
}

.btn-outline:hover {
    background: var(--red);
    color: white;
}

.about-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .about-buttons {
        flex-direction: column;
    }
    
    .btn-outline {
        margin-left: 0;
        margin-top: 10px;
    }
}

/* ================= MEMBERS PAGE ================= */
.members-page {
  padding: 60px 0;
  background-color: var(--bg);
}

.members-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border: 2px solid var(--red);
  background: transparent;
  color: var(--red);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--red);
  color: white;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.member-card {
  background: var(--gray);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(181, 0, 0, 0.15);
}

.member-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 150%;
  /* height: 100%; */
  object-fit: cover;
}

.member-role-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  color: black;
  /* color: white; */
}

.member-role-badge.президент {
  background: #ff6b6b;
}

.member-role-badge.вице-президент {
  background: #4ecdc4;
}

.member-role-badge.тренер {
  background: #45b7d1;
}

.member-role-badge.координатор {
  background: #96ceb4;
}

.member-role-badge.организатор {
  background: #feca57;
}

.member-role-badge.участник {
  background: #778beb;
}

.member-info {
  padding: 20px;
}

.member-info h3 {
  color: var(--text);
  margin-bottom: 10px;
  font-size: 18px;
}

.member-faculty,
.member-generation,
.member-birthday {
  color: #ccc;
  margin-bottom: 8px;
  font-size: 14px;
}

.member-bio {
  color: #aaa;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 10px;
}

.no-members {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  color: #888;
}

/* ================= TEAM SECTION IN ABOUT ================= */
.team-member .faculty,
.team-member .generation,
.team-member .birthday {
  color: #ccc;
  margin-bottom: 5px;
  font-size: 14px;
}

.team-member .birthday {
  color: #ffd700;
  font-weight: 600;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .members-grid {
    grid-template-columns: 1fr;
  }
  
  .members-filters {
    gap: 10px;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}


/* ================= BIRTHDAYS SECTION ================= */
.birthdays-section {
  margin-bottom: 50px;
  padding: 30px;
  background: linear-gradient(135deg, var(--red) 0%, #8b0000 100%);
  border-radius: 15px;
  color: white;
}

.birthdays-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: white;
  font-size: 28px;
}

.birthdays-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.birthday-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.birthday-card:hover {
  transform: translateY(-5px);
}

.birthday-avatar {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
}

.birthday-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
}

.birthday-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ffd700;
  color: #000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 2px solid white;
}

.birthday-info h4 {
  margin-bottom: 8px;
  font-size: 16px;
  color: white;
}

.birthday-date {
  font-weight: 600;
  margin-bottom: 5px;
  color: #ffd700;
}

.birthday-days {
  margin-bottom: 8px;
  font-size: 14px;
}

.birthday-days .today {
  color: #ffd700;
  font-weight: bold;
  font-size: 16px;
}

.birthday-days .tomorrow {
  color: #4ecdc4;
  font-weight: bold;
}

.birthday-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.no-birthdays {
  grid-column: 1 / -1;
  text-align: center;
  padding: 20px;
  color: rgba(255, 255, 255, 0.8);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .birthdays-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .birthday-card {
    padding: 15px;
  }
  
  .birthday-avatar {
    width: 60px;
    height: 60px;
  }
  
  .birthdays-section {
    padding: 20px;
  }
}

/* test */
/* ================= INSTAGRAM LINK ================= */
.instagram-link {
    margin-top: 15px;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(253, 29, 29, 0.3);
    color: white;
}

.btn-instagram-small {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-instagram-small:hover {
    transform: scale(1.05);
    color: white;
}

/* ================= EVENT SINGLE PAGE ================= */
.event-single {
    padding: 60px 0;
    background-color: var(--bg);
}

.event-full {
    max-width: 800px;
    margin: 0 auto;
    background: var(--gray);
    padding: 40px;
    border-radius: 12px;
}

.event-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.event-meta span,
.event-meta a {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.event-date {
    background: rgba(181, 0, 0, 0.2);
    color: var(--red);
}

.event-time {
    background: rgba(33, 150, 243, 0.2);
    color: #2196f3;
}

.event-status.тіркелу { background: #4caf50; color: white; }
.event-status.орындалуда { background: #2196f3; color: white; }
.event-status.аяқталды { background: #9e9e9e; color: white; }

.event-hero-image {
    margin-bottom: 30px;
}

.event-hero-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.event-content-full {
    color: var(--text);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 40px;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-event {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--red);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-event:hover {
    background: var(--red);
    color: white;
}

.event-actions {
    margin-top: 15px;
}

/* Related Events */
.related-events {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #333;
}

.related-events h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .event-full {
        padding: 25px;
    }
    
    .event-footer {
        flex-direction: column;
        text-align: center;
    }
    
    .event-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}