/* ============================================
   STYLE.CSS - DÜĞÜN DAVETİYESİ ANA STİLLER
   ============================================ */

/* ---------- Reset & Temel Stiller ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* ---------- Renk Değişkenleri ---------- */
:root {
    --gold: #c5a46d;
    --gold-dark: #b58b4d;
    --sage-dark: #5c3e2b;
    --sage-light: #8b6b4d;
    --cream: #fef9f0;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-soft: 0 2px 15px -3px rgba(0, 0, 0, 0.1);
}

/* ============================================
   INDEX SAYFASI STİLLERİ - GİRİŞ VİDEOSU
   ============================================ */

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
}

.fullscreen-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.play-instruction {
    text-align: center;
    color: white;
    animation: pulse 2s infinite;
}

.play-instruction i {
    font-size: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.play-instruction p {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 3;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 30px;
    border-radius: 10px;
}

.loading-spinner i {
    font-size: 40px;
    margin-bottom: 10px;
}

/* ============================================
   HOME SAYFASI STİLLERİ - ESKİ VERSİYON
   ============================================ */

.home-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #fdf8f0 0%, #f9e5cf 100%);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wedding-card {
    max-width: 600px;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 40px 30px;
    position: relative;
    animation: fadeInUp 0.8s ease;
}

.flower-decoration {
    text-align: center;
    margin-bottom: 30px;
}

.flower-decoration i {
    color: #ff6b6b;
    font-size: 20px;
    margin: 0 8px;
    animation: heartBeat 1.5s infinite;
}

.couple-names {
    text-align: center;
    margin-bottom: 40px;
}

.couple-names h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.couple-names p {
    font-size: 16px;
    color: #999;
    letter-spacing: 3px;
}

.date-section,
.location-section,
.gift-section {
    text-align: center;
    margin-bottom: 35px;
    padding: 20px;
    background: var(--cream);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.date-section:hover,
.location-section:hover,
.gift-section:hover {
    transform: translateY(-5px);
}

.date-section i,
.location-section i,
.gift-section i {
    font-size: 40px;
    color: #ff6b6b;
    margin-bottom: 15px;
}

.date-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #333;
    margin-bottom: 8px;
}

.date-section p,
.location-section p,
.gift-section p {
    color: #666;
    line-height: 1.6;
}

