/* ==========================================================================
   BÜŞRA & SALİH DİJİTAL DAVETİYE STİLLERİ
   Yüzük Takma & Kırmızı Kurdele Suluboya Konsepti (Mobile-First)
   ========================================================================== */

:root {
  --primary-gold: #c59b27;
  --gold-gradient: linear-gradient(135deg, #dfbc55 0%, #aa7c11 100%);
  --gold-glow: rgba(212, 175, 55, 0.35);
  --ribbon-red: #c72c41;
  --ribbon-red-soft: rgba(199, 44, 65, 0.1);
  --navy-blue: #1e3a5f;
  --bg-cream: #faf7f2;
  --bg-card: #ffffff;
  --text-dark: #2c2925;
  --text-muted: #6b645b;
  --border-delicate: rgba(197, 155, 39, 0.28);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-premium: 0 20px 45px rgba(197, 155, 39, 0.12), 0 5px 15px rgba(0, 0, 0, 0.04);
  
  --font-script: 'Alex Brush', cursive;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  min-height: 100%;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  font-family: var(--font-sans);
  overflow-x: hidden;
  position: relative;
}

/* Dokulu Suluboya Kağıt Arka Planı */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(224, 210, 190, 0.3) 0%, transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(210, 195, 175, 0.3) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(250, 247, 242, 0.6) 0%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* Uçuşan Gül Yaprakları / Işıltı Canvası */
#petals-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ==========================================================================
   1. TAM EKRAN VİDEO GİRİŞ SAHNESİ
   Davetiyeyle BİREBİR AYNI GENİŞLİKTE (max-width: 540px) ve UZUN KART
   ========================================================================== */
.video-hero {
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  padding: 16px 14px;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-hero.fade-out {
  opacity: 0;
  transform: scale(1.03);
  pointer-events: none;
}

/* Davetiye kartıyla aynı 540px genişlikte, uzun ve bütünleşik kart */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 92vh;
  max-height: 960px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  border: 1px solid rgba(197, 155, 39, 0.3);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  background-color: #fbf9f4;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-ambient-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 70%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
}

/* Kibar ve Sade Dokunma Rozeti */
.tap-prompt {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 10;
}

.tap-prompt.fade-away {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}

.tap-badge {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(197, 155, 39, 0.45);
  border-radius: 36px;
  padding: 12px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(212, 175, 55, 0.18);
  animation: gentleFloat 3s ease-in-out infinite;
  max-width: 300px;
  width: 100%;
}

.ribbon-knot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4px;
}

.ribbon-knot .ring-icon {
  font-size: 1.25rem;
  color: var(--primary-gold);
  filter: drop-shadow(0 2px 4px rgba(197, 155, 39, 0.4));
  animation: ringSparkle 2.5s infinite ease-in-out;
}

.ribbon-loop {
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ribbon-red), transparent);
  border-radius: 2px;
}

.tap-instruction {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.tap-names {
  font-family: var(--font-script);
  font-size: 1.45rem;
  color: var(--primary-gold);
  display: block;
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes ringSparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.9; }
  50% { transform: scale(1.15) rotate(10deg); opacity: 1; filter: drop-shadow(0 0 8px var(--primary-gold)); }
}

/* ==========================================================================
   2. DİJİTAL DAVETİYE ANA KARTI
   ========================================================================== */
