
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #f5f5f5;
    overflow-x: hidden;
    line-height: 1.6;
    background-color: #0f1419;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Floating Hearts Animation */
.floating-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.heart {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #e8b4a0; /* Rose gold */
    transform: rotate(-45deg);
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.heart:before,
.heart:after {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    left: 10px;
    top: 0;
    background: #e8b4a0;
    border-radius: 10px;
    transform: rotate(-45deg);
    transform-origin: 0 10px;
}

.heart:after {
    left: 0;
    transform: rotate(45deg);
    transform-origin: 10px 10px;
}

.heart:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.heart:nth-child(2) {
    left: 30%;
    animation-delay: 1s;
    animation-duration: 8s;
}

.heart:nth-child(3) {
    left: 50%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.heart:nth-child(4) {
    left: 70%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.heart:nth-child(5) {
    left: 90%;
    animation-delay: 4s;
    animation-duration: 6s;
}

@keyframes float {
    0% {
        top: 100vh;
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        top: -20px;
        opacity: 0;
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.8), rgba(26, 35, 50, 0.6)), url('background.jpg') no-repeat center center/cover;
    background-size: cover;
    color: #FFFFFF;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #d4af37; /* Altın rengi */
}

.countdown-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.countdown-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2em;
    margin-bottom: 15px;
    opacity: 0.8;
    color: #cccccc;
}

.countdown {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2em;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    color: #f5f5f5;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Placeholder Section */
.content-placeholder {
    padding: 100px 0;
    background-color: #1a2332;
    color: #f5f5f5;
    text-align: center;
}

.content-placeholder .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    margin-bottom: 30px;
    color: #d4af37;
}

.content-placeholder p {
    font-size: 1.2em;
    opacity: 0.8;
}

/* Footer */
.footer {
    padding: 60px 0;
    background: #0f1419;
    color: #FFFFFF;
    text-align: center;
    border-top: 1px solid #4a4a4a;
}

.footer p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #cccccc;
}

.footer-date {
    opacity: 0.7;
    font-size: 1em !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.8em;
    }

    .countdown {
        font-size: 1.6em;
    }

    .countdown-container {
        padding: 20px 25px;
    }

    .content-placeholder .section-title {
        font-size: 2.2em;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.2em;
    }

    .countdown {
        font-size: 1.3em;
    }

    .countdown-container {
        padding: 15px 20px;
    }

    .content-placeholder .section-title {
        font-size: 1.8em;
    }
}




/* Photo Gallery Section */
.photo-gallery-section {
    padding: 80px 0;
    background-color: #1a2332;
    color: #f5f5f5;
    text-align: center;
}

.photo-gallery-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    margin-bottom: 30px;
    color: #d4af37;
}

.gallery-instruction {
    font-size: 1.1em;
    margin-bottom: 40px;
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
    .photo-gallery-section .section-title {
        font-size: 2.2em;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    .gallery-grid img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .photo-gallery-section .section-title {
        font-size: 1.8em;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid img {
        height: 200px;
    }
}




/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #d4af37;
}


