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

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(180deg, #f7efe7 0%, #efe3d6 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    color: #5a4a42;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 240, 235, 0.7);
    z-index: -1;
}

.music-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212, 165, 165, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 165, 165, 0.4);
    z-index: 2000;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.music-toggle.visible {
    opacity: 1;
    visibility: visible;
}

.music-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(212, 165, 165, 0.6);
}

.music-toggle:active {
    transform: scale(0.95);
}

.music-icon {
    color: white;
    width: 24px;
    height: 24px;
}

.butterflies-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

.butterfly {
    position: absolute;
    font-size: 20px;
    opacity: 0.6;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    will-change: transform;
    transform-origin: center center;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    z-index: 2000;
    transition: opacity 1s ease, visibility 1s ease;
}

.video-container.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#introVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.menu.visible {
    opacity: 1;
    visibility: visible;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 20px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #8b7355;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-items {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 40px;
}

.menu-items li {
    padding: 20px 0;
}

.menu-items a {
    text-decoration: none;
    color: #8b7355;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.menu-items a:hover {
    color: #d4a5a5;
}

.content {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease 0.5s, visibility 1s ease 0.5s;
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
}

.content.visible {
    opacity: 1;
    visibility: visible;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: transform, opacity;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.sakura-tree {
    position: absolute;
    width: 400px;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    opacity: 0.8;
}

.sakura-tree.left {
    left: 0;
    transform: scaleX(-1);
}

.sakura-tree.right {
    right: 0;
}

.hero-content {
    text-align: center;
    z-index: 10;
    animation: fadeInUp 1.5s ease;
}

.couple-names {
    font-size: 64px;
    font-weight: 300;
    color: #8b7355;
    margin-bottom: 20px;
    font-family: 'Brush Script MT', cursive;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.bride-name, .groom-name {
    display: block;
}

.ampersand {
    font-size: 40px;
    color: #d4a5a5;
}

.wedding-date {
    font-size: 24px;
    color: #8b7355;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.wedding-time {
    font-size: 18px;
    color: #a89080;
    margin-bottom: 40px;
}

/* ---- Nikah "Yakında" section ---- */
.upcoming-section {
    padding: 60px 20px 80px;
    max-width: 760px;
    margin: 0 auto;
}

.upcoming-card {
    position: relative;
    text-align: center;
    padding: 64px 36px 56px;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 232, 240, 0.85) 0%, rgba(255, 255, 255, 0.96) 60%),
        linear-gradient(180deg, #ffffff 0%, #fff5f8 100%);
    border-radius: 28px;
    border: 1px solid rgba(255, 192, 213, 0.45);
    box-shadow:
        0 24px 70px rgba(212, 165, 165, 0.22),
        0 0 0 6px rgba(255, 255, 255, 0.7),
        0 0 90px rgba(255, 192, 213, 0.28);
    overflow: visible;
    animation: upcomingFloat 7s ease-in-out infinite;
}

@keyframes upcomingFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
}

.upcoming-flourish {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -26px;
    font-size: 40px;
    line-height: 1;
    filter: drop-shadow(0 6px 14px rgba(212, 165, 165, 0.45));
    animation: flourishSpin 14s linear infinite;
}

.upcoming-flourish.bottom {
    top: auto;
    bottom: -20px;
    font-size: 32px;
    animation-direction: reverse;
}

.upcoming-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #a89080;
    margin: 0 0 14px;
}

.upcoming-heading {
    font-family: 'Georgia', serif;
    font-size: 20px;
    font-weight: 300;
    color: #8b7355;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 18px;
}

.upcoming-big {
    font-family: 'Brush Script MT', cursive;
    font-size: 84px;
    line-height: 1;
    color: #b86b6b;
    margin: 0 0 24px;
    letter-spacing: 1px;
    text-shadow: 0 4px 18px rgba(212, 165, 165, 0.3);
}

.upcoming-divider {
    display: block;
    width: 90px;
    height: 1px;
    margin: 0 auto 22px;
    background: linear-gradient(90deg, transparent, rgba(184, 107, 107, 0.45), transparent);
}