.main-invitation {
  position: relative;
  z-index: 10;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 24px 14px 60px 14px;
  animation: invitationReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes invitationReveal {
  from {
    opacity: 0;
    transform: translateY(35px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.invitation-container {
  width: 100%;
  max-width: 540px;
}

.invitation-card {
  position: relative;
  background: #ffffff;
  border-radius: 30px;
  border: 1px solid rgba(197, 155, 39, 0.3);
  box-shadow: var(--shadow-premium);
  padding: 38px 22px 32px 22px;
  overflow: hidden;
}

/* Kart Köşe Süsleri */
.corner-ornament {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 2px solid var(--primary-gold);
  opacity: 0.6;
  pointer-events: none;
}

.corner-ornament.top-left {
  top: 14px;
  left: 14px;
  border-right: none;
  border-bottom: none;
}

.corner-ornament.top-right {
  top: 14px;
  right: 14px;
  border-left: none;
  border-bottom: none;
}

.corner-ornament.bottom-left {
  bottom: 14px;
  left: 14px;
  border-right: none;
  border-top: none;
}

.corner-ornament.bottom-right {
  bottom: 14px;
  right: 14px;
  border-left: none;
  border-top: none;
}

/* HEADER: Sanat Tablosu & Çiftin İsimleri */
.card-header {
  text-align: center;
  margin-bottom: 28px;
}

.art-frame {
  position: relative;
  width: 195px;
  height: 255px;
  margin: 0 auto 20px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.art-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.art-frame-border {
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  pointer-events: none;
}

.couple-names {
  font-family: var(--font-script);
  font-size: 4rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.golden-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 12px 0 16px 0;
}

.sep-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.sep-symbol i {
  color: var(--primary-gold);
  font-size: 0.95rem;
}

.invitation-motto {
  font-family: var(--font-serif);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.6;
  color: var(--text-dark);
  max-width: 440px;
  margin: 0 auto;
  text-transform: uppercase;
}

/* ==========================================================================
   AİLE BİLGİLERİ BÖLÜMÜ (Tek Satır İsimler, Kusursuz Milimetrik Hizalama)
   ========================================================================== */
.family-section {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  margin: 28px 0;
  padding: 22px 10px;
  background: #fdfbf7;
  border: 1px dashed rgba(197, 155, 39, 0.35);
  border-radius: 18px;
}

.family-card {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}

.family-icon {
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  font-size: 1rem;
  margin-bottom: 8px;
  opacity: 0.85;
}

.family-title-wrap {
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 4px;
}

.family-title {
  font-family: var(--font-serif);
  font-size: clamp(0.74rem, 2.8vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.6px;
  color: var(--text-dark);
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
}

.family-surname {
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-gold);
  margin-bottom: 8px;
}

.family-phone-wrap {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  width: 100%;
}

.family-phone {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ribbon-red);
  font-weight: 600;
  font-size: clamp(0.72rem, 2.6vw, 0.82rem);
  text-decoration: none;
  padding: 5px 10px;
  background: rgba(199, 44, 65, 0.08);
  border-radius: 20px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.family-phone:hover {
  background: rgba(199, 44, 65, 0.16);
  transform: translateY(-1px);
}

.family-address-wrap {
  min-height: 56px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.family-address {
  font-size: clamp(0.68rem, 2.2vw, 0.74rem);
  line-height: 1.45;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.family-map-wrap {
  margin-top: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.family-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--navy-blue);
  background: rgba(30, 58, 95, 0.08);
  border: 1px solid rgba(30, 58, 95, 0.2);
  font-weight: 600;
  font-size: clamp(0.68rem, 2.3vw, 0.78rem);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.family-map-btn:hover {
  background: rgba(30, 58, 95, 0.16);
  transform: translateY(-1px);
  color: var(--navy-blue);
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.15);
}

.family-map-btn i {
  color: var(--ribbon-red);
  font-size: 0.85rem;
}

.text-map-link {
  color: var(--ribbon-red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}

.text-map-link:hover {
  opacity: 0.8;
}

.family-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1px;
}

.family-divider span {
  width: 1px;
  height: 85%;
  background: rgba(197, 155, 39, 0.25);
}

/* ==========================================================================
   ETKİNLİK DETAYLARI VE ENTEGRE GERİ SAYIMLAR
   ========================================================================== */
.events-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0;
}

.event-box {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(197, 155, 39, 0.3);
  border-radius: 22px;
  padding: 28px 18px 22px 18px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-box:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-premium);
}

.event-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(170, 124, 17, 0.3);
}

.event-header {
  text-align: center;
  margin-bottom: 16px;
}

.event-decor {
  color: var(--primary-gold);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.event-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.event-title span {
  color: var(--primary-gold);
  font-weight: 300;
}

.event-day-time {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--ribbon-red);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.event-venue-info {
  text-align: center;
  background: #fdfbf7;
  border-radius: 14px;
  padding: 16px 12px;
  margin-bottom: 14px;
}

.venue-name {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--navy-blue);
  margin-bottom: 6px;
  line-height: 1.4;
}

.venue-name i {
  color: var(--ribbon-red);
  font-size: 0.95rem;
}

.venue-address {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.venue-hall {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--primary-gold);
  margin-top: 4px;
}

.event-notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ribbon-red-soft);
  border: 1px dashed rgba(199, 44, 65, 0.4);
  color: var(--ribbon-red);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: 20px;
  margin-top: 10px;
}

.home-program-box {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(197, 155, 39, 0.2);
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.program-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--text-dark);
}

