/* --- Global Styles & Fonts --- */
body {
    font-family: 'Poppins', sans-serif;
    scroll-padding-top: 56px; /* Offset for fixed navbar */
}

.couple-names, .section-title {
    font-family: 'Playfair Display', serif;
}

.section-title {
    color: #5c3d2e; /* A warm, elegant brown */
    margin-bottom: 1.5rem;
}

/* --- Home Section --- */
#home {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/our-photo.jpg') no-repeat center center/contain;;
    background-attachment: aligned;
}

/* --- Countdown Timer --- */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 2.5rem;
    font-weight: 500;
}

.countdown-timer div {
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: 8px;
    min-width: 120px;
}

.countdown-timer span {
    display: block;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* --- Map Responsive --- */
.map-responsive {
    overflow: hidden;
    padding-bottom: 75%; /* Aspect ratio */
    position: relative;
    height: 0;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/* --- Gallery Carousel --- */
#photoCarousel .carousel-item img {
   height: 200vh;
    width: 100%;
    justify-content: justify;
    /* position: absolute; */
    object-fit: object-fit;
}