.upcoming-foot {
    font-size: 15px;
    color: #6f5b4c;
    margin: 0;
    line-height: 1.65;
    font-style: italic;
}

@media (max-width: 768px) {
    .upcoming-section { padding: 40px 16px 60px; }
    .upcoming-card { padding: 52px 24px 44px; border-radius: 22px; }
    .upcoming-big { font-size: 68px; }
    .upcoming-heading { font-size: 17px; letter-spacing: 3px; }
    .upcoming-flourish { font-size: 34px; top: -22px; }
    .upcoming-flourish.bottom { font-size: 28px; bottom: -16px; }
}

@media (max-width: 480px) {
    .upcoming-big { font-size: 56px; }
    .upcoming-foot { font-size: 14px; }
}

.scroll-indicator {
    font-size: 32px;
    color: #d4a5a5;
    animation: bounce 2s infinite;
}

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

.sakura-divider {
    text-align: center;
    padding: 40px 0;
    overflow: hidden;
}

.sakura-branch {
    max-width: 300px;
    height: auto;
    opacity: 0.7;
}

.davetiye {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin: 20px auto;
    display: block;
    aspect-ratio: 900 / 1268;
}

section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

section h2 {
    text-align: center;
    font-size: 36px;
    color: #8b7355;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
}

.countdown-section {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 50px 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.event-date {
    text-align: center;
    color: #d4a5a5;
    font-size: 18px;
    margin-bottom: 30px;
    font-style: italic;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

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

.countdown-value {
    font-size: 48px;
    font-weight: 300;
    color: #d4a5a5;
    line-height: 1;
}

.countdown-label {
    font-size: 14px;
    color: #8b7355;
    margin-top: 10px;
    letter-spacing: 1px;
}

.gallery-section {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 50px 30px;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.photo-item {
    text-align: center;
}

.polaroid {
    background: white;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.polaroid:nth-child(even) {
    transform: rotate(2deg);
}

.polaroid:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.photo-frame {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 15px;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-caption {
    font-size: 16px;
    color: #8b7355;
    font-family: 'Brush Script MT', cursive;
}

.schedule-section {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 50px 30px;
}

.schedule-timeline {
    max-width: 500px;
    margin: 0 auto;
}

.schedule-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    border-left: 4px solid #d4a5a5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(212, 165, 165, 0.2);
}

.schedule-time {
    font-size: 20px;
    font-weight: 600;
    color: #d4a5a5;
    min-width: 80px;
}

.schedule-event {
    font-size: 16px;
    color: #8b7355;
    text-align: right;
    flex: 1;
}

.location-section {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
}

.location-image {
    margin-bottom: 30px;
}

.location-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 5px solid white;
}

.map-container {
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-height: 300px;
    position: relative;
    background: linear-gradient(180deg, #f8f2eb 0%, #efe4d8 100%);
}

.map-container iframe {
    display: none;
}

.map-container iframe.loaded {
    display: block;
}

.load-map-button {
    width: 100%;
    min-height: 300px;
    border: none;
    background: transparent;
    color: #8b7355;
    font-size: 18px;
    cursor: pointer;
    letter-spacing: 0.5px;
    font-family: inherit;
}

.directions-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #d4a5a5;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(212, 165, 165, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px;
}

.location-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.directions-button.secondary {
    background: #ffffff;
    color: #8b7355;
    border: 1px solid #d9c6b8;
    box-shadow: 0 5px 20px rgba(139, 115, 85, 0.12);
}

.directions-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 165, 0.4);
}

.rsvp-section {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
}

.story-section {
    background: rgba(255, 255, 255, 0.55);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
}

.story-section p {
    max-width: 680px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: #7e6c61;
}

.seo-landing-section {
    background: rgba(255, 255, 255, 0.62);
    border-radius: 20px;
    padding: 50px 30px;
}

.seo-intro {
    text-align: center;
    color: #7e6c61;
    max-width: 720px;
    margin: 0 auto 26px;
    line-height: 1.7;
}

.seo-link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.seo-link-card {
    display: block;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #eadfd3;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.seo-link-card h3 {
    font-size: 18px;
    color: #8b7355;
    margin-bottom: 8px;
}

.seo-link-card p {
    color: #7e6c61;
    line-height: 1.6;
}

.seo-link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(139, 115, 85, 0.16);
}

