/* Hero Section */
.hero-section {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255,107,107,0.1) 0%, rgba(247,215,148,0.1) 100%);
    border-radius: 20px;
    margin-bottom: 3rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.timer-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    min-width: 100px;
    transition: transform 0.3s ease;
}

.timer-item:hover {
    transform: translateY(-5px);
}

.timer-item span {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.timer-item label {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

.timer-label {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-top: 1rem;
}

/* Dreams Timeline */
.dreams-timeline {
    margin: 4rem 0;
    position: relative;
}

.dreams-timeline h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    padding: 2rem 0;
    width: 50%;
    position: relative;
}

.timeline-item:nth-child(odd) {
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 3rem;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

/* Milestone Counter */
.milestone-counter {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.milestone-stats {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item span {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Category Filters */
.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    background: white;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(255,107,107,0.3);
}

/* Bucket List Grid */
.bucket-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.bucket-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.bucket-item:hover {
    transform: translateY(-5px);
}

/* Love Quotes */
.love-quotes {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.quote-carousel {
    position: relative;
    height: 100px;
}

.quote-item {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.quote-item.active {
    opacity: 1;
}

.quote-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.quote-nav button {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.quote-nav button:hover {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .countdown-timer {
        gap: 1rem;
    }

    .timer-item {
        min-width: 70px;
        padding: 1rem;
    }

    .timer-item span {
        font-size: 1.8rem;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item {
        width: 100%;
        margin-left: 0 !important;
        padding-left: 2rem !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .milestone-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes floatAnimation {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.floating {
    animation: floatAnimation 3s ease-in-out infinite;
}



/* Update these styles in your future-styles.css file */

/* Love Quotes Section */
.love-quotes {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-carousel {
    position: relative;
    height: 120px; /* Increased height to accommodate larger quotes */
    overflow: hidden;
}

.quote-item {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.quote-item.active {
    opacity: 1;
    pointer-events: auto;
}

.quote-item p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-color);
    font-style: italic;
    margin: 0;
    padding: 0 2rem;
}

.quote-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1rem 0;
}

.quote-nav button {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 107, 107, 0.1);
}

.quote-nav button:hover {
    transform: scale(1.1);
    background-color: var(--primary-color);
    color: white;
}

.quote-nav button:active {
    transform: scale(0.95);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .love-quotes {
        padding: 2rem;
    }

    .quote-carousel {
        height: 150px; /* Increased for mobile to accommodate wrapped text */
    }

    .quote-item p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}