/* This file contains additional styles for the wedding website */
/* Most styles are included inline in the templates for simplicity */

/* Global Styles */
body {
    font-family: 'Montserrat', sans-serif;
    color: #5a5a5a;
    background-color: #faf7f2;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #3a3a3a;
}

/* Button Styles */
.btn-primary {
    background-color: #94b992;
    border-color: #94b992;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #876971;
    border-color: #876971;
}

.btn-outline-primary {
    color: #94b992;
    border-color: #94b992;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: #94b992;
    border-color: #94b992;
}

/* Timeline styles */
.timeline-wrapper {
    position: relative;
    padding: 30px 0;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 2px;
    background-color: #dee2e6;
    left: 20px;
    top: 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 60px;
}

.timeline-badge {
    position: absolute;
    width: 40px;
    height: 40px;
    left: 0;
    top: 0;
    border-radius: 50%;
    background-color: #94b992;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 1;
}

.timeline-content {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Animation for landing page */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

/* Flying plane animation */
@keyframes fly {
    0% {
        transform: translate(0, 0) rotate(-15deg);
    }
    25% {
        transform: translate(-50px, 30px) rotate(-5deg);
    }
    50% {
        transform: translate(-20px, -20px) rotate(-20deg);
    }
    75% {
        transform: translate(30px, 10px) rotate(-10deg);
    }
    100% {
        transform: translate(0, 0) rotate(-15deg);
    }
}

.flying-plane {
    position: absolute;
    top: 10%;
    right: 10%;
    transform: rotate(-15deg);
    z-index: 2;
    color: white;
    font-size: 4rem;
    animation: fly 15s infinite linear;
}

.flying-plane i {
    position: relative;
}

.flying-plane .heart {
    position: absolute;
    top: -5px;
    right: -15px;
    font-size: 1.5rem;
    color: #ff6b6b;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-date {
        font-size: 1.4rem !important;
    }
    
    .page-header {
        padding: 2.5rem 0 !important;
    }
    
    .section {
        padding: 3rem 0 !important;
    }
    
    /* Mobile timeline adjustments */
    .timeline::before {
        left: 40px;
    }
    
    .timeline-panel {
        width: calc(100% - 90px);
        float: right;
    }
    
    .timeline-badge {
        left: 40px;
        margin-left: 0;
    }
}
