* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f3f5;
    color: #333;
    min-height: 100vh;
    overflow-x: hidden;
}

section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* İlk bölüm - Ana başlık ve balonlar */
.main-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #d48a9b;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.subtitle {
    font-size: 1.4rem;
    line-height: 1.5;
    max-width: 80%;
    margin: 0 auto;
    color: #666;
}

.balloon {
    position: absolute;
    z-index: 1;
    cursor: pointer;
}

.balloon-wrapper {
    position: relative;
    animation: floatAnimation 0.5s ease-in-out infinite alternate;
}

.balloon-body {
    width: 40px;
    height: 50px;
    border-radius: 50%;
    position: relative;
    box-shadow: inset -5px -5px 5px rgba(0,0,0,0.1);
}

.balloon-string {
    width: 1px;
    height: 60px;
    background-color: rgba(0,0,0,0.5);
    margin: 0 auto;
    margin-top: -5px;
}

.balloon-knot {
    width: 8px;
    height: 8px;
    background-color: rgba(0,0,0,0.3);
    border-radius: 50%;
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
}

.balloon-reflection {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.3);
    top: 10px;
    left: 10px;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-5px) rotate(2deg);
    }
}

@keyframes popAnimation {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
    100% {
        transform: scale(0.1);
        opacity: 0;
    }
}

/* Konfeti efekti için stiller */
.confetti {
    position: absolute;
    width: 8px;
    height: 8px;
    z-index: 10;
    pointer-events: none;
}

@keyframes confettiFall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100px) rotate(360deg);
        opacity: 0;
    }
}

/* İkinci bölüm - Geri sayım sayacı */
.countdown-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, #f9f3f5, #f0e6e8);
    padding: 20px;
}

.countdown-title {
    font-size: 2.2rem;
    color: #d48a9b;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.countdown-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 2rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.countdown-number {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
    color: #d48a9b;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    min-width: 100px;
    margin-bottom: 10px;
}

.countdown-label {
    font-size: 1rem;
    text-transform: uppercase;
    color: #666;
}

/* Üçüncü bölüm - Nişan yeri ve adres */
.location-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, #f0e6e8, #f9f3f5);
    padding: 40px 20px;
}

.location-title {
    font-size: 2.2rem;
    color: #d48a9b;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.location-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 600px;
    width: 90%;
    margin-bottom: 40px;
}

.venue-name {
    font-size: 1.8rem;
    color: #d48a9b;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.venue-details {
    margin: 20px 0;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.btn-directions {
    display: inline-block;
    background-color: #d48a9b;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 138, 155, 0.3);
}

.btn-directions:hover {
    background-color: #c27688;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 138, 155, 0.4);
}

.map-pin {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #d48a9b;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    margin-bottom: 10px;
    position: relative;
}

.map-pin:after {
    content: '';
    width: 20px;
    height: 20px;
    background-color: white;
    position: absolute;
    border-radius: 50%;
    top: 10px;
    left: 10px;
}

.directions-icon {
    display: inline-block;
    margin-right: 8px;
    position: relative;
    top: 2px;
}

.directions-icon:before {
    content: '➣';
    font-size: 1.2rem;
}

/* Dördüncü bölüm - Takvim Entegrasyonu */
.calendar-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, #f9f3f5, #f0e6e8);
    padding: 40px 20px;
}

.calendar-title {
    font-size: 2.2rem;
    color: #d48a9b;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.calendar-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 600px;
    width: 90%;
    margin-bottom: 40px;
}

.calendar-text {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.calendar-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.calendar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    border: 2px solid #d48a9b;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 180px;
}

.calendar-btn:hover {
    background-color: #d48a9b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.calendar-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Scroll okları */
.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 5;
}

.arrow-down {
    width: 40px;
    height: 40px;
    border: solid #d48a9b;
    border-width: 0 4px 4px 0;
    display: inline-block;
    transform: rotate(45deg);
}

/* En başa dön butonu */
.back-to-top {
    display: block;
    text-align: center;
    margin-top: 40px;
    text-decoration: none;
}

.back-to-top-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    color: #d48a9b;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.back-to-top-button:hover {
    transform: translateY(-5px);
}

.arrow-up {
    width: 30px;
    height: 30px;
    border: solid #d48a9b;
    border-width: 4px 0 0 4px;
    display: inline-block;
    transform: rotate(45deg);
    margin-bottom: 10px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .countdown-number {
        font-size: 2rem;
        min-width: 70px;
        padding: 10px;
    }
    
    .countdown-container {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 70px;
    }
    
    .calendar-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .calendar-btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
        min-width: 60px;
        padding: 8px;
    }
}