.faq-section {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 50px 30px;
}

.faq-item + .faq-item {
    margin-top: 12px;
}

.faq-question {
    width: 100%;
    border: none;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.85);
    color: #8b7355;
    text-align: left;
    padding: 16px 18px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.35s ease;
    opacity: 0;
    padding: 0 6px;
}

.faq-item.active .faq-answer {
    max-height: 140px;
    opacity: 1;
    padding-top: 8px;
}

.faq-answer p {
    color: #7e6c61;
    line-height: 1.6;
}

.rsvp-text {
    font-size: 18px;
    color: #8b7355;
    margin-bottom: 40px;
    font-style: italic;
}

.rsvp-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.rsvp-live-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #eadfd3;
    border-radius: 16px;
    padding: 24px 18px;
    margin: 0 auto 28px;
    max-width: 360px;
    box-shadow: 0 10px 26px rgba(139, 115, 85, 0.1);
}

.rsvp-live-label {
    font-size: 14px;
    color: #8b7355;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.rsvp-live-value {
    font-size: 34px;
    color: #d4a5a5;
    margin-bottom: 6px;
    font-weight: 600;
}

.rsvp-live-updated {
    font-size: 13px;
    color: #8b7355;
}

.rsvp-action-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid #eadfd3;
    border-radius: 16px;
    padding: 20px 18px;
    margin: 0 auto 24px;
    max-width: 360px;
    text-align: center;
}

.rsvp-action-title {
    color: #8b7355;
    margin-bottom: 12px;
    font-size: 15px;
}

.rsvp-guest-label {
    display: block;
    font-size: 13px;
    color: #8b7355;
    margin-bottom: 6px;
}

.rsvp-guest-select {
    width: 100%;
    max-width: 220px;
    margin: 0 auto 12px;
    padding: 10px 12px;
    border: 1px solid #d9c6b8;
    border-radius: 10px;
    background: #fff;
    color: #6f5b4c;
    font-size: 14px;
}

.rsvp-confirm-button {
    border: none;
    border-radius: 999px;
    padding: 12px 24px;
    background: #d4a5a5;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.rsvp-confirm-button:hover {
    transform: translateY(-1px);
}

.rsvp-confirm-button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.rsvp-action-status {
    margin-top: 10px;
    font-size: 13px;
    color: #7e6c61;
    min-height: 18px;
}

.info-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item h3 {
    font-size: 18px;
    color: #d4a5a5;
    margin-bottom: 15px;
    font-weight: 400;
}

.info-item p {
    font-size: 14px;
    color: #8b7355;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }

    body::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 100%;
    }

    .menu-toggle {
        display: flex;
    }
    
    .menu-items {
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .menu-items.active {
        max-height: 400px;
    }
    
    .menu-items li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-top: 1px solid #f0f0f0;
    }
    
    .sakura-tree {
        width: 160px;
        opacity: 0.4;
        background-image: none;
    }
    
    .couple-names {
        font-size: 48px;
    }
    
    .wedding-date {
        font-size: 20px;
    }
    
    section h2 {
        font-size: 28px;
    }
    
    .countdown-value {
        font-size: 36px;
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
    }

    .reveal {
        transform: translateY(12px);
        transition-duration: 0.55s;
    }
}

@media (min-width: 769px) {
    body {
        background: url('../images/background.png') center center / cover no-repeat fixed;
    }

    .sakura-tree {
        background-image: url('../images/sakura-branch.png');
    }
}

@media (max-width: 480px) {
    #introVideo {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .couple-names {
        font-size: 36px;
    }
    
    .ampersand {
        font-size: 28px;
    }
    
    .wedding-date {
        font-size: 18px;
    }
    
    .wedding-time {
        font-size: 16px;
    }
    
    section {
        padding: 40px 15px;
    }
    
    section h2 {
        font-size: 24px;
    }
    
    .countdown-value {
        font-size: 28px;
    }
    
    .countdown-label {
        font-size: 12px;
    }
    
    .schedule-time {
        font-size: 16px;
        min-width: 60px;
    }
    
    .schedule-event {
        font-size: 14px;
    }
    
    .rsvp-info {
        grid-template-columns: 1fr;
    }

    .location-actions {
        flex-direction: column;
    }

    .directions-button {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal.in-view {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ===== SON GÜNLER: COUNTDOWN EFEKTİ ===== */
@keyframes countdownPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.07); }
}