.program-item i {
  color: var(--primary-gold);
  margin-top: 2px;
}

/* ==========================================================================
   ETKİNLİK İÇİNE ENTEGRE GERİ SAYIM STİLİ
   ========================================================================== */
.event-countdown-wrapper {
  background: #fcf9f2;
  border: 1px solid rgba(197, 155, 39, 0.28);
  border-radius: 14px;
  padding: 12px 10px;
  margin-bottom: 16px;
  text-align: center;
}

.event-countdown-label {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.event-countdown-label i {
  color: var(--primary-gold);
}

.timer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  max-width: 360px;
  margin: 0 auto;
}

.timer-unit {
  background: #ffffff;
  border: 1px solid rgba(197, 155, 39, 0.22);
  border-radius: 10px;
  padding: 8px 3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-num {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy-blue);
  line-height: 1;
  margin-bottom: 2px;
  font-variant-numeric: tabular-nums;
}

.timer-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--primary-gold);
}

/* Buton Grupları */
.action-btn-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

@media (min-width: 480px) {
  .action-btn-group {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-align: center;
  min-height: 42px;
}

.btn-map {
  background: linear-gradient(135deg, #1e3a5f 0%, #152943 100%);
  color: #ffffff;
}

.btn-map:hover {
  background: #152943;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.btn-map-home {
  background: rgba(30, 58, 95, 0.08);
  color: var(--navy-blue);
  border: 1px solid rgba(30, 58, 95, 0.25);
}

.btn-map-home:hover {
  background: rgba(30, 58, 95, 0.15);
}

.btn-cal {
  background: rgba(197, 155, 39, 0.12);
  color: #8c6a0c;
  border: 1px solid rgba(197, 155, 39, 0.4);
}

.btn-cal:hover {
  background: rgba(197, 155, 39, 0.22);
  color: #6d5209;
}

/* ==========================================================================
   SADECE "PAYLAŞ" BUTONU BÖLÜMÜ
   ========================================================================== */
.share-only-section {
  margin: 32px 0 16px 0;
  display: flex;
  justify-content: center;
}

.btn-clean-share {
  background: var(--gold-gradient);
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 13px 36px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(170, 124, 17, 0.28);
  transition: all 0.3s ease;
}

.btn-clean-share:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(170, 124, 17, 0.4);
  filter: brightness(1.06);
}

.btn-clean-share:active {
  transform: translateY(0);
}

/* Toast Bildirimi */
.toast-msg {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 20, 25, 0.9);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 25px;
  z-index: 2000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: toastFade 2.5s forwards ease;
}

@keyframes toastFade {
  0% { opacity: 0; transform: translate(-50%, 15px); }
  15% { opacity: 1; transform: translate(-50%, 0); }
  80% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, -10px); }
}

/* ==========================================================================
   FOOTER (DİPNOT: • BÜŞRA & SALİH •)
   ========================================================================== */
.card-footer {
  text-align: center;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(197, 155, 39, 0.2);
}

.footer-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--primary-gold);
  margin-bottom: 8px;
}

.foot-line {
  width: 35px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.footer-ornament i {
  font-size: 0.9rem;
  color: var(--primary-gold);
  filter: drop-shadow(0 1px 3px rgba(197, 155, 39, 0.3));
}

.footer-text {
  font-family: var(--font-serif);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* ==========================================================================
   MODAL PENCERELERİ (TAKVİM)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.modal-card {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(197, 155, 39, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  max-width: 380px;
  width: 100%;
  padding: 30px 22px 24px 22px;
  text-align: center;
  animation: scaleUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #f4f1ea;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: #e5dfd2;
  color: var(--text-dark);
}

.modal-icon {
  font-size: 2.2rem;
  color: var(--primary-gold);
  margin-bottom: 12px;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.btn-google-cal {
  background: #4285f4;
  color: #fff;
}

.btn-google-cal:hover {
  background: #3367d6;
}

.btn-apple-cal {
  background: #000000;
  color: #fff;
}

.btn-apple-cal:hover {
  background: #222222;
}

/* ==========================================================================
   YARDIMCI SINIFLAR & ANİMASYONLAR
   ========================================================================== */
.hidden {
  display: none !important;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleUp {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
