* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f5f5f5;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

.main-couple {
    text-align: center;
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.couple-title {
    font-family: 'Playfair Display', serif;
    font-size: 5em;
    font-weight: 400;
    color: #2c2c2c;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.name {
    font-weight: 700;
    letter-spacing: 2px;
}

.ampersand {
    font-size: 0.8em;
    font-weight: 400;
    font-style: italic;
    color: #666;
}

.heart-icon {
    font-size: 2.5em;
    color: #d4a5a5;
    animation: heartBeat 2s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.1);
        opacity: 1;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    font-size: 2em;
    color: #999;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Content Sections */
section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
}

.content-box {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    color: #2c2c2c;
    margin-bottom: 40px;
    font-weight: 400;
}

.small-title {
    font-size: 2em;
    color: #666;
}

/* Story Section */
.story-section {
    background: white;
}

.story-text {
    font-size: 1.3em;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
}

/* Moments Section */
.moments-section {
    background: #fafafa;
}

.moments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.moment-card {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.moment-card:hover {
    transform: translateY(-10px);
}

.moment-icon {
    font-size: 3em;
    margin-bottom: 15px;
    color: #d4a5a5;
}

.moment-icon i {
    transition: transform 0.3s ease;
}

.moment-card:hover .moment-icon i {
    transform: scale(1.2);
}

.moment-card p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
}

/* Quote Section */
.quote-section {
    background: #2c2c2c;
    color: white;
}

.quote-box {
    max-width: 700px;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.quote-author {
    font-size: 1.2em;
    color: #999;
    font-weight: 300;
}

/* Baldız Section */
.baldiz-section {
    background: white;
}

.baldiz-couple {
    margin-top: 40px;
}

.baldiz-names {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    color: #2c2c2c;
    font-weight: 400;
    margin-bottom: 15px;
}

.baldiz-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: #2c2c2c;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 8px;
    margin-top: 20px;
    text-transform: lowercase;
    position: relative;
    display: inline-block;
}

.baldiz-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4a5a5, transparent);
}

/* Footer */
.footer-section {
    background: #f5f5f5;
    min-height: 40vh;
}

.footer-text {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 10px;
}

.footer-year {
    font-size: 1em;
    color: #999;
}

/* Gizli Disclaimer Butonu */
.disclaimer-btn {
    margin-top: 40px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.3;
    transition: all 0.3s ease;
    font-size: 1.2em;
    color: #999;
}

.disclaimer-btn:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

/* Disclaimer Modal */
.disclaimer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.disclaimer-modal.active {
    display: flex;
}

.disclaimer-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 550px;
    text-align: center;
    position: relative;
    animation: slideUp 0.3s ease;
    max-height: 80vh;
    overflow-y: auto;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.disclaimer-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.disclaimer-content p {
    font-size: 1em;
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
    text-align: left;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5em;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #2c2c2c;
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .couple-title {
        font-size: 3em;
        gap: 15px;
        flex-direction: column;
    }
    
    .ampersand {
        font-size: 1em;
    }
    
    .heart-icon {
        font-size: 2em;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .story-text {
        font-size: 1.1em;
    }
    
    .quote-text {
        font-size: 1.8em;
    }
    
    .baldiz-names {
        font-size: 2em;
    }
    
    .moments-grid {
        grid-template-columns: 1fr;
    }
}