@keyframes sectionGlow {
    0%, 100% { box-shadow: 0 10px 40px rgba(212, 165, 165, 0.05); }
    50% { box-shadow: 0 10px 55px rgba(212, 165, 165, 0.38), 0 0 40px rgba(212, 165, 165, 0.12); }
}

.countdown-section.last-days {
    animation: sectionGlow 3s ease-in-out infinite;
}

.countdown-section.last-days .countdown-value {
    color: #b86b6b;
    animation: countdownPulse 2s ease-in-out infinite;
}

.last-days-badge {
    display: block;
    width: fit-content;
    max-width: calc(100% - 24px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 22px;
    text-align: center;
    background: linear-gradient(135deg, #d4a5a5, #b86b6b);
    color: white;
    font-size: 13px;
    letter-spacing: 0.8px;
    padding: 6px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(212, 165, 165, 0.4);
    animation: countdownPulse 2.4s ease-in-out infinite;
}

/* ===== TOAST BANNER ===== */
.toast-banner {
    position: fixed;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%) translateY(16px);
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid #eadfd3;
    border-radius: 50px;
    padding: 13px 24px;
    box-shadow: 0 8px 32px rgba(139, 115, 85, 0.2);
    font-size: 15px;
    color: #8b7355;
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
    white-space: nowrap;
    cursor: pointer;
}

.toast-banner.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

@media (max-width: 480px) {
    .toast-banner {
        font-size: 13px;
        padding: 11px 18px;
        white-space: normal;
        text-align: center;
        max-width: calc(100vw - 40px);
    }
}

/* ===== HAVA DURUMU KARTI ===== */
.weather-card {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid #eadfd3;
    border-radius: 16px;
    padding: 14px 22px;
    margin: 0 auto 24px;
    max-width: 300px;
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.1);
}

.weather-card.loaded {
    display: flex;
}

.weather-icon {
    font-size: 34px;
    line-height: 1;
    flex-shrink: 0;
}

.weather-info {
    text-align: left;
}

