@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Montserrat:wght@400;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f3f3;
    position: relative;
}

/* Kalp animasyonları için container */
.floating-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.floating-heart {
    position: absolute;
    color: #ff6b6b;
    opacity: 0.5;
    animation: float-up 20s linear infinite;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) scale(0.5);
        opacity: 0;
    }
    20% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-50px) translateX(20px) scale(1);
        opacity: 0;
    }
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    padding: 30px 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    color: white;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(255,107,107,0.3);
    position: relative;
    overflow: hidden;
}

h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.message {
    background-color: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    line-height: 1.8;
    position: relative;
}

.message h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.countdown {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #fff 0%, #fcf3f3 100%);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    position: relative;
}

.countdown-number {
    color: #ff6b6b;
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 1.5s infinite;
    display: inline-block;
    min-width: 60px;
}

.heart-icon {
    color: #ff6b6b;
    font-size: 1.8rem;
    animation: pulse 1.5s infinite;
    display: inline-block;
    margin: 0 5px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

footer {
    text-align: center;
    padding: 20px 0;
    color: #666;
    margin-top: 20px;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255,107,107,0.4);
}

.button:hover {
    background: linear-gradient(135deg, #ff8e8e 0%, #ff6b6b 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,107,107,0.5);
}

.special-moment {
    background: linear-gradient(135deg, #fff8f8 0%, #fff 100%);
    border-radius: 16px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid #ff6b6b;
}

.special-moment h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #ff6b6b;
    margin-bottom: 15px;
}

.distance-section {
    background-color: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin: 40px 0;
    text-align: center;
    position: relative;
}

.distance-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.hearts-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}

.heart-large {
    color: #ff6b6b;
    font-size: 3rem;
    animation: pulse 1.5s infinite;
}

.dotted-line {
    height: 2px;
    width: 100px;
    background-image: linear-gradient(to right, #ff6b6b 50%, transparent 50%);
    background-size: 10px 1px;
    background-repeat: repeat-x;
    margin: 0 10px;
}

.quote {
    font-style: italic;
    font-size: 1.1rem;
    color: #666;
    margin: 20px 0;
    text-align: center;
}

.wishes-section {
    background: linear-gradient(135deg, #fff8f8 0%, #fff 100%);
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.wishes-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: #ff6b6b;
    margin-bottom: 20px;
    text-align: center;
}

.wish-item {
    display: flex;
    align-items: center;
    margin: 15px 0;
    padding: 10px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.wish-icon {
    margin-right: 15px;
    font-size: 1.5rem;
    color: #ff6b6b;
}

.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: #ff6b6b;
    animation: confetti-fall 5s ease-in infinite;
    z-index: -1;
}

@keyframes confetti-fall {
    0% {
        opacity: 1;
        transform: translateY(-100vh) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(100vh) rotate(360deg);
    }
}

.button-container {
    text-align: center;
    margin: 40px 0;
}

.countdown-message {
    margin-top: 20px;
    font-weight: bold;
    color: #ff6b6b;
}

.gallery-section {
    margin: 60px 0;
    padding: 20px;
    background-color: #fff5f5;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.1);
}

.gallery-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #ff6b6b;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    position: relative;
}

.gallery-title:after {
    content: "❤";
    position: absolute;
    top: -10px;
    right: 30%;
    font-size: 1.5rem;
    color: #ffb6b6;
    opacity: 0.7;
}

.gallery {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px auto;
    max-width: 900px;
}

.gallery-item {
    flex: 0 0 calc(50% - 15px);
    max-width: 400px;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(255, 107, 107, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Mobil ekranlar için düzenleme */
@media (max-width: 768px) {
    .gallery {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-item {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
}

.memories-section {
    margin: 40px 0;
}

.memories-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: #ff6b6b;
    text-align: center;
    margin-bottom: 30px;
}

.memory-timeline {
    position: relative;
    margin: 50px 0;
    padding-left: 50px;
}

.memory-timeline:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #ff6b6b 0%, #ff8e8e 60%, #f9f3f3 100%);
}

.memory {
    position: relative;
    margin-bottom: 40px;
}

.memory:before {
    content: '❤️';
    position: absolute;
    left: -50px;
    top: 0;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(255,107,107,0.3);
    font-size: 20px;
}

.memory-date {
    display: inline-block;
    padding: 5px 10px;
    background-color: #ff6b6b;
    color: white;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.memory-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.music-player {
    background-color: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin: 40px 0;
    text-align: center;
}

.music-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.music-notes {
    margin: 20px 0;
}

.music-note {
    font-size: 2rem;
    color: #ff6b6b;
    animation: bounce 2s infinite;
    display: inline-block;
    margin: 0 10px;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.music-lyrics {
    font-style: italic;
    color: #666;
    margin: 20px 0;
}

.special-message {
    background: linear-gradient(135deg, #fff8f8 0%, #fff 100%);
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.special-message:before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.5;
}

.special-message-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.signature {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: #ff6b6b;
    margin-top: 30px;
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}