.location-section h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.map-button {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.map-button:hover {
    background: #ff5252;
    transform: scale(1.05);
}

.countdown-section {
    text-align: center;
    margin-bottom: 35px;
    padding: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    border-radius: 15px;
    color: white;
}

.countdown-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.countdown {
    display: flex;
    justify-content: space-around;
    gap: 15px;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 10px;
    flex: 1;
}

.countdown-item span {
    font-size: 28px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.countdown-item p {
    font-size: 12px;
    opacity: 0.9;
}

.rsvp-section {
    margin-bottom: 35px;
    padding: 20px;
    background: var(--cream);
    border-radius: 15px;
}

.rsvp-section h3 {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

form button {
    width: 100%;
    padding: 12px;
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

form button:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTION - ARKA PLAN VİDEOLU
   ============================================ */

.hero-video-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #2c2418;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    padding: 80px 24px 40px;
}

.hero-text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: var(--shadow-light);
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    margin-bottom: 0;
}

.hero-name {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: white;
    display: block;
    line-height: 0.9;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.hero-amp {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    font-weight: 400;
    color: white;
    display: block;
    margin: 1rem 0;
    font-style: italic;
    text-shadow: var(--shadow-light);
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 1.5rem;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.3s forwards;
}

.divider-line {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.7);
    width: 3rem;
}

.divider-star {
    color: white;
    font-size: 1.25rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: white;
    font-weight: 300;
    text-shadow: var(--shadow-light);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.hero-rsvp-button {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    padding-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.7s forwards;
}

.hero-rsvp-button:hover {
    color: var(--gold);
}

.hero-rsvp-button span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-rsvp-button .chevron-down {
    width: 1.25rem;
    height: 1.25rem;
    animation: bounce 2s infinite;
}

/* ============================================
   ANİMASYONLAR
   ============================================ */

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* ============================================
   RESPONSIVE TASARIM
   ============================================ */

/* Tablet (768px - 1023px) */
@media (min-width: 768px) {
    .hero-name {
        font-size: 6rem;
    }
    
    .hero-amp {
        font-size: 2.5rem;
    }
    
    .hero-divider {
        gap: 1.5rem;
        margin: 2.5rem 0 2rem;
    }
    
    .divider-line {
        width: 6rem;
    }
    
    .hero-date {
        font-size: 2rem;
    }
    
    .hero-rsvp-button span {
        font-size: 0.875rem;
    }
    
    .wedding-card {
        padding: 30px 20px;
    }
    
    .couple-names h1 {
        font-size: 36px;
    }
    
    .countdown-item span {
        font-size: 20px;
    }
    
    .countdown-item p {
        font-size: 10px;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .hero-name {
        font-size: 8rem;
    }
    
    .hero-amp {
        font-size: 3rem;
    }
    
    .hero-date {
        font-size: 2.5rem;
    }
}

/* Mobil (480px - 767px) */
@media (max-width: 768px) {
    .wedding-card {
        padding: 30px 20px;
    }
    
    .couple-names h1 {
        font-size: 36px;
    }
    
    .countdown-item span {
        font-size: 20px;
    }
    
    .countdown-item p {
        font-size: 10px;
    }
    
    .play-instruction i {
        font-size: 60px;
    }
    
    .play-instruction p {
        font-size: 16px;
    }
    
    .countdown {
        gap: 8px;
    }
    
    .countdown-item {
        padding: 10px;
    }
}

/* Küçük Mobil (480px altı) */
@media (max-width: 480px) {
    .hero-name {
        font-size: 2.5rem;
    }
    
    .hero-amp {
        font-size: 1.5rem;
        margin: 0.5rem 0;
    }
    
    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 0.3em;
    }
    
    .hero-date {
        font-size: 1.2rem;
    }
    
    .hero-divider {
        gap: 0.75rem;
        margin: 1.5rem 0 1rem;
    }
    
    .divider-line {
        width: 2rem;
    }
    
    .divider-star {
        font-size: 1rem;
    }
    
    .countdown-item span {
        font-size: 16px;
    }
    
    .date-section h2 {
        font-size: 22px;
    }
} 
/* HERO TARİHLERİ - KESİN HİZALAMA */
.hero-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.hero-date {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.3 !important;
}

/* İlk tarih ile ikinci tarih arasında istenen boşluk */
.hero-date:first-of-type {
    margin-bottom: 8px !important;
}

/* Eğer hero-text-container içindeki diğer elementlerden etkileniyorsa */
.hero-text-container p {
    margin: 0 !important;
    padding: 0 !important;
}

/* Hero-divider ile tarihler arasındaki boşluk */
.hero-divider {
    margin-bottom: 20px !important;
}
/* ============================================
   MÜZİK PLAYER STİLLERİ - TEMİZ VERSİYON
   ============================================ */

.music-player-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 15px 8px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.music-player-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Müzik kontrol butonu */
.music-control-btn {
    background: #c5a46d;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
}

.music-control-btn:hover {
    transform: scale(1.05);
    background: #b58b4d;
}

/* Ses dalgası */
.music-wave {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 30px;
}

.music-wave span {
    width: 3px;
    height: 12px;
    background: #c5a46d;
    border-radius: 2px;
}

/* Çalarken animasyon */
.music-wave span:nth-child(1) { animation: wave 0.8s infinite ease-in-out; }
.music-wave span:nth-child(2) { animation: wave 1s infinite ease-in-out 0.2s; }
.music-wave span:nth-child(3) { animation: wave 0.6s infinite ease-in-out 0.4s; }
.music-wave span:nth-child(4) { animation: wave 0.9s infinite ease-in-out 0.1s; }

@keyframes wave {
    0%, 100% {
        height: 8px;
    }
    50% {
        height: 22px;
    }
}

/* Müzik kapalıyken dalga animasyonu durur */
.music-player-container.muted .music-wave span {
    animation: none;
    height: 8px;
    opacity: 0.5;
}

/* Mobil için düzenleme */
@media (max-width: 768px) {
    .music-player-container {
        bottom: 15px;
        right: 15px;
        padding: 5px 12px 5px 10px;
    }
    
    .music-control-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .music-wave span {
        width: 2px;
    }
}

@media (max-width: 480px) {
    .music-player-container {
        bottom: 10px;
        right: 10px;
        padding: 4px 10px 4px 8px;
    }
}

/* Müzik başlatma bildirimi (isteğe bağlı) */
.music-prompt {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1001;
    animation: slideIn 0.3s ease;
}

.music-prompt-content {
    background: white;
    border-radius: 15px;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid #c5a46d;
}

.music-prompt-content i {
    font-size: 30px;
    color: #c5a46d;
    margin-bottom: 10px;
}

.music-prompt-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #5c3e2b;
    margin-bottom: 10px;
}

.music-prompt-content button {
    background: #c5a46d;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.music-prompt-content button:hover {
    background: #b58b4d;
    transform: scale(1.02);
}

@keyframes slideIn {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