.weather-date-label {
    font-size: 11px;
    color: #a89080;
    letter-spacing: 0.4px;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.weather-desc {
    font-size: 15px;
    color: #8b7355;
    margin-bottom: 2px;
}

.weather-temp {
    font-size: 13px;
    color: #d4a5a5;
    font-weight: 600;
}

/* ===== ETKİNLİK GÜNÜ MESAJI ===== */
.event-day-msg {
    font-size: 22px;
    color: #d4a5a5;
    font-style: italic;
    padding: 10px 0;
    line-height: 1.5;
}

/* ===== SAKURA KONFETİ ===== */
.sakura-petal {
    position: fixed;
    top: -30px;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    animation: petalFall linear forwards;
    will-change: transform, opacity;
    user-select: none;
}

@keyframes petalFall {
    0% {
        opacity: 0.95;
        transform: translateY(0) rotate(0deg) translateX(0px);
    }
    25% {
        transform: translateY(25vh) rotate(90deg) translateX(28px);
    }
    50% {
        transform: translateY(50vh) rotate(180deg) translateX(-18px);
    }
    75% {
        transform: translateY(75vh) rotate(270deg) translateX(36px);
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(108vh) rotate(360deg) translateX(8px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .countdown-section.last-days { animation: none; }
    .countdown-section.last-days .countdown-value { animation: none; }
    .last-days-badge { animation: none; }
    .sakura-petal { display: none; }
}

/* ===================================================== */
/* BLOOM MODE — 10 Mayis 2026 Pazar 13:00'da aktiflesir  */
/* Sayfa cicek bahcesine donusur                          */
/* ===================================================== */

/* FOUC guard — script.js calismadan once gercek site gozukmesin */
html.bloom-init,
html.bloom-init body {
    overflow: hidden !important;
    height: 100vh;
    background: radial-gradient(ellipse at center, #fff5f8 0%, #ffe9f0 60%, #ffd9e4 100%) !important;
}

html.bloom-init body .menu,
html.bloom-init body .video-container,
html.bloom-init body .toast-banner,
html.bloom-init body .butterflies-container,
html.bloom-init body .content {
    display: none !important;
}

.bloom-garden {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 60;
    opacity: 0;
    transition: opacity 1.6s ease;
}

html.bloom-init .bloom-garden,
html.bloom-init .bloom-showcase {
    opacity: 1;
    visibility: visible;
}

body.bloom-mode .bloom-garden {
    opacity: 1;
}

.garden-corner {
    position: absolute;
    width: 320px;
    height: 320px;
    background-repeat: no-repeat;
    background-size: contain;
    transform: scale(0);
    transform-origin: center;
    transition: transform 2.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 6px 18px rgba(212, 165, 165, 0.35));
}

.garden-tl {
    top: 0;
    left: 0;
    background-image: radial-gradient(circle at 30% 30%, #ffd1dc 0 14px, transparent 16px),
                      radial-gradient(circle at 60% 50%, #ffb3c6 0 12px, transparent 14px),
                      radial-gradient(circle at 25% 65%, #f7c5cf 0 10px, transparent 12px),
                      radial-gradient(circle at 75% 25%, #ffe0e9 0 9px, transparent 11px),
                      radial-gradient(circle at 50% 80%, #ffc1d5 0 11px, transparent 13px);
    transform-origin: top left;
}

.garden-tr {
    top: 0;
    right: 0;
    background-image: radial-gradient(circle at 70% 30%, #ffd1dc 0 14px, transparent 16px),
                      radial-gradient(circle at 40% 50%, #ffb3c6 0 12px, transparent 14px),
                      radial-gradient(circle at 75% 65%, #f7c5cf 0 10px, transparent 12px),
                      radial-gradient(circle at 25% 25%, #ffe0e9 0 9px, transparent 11px),
                      radial-gradient(circle at 50% 80%, #ffc1d5 0 11px, transparent 13px);
    transform-origin: top right;
}

.garden-bl {
    bottom: 0;
    left: 0;
    background-image: radial-gradient(circle at 30% 70%, #ffd1dc 0 14px, transparent 16px),
                      radial-gradient(circle at 60% 50%, #ffb3c6 0 12px, transparent 14px),
                      radial-gradient(circle at 25% 35%, #f7c5cf 0 10px, transparent 12px),
                      radial-gradient(circle at 75% 75%, #ffe0e9 0 9px, transparent 11px),
                      radial-gradient(circle at 50% 20%, #ffc1d5 0 11px, transparent 13px);
    transform-origin: bottom left;
}

.garden-br {
    bottom: 0;
    right: 0;
    background-image: radial-gradient(circle at 70% 70%, #ffd1dc 0 14px, transparent 16px),
                      radial-gradient(circle at 40% 50%, #ffb3c6 0 12px, transparent 14px),
                      radial-gradient(circle at 75% 35%, #f7c5cf 0 10px, transparent 12px),
                      radial-gradient(circle at 25% 75%, #ffe0e9 0 9px, transparent 11px),
                      radial-gradient(circle at 50% 20%, #ffc1d5 0 11px, transparent 13px);
    transform-origin: bottom right;
}

body.bloom-mode .garden-corner {
    transform: scale(1);
    animation: gardenSway 7s ease-in-out infinite;
}

body.bloom-mode .garden-tr { animation-delay: 0.4s; }
body.bloom-mode .garden-bl { animation-delay: 0.8s; }
body.bloom-mode .garden-br { animation-delay: 1.2s; }

@keyframes gardenSway {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50%      { transform: scale(1.04) rotate(2deg); }
}

.garden-vine {
    position: absolute;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: radial-gradient(circle at 5% 50%, #ffc1d5 0 10px, transparent 12px),
                      radial-gradient(circle at 15% 30%, #ffd1dc 0 9px, transparent 11px),
                      radial-gradient(circle at 25% 60%, #f7c5cf 0 11px, transparent 13px),
                      radial-gradient(circle at 38% 40%, #ffb3c6 0 10px, transparent 12px),
                      radial-gradient(circle at 50% 55%, #ffe0e9 0 9px, transparent 11px),
                      radial-gradient(circle at 62% 35%, #ffc1d5 0 11px, transparent 13px),
                      radial-gradient(circle at 75% 60%, #ffd1dc 0 10px, transparent 12px),
                      radial-gradient(circle at 88% 40%, #f7c5cf 0 11px, transparent 13px),
                      radial-gradient(circle at 96% 55%, #ffb3c6 0 10px, transparent 12px);
    opacity: 0;
    transform: scaleY(0);
    transition: opacity 1.4s ease 0.6s, transform 1.4s ease 0.6s;
}

.garden-vine-top    { top: 0;    transform-origin: top; }
.garden-vine-bottom { bottom: 0; transform-origin: bottom; }

body.bloom-mode .garden-vine {
    opacity: 0.9;
    transform: scaleY(1);
}

/* Bloom Showcase — davetiye gorseli tek basina ekranda */
.bloom-showcase {
    position: fixed;
    inset: 0;
    display: flex;
    padding: 40px 24px;
    background: radial-gradient(ellipse at center, #fff5f8 0%, #ffe9f0 60%, #ffd9e4 100%);
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    overflow-x: hidden;
    transition: opacity 1.2s ease, visibility 1.2s ease;
    -webkit-overflow-scrolling: touch;
}

body.bloom-mode .bloom-showcase {
    opacity: 1;
    visibility: visible;
}

.bloom-stack {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    width: 100%;
    max-width: min(560px, 92vw);
}

.bloom-message {
    position: relative;
    max-width: min(560px, 92vw);
    width: 100%;
    padding: 56px 36px 48px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 232, 240, 0.9) 0%, rgba(255, 255, 255, 0.95) 60%),
        linear-gradient(180deg, #ffffff 0%, #fff5f8 100%);
    border-radius: 28px;
    border: 1px solid rgba(255, 192, 213, 0.45);
    box-shadow: 0 24px 70px rgba(212, 165, 165, 0.35),
                0 0 0 6px rgba(255, 255, 255, 0.7),
                0 0 90px rgba(255, 192, 213, 0.4);
    opacity: 0;
    transform: translateY(40px) scale(0.92);
    will-change: transform, opacity;
    backface-visibility: hidden;
}

body.bloom-mode .bloom-message {
    animation: bloomMessageRise 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards,
               bloomMessageFloat 6s ease-in-out 1.8s infinite;
}

@keyframes bloomMessageRise {
    from { opacity: 0; transform: translateY(40px) scale(0.92); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes bloomMessageFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-6px) scale(1.005); }
}

.bloom-message-flourish {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -28px;
    font-size: 44px;
    line-height: 1;
    filter: drop-shadow(0 6px 14px rgba(212, 165, 165, 0.5));
    animation: flourishSpin 12s linear infinite;
}

.bloom-message-flourish.bottom {
    top: auto;
    bottom: -22px;
    font-size: 36px;
    animation-direction: reverse;
}

@keyframes flourishSpin {
    from { transform: translateX(-50%) rotate(0deg); }
    to   { transform: translateX(-50%) rotate(360deg); }
}

.bloom-message-names {
    font-family: 'Brush Script MT', cursive;
    font-size: 56px;
    font-weight: 300;
    color: #b86b6b;
    margin: 0 0 24px;
    letter-spacing: 1px;
    line-height: 1.1;
}

.bloom-message-names span {
    color: #d4a5a5;
    margin: 0 6px;
    font-size: 0.7em;
    vertical-align: middle;
}

.bloom-message-body {
    font-family: 'Georgia', serif;
    font-size: 19px;
    line-height: 1.75;
    color: #6f5b4c;
    margin: 0 0 28px;
}

.bloom-message-body strong {
    color: #b86b6b;
    font-weight: 600;
}

.bloom-message-date {
    font-size: 13px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #a89080;
    margin: 0;
}

/* ---- Second card inside bloom-showcase: Nikah · Yakında ---- */
.bloom-upcoming-card {
    position: relative;
    max-width: min(460px, 92vw);
    width: 100%;
    padding: 48px 32px 40px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 232, 240, 0.85) 0%, rgba(255, 255, 255, 0.96) 60%),
        linear-gradient(180deg, #ffffff 0%, #fff5f8 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 192, 213, 0.45);
    box-shadow:
        0 18px 50px rgba(212, 165, 165, 0.25),
        0 0 0 5px rgba(255, 255, 255, 0.65),
        0 0 60px rgba(255, 192, 213, 0.32);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    will-change: transform, opacity;
    backface-visibility: hidden;
}

body.bloom-mode .bloom-upcoming-card {
    animation: bloomMessageRise 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1s forwards,
               bloomMessageFloat 6.5s ease-in-out 2.6s infinite;
}

.bloom-upcoming-eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #a89080;
    margin: 0 0 10px;
}

.bloom-upcoming-heading {
    font-family: 'Georgia', serif;
    font-size: 16px;
    font-weight: 300;
    color: #8b7355;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.bloom-upcoming-big {
    font-family: 'Brush Script MT', cursive;
    font-size: 64px;
    line-height: 1;
    color: #b86b6b;
    margin: 0 0 18px;
    letter-spacing: 1px;
    text-shadow: 0 4px 14px rgba(212, 165, 165, 0.3);
}

.bloom-upcoming-divider {
    display: block;
    width: 72px;
    height: 1px;
    margin: 0 auto 16px;
    background: linear-gradient(90deg, transparent, rgba(184, 107, 107, 0.4), transparent);
}

.bloom-upcoming-foot {
    font-size: 14px;
    color: #6f5b4c;
    margin: 0;
    line-height: 1.65;
    font-style: italic;
}

@media (max-width: 480px) {
    .bloom-message {
        padding: 48px 24px 40px;
        max-width: 92vw;
    }
    .bloom-message-names { font-size: 42px; }
    .bloom-message-body  { font-size: 17px; }
    .bloom-message-flourish { font-size: 36px; top: -22px; }
    .bloom-message-flourish.bottom { font-size: 30px; bottom: -18px; }

    .bloom-upcoming-card { padding: 38px 24px 32px; }
    .bloom-upcoming-big { font-size: 50px; }
    .bloom-upcoming-heading { font-size: 14px; letter-spacing: 2.6px; }
    .bloom-upcoming-foot { font-size: 13px; }
}

/* Bloom modunda diger her seyi gizle — sadece davetiye + cicek + garden */
body.bloom-mode .menu,
body.bloom-mode .video-container,
body.bloom-mode .toast-banner,
body.bloom-mode .butterflies-container,
body.bloom-mode .content {
    display: none !important;
}

/* Muzik dugmesi bloom'da sade gozuksun, sayfa kapagi gibi */
body.bloom-mode .music-toggle {
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

body.bloom-mode {
    overflow: hidden !important;
    height: 100vh;
    position: fixed;
    inset: 0;
    width: 100%;
}

@media (max-width: 480px) {
    .garden-corner {
        width: 200px;
        height: 200px;
    }
    .bloom-showcase {
        padding: 16px;
    }
}

/* Bloom petali — sayfaya yagacak cicekler (yagmur halinde) */
.bloom-petal {
    position: fixed;
    top: -40px;
    pointer-events: none;
    z-index: 9997;
    will-change: transform, opacity;
    user-select: none;
    transform: translate3d(0, 0, 0);
    animation: bloomFall linear forwards;
    contain: layout paint;
}

@keyframes bloomFall {
    0%   { opacity: 0; transform: translate3d(0, 0, 0) rotate(0deg); }
    10%  { opacity: 1; }
    100% { opacity: 0; transform: translate3d(20px, 110vh, 0) rotate(540deg); }
}

@media (prefers-reduced-motion: reduce) {
    body.bloom-mode .garden-corner { animation: none; }
    .bloom-petal { display: none; }
}
