#hero {
    background-image: url("../images/bg-hero.jpg")
}

#the-wedding-event {
    background-image: url("../images/bg-the-wedding-event.jpg")
}

#proposed {
    background-image: url("../images/bg-proposed.jpg")
}

#wedding-gifts {
    background-image: url("../images/bg-wedding-gifts.jpg")
}

footer {
    background-image: url("../images/bg-footer.jpg")
}

/*# sourceMappingURL=custom.min.css.map */



.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr; /* 4 columns for 4 boxes in one row */
    gap: 10px; /* Spacing between boxes */
    width: 240px; /* 4 boxes × 50px + 3 gaps × 10px = 230px, plus some padding */
    height: 60px; /* Height for single row */
}

.box {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 10px;
    border-radius: 50%; /* Makes boxes circular */
    width: 50px;
    height: 50px;
}

.box-1 {
    background-color: #e89e93;
}

.box-2 {
    background-color: #7c7c7c;
}

.box-3 {
    background-color: #fecbc8;
}

.box-4 {
    background-color: #11203d;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .grid-container {
        width: 240px;
        height: 60px;
        grid-template-columns: 1fr 1fr 1fr 1fr; /* Keep all in one row on mobile too */
        gap: 8px; /* Slightly smaller gap on mobile */
    }
    
    .box {
        width: 50px;
        height: 50px;
        font-size: 9px;
    }
}




 /* spotify on*/
  .spotify-section {
    background-color: white; /* Changed to white */
    backdrop-filter: none; /* Remove blur effect */
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Lighter shadow for white background */
    border: 1px solid rgba(0, 0, 0, 0.1); /* Darker border for white background */
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #333; /* Dark text for white background */
}

.playlist-preview {
    display: flex;
    gap: 30px;
    background-color: #f8f8f8; /* Light gray background for preview */
    border-radius: 15px;
    padding: 25px;
    transition: transform 0.3s ease;
}

.playlist-cover {
    width: 150px; /* Smaller image */
    height: 150px; /* Smaller image */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}
.playlist-cover img{
     display: block;
  margin-left: auto;
  margin-right: auto;
  width: 150px /* Set a specific width, e.g., 80% or 300px */;

}
.playlist-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333; /* Dark text for white background */
}

.playlist-description {
    color: #666; /* Darker gray for better contrast */
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #333; /* Dark text for white background */
}

.stat-label {
    font-size: 14px;
    color: #666; /* Darker gray for better contrast */
}

.track {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.2s;
    color: #333; /* Dark text for white background */
}



.track-number {
    color: #666; /* Darker gray for better contrast */
    font-size: 14px;
    width: 20px;
}

.track-title {
    flex: 1;
    font-size: 16px;
    color: #333; /* Dark text for white background */
}

.track-duration {
    color: #666; /* Darker gray for better contrast */
    font-size: 14px;
}
.spotify-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #1DB954;
    width: 30%;
    color: white;
    text-decoration: none;
    padding: 14px 28px 14px 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.3);
}

.spotify-button i {
    font-size: 54px; /* Bigger Spotify icon */
}

.section-header a:hover{
    text-decoration: none;
    color: white;
}



/* Mobile Responsiveness */
@media (max-width: 768px) {
    .playlist-cover {
        width: 130px; /* Even smaller on mobile */
        height: 130px; /* Even smaller on mobile */
    }
}

@media (max-width: 480px) {
    .playlist-cover {
        width: 120px; /* Smallest size for very small screens */
        height: 120px; /* Smallest size for very small screens */
    }
}


/* RSVP Code */


.rsvp-container {
            display: flex;
            gap: 30px;
            width: 100%;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .contact-card {
            background-color: white;
            border-radius: 20px;
            padding: 30px;
            width: 100%;
            max-width: 300px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .card-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: bold;
            color: white;
        }
        
        .avatar-1 {
            background: linear-gradient(135deg, #e89e93 0%, #fecbc8 100%);
        }
        
        .avatar-2 {
            background: linear-gradient(135deg, #7c7c7c 0%, #11203d 100%);
        }
        
        .contact-name {
            font-size: 24px;
            font-weight: 700;
            color: #11203d;
        }
        
        .contact-role {
            font-size: 16px;
            color: #7c7c7c;
            margin-top: 5px;
        }
        
        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .detail-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .detail-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f8f8f8;
            color: #11203d;
            font-size: 20px;
            flex-shrink: 0;
        }
        
        .detail-content {
            flex: 1;
        }
        
        .detail-label {
            font-size: 14px;
            color: #7c7c7c;
            margin-bottom: 5px;
        }
        
        .detail-value {
            font-size: 18px;
            font-weight: 600;
            color: #11203d;
        }
        
        .phone-link {
            color: #11203d;
            text-decoration: none;
            transition: color 0.3s ease;
            display: inline-block;
        }
        
        .phone-link:hover {
            color: #e89e93;
        }
        
        .call-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: #11203d;
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            margin-top: 10px;
        }
        
        .call-button:hover {
            background-color: #e89e93;
            transform: translateY(-2px);
        }
        
        .rsvp-note {
            background-color: white;
            border-radius: 15px;
            padding: 25px;
            width: 100%;
            max-width: 830px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            text-align: center;
            border-left: 5px solid #e89e93;
        }
        
        .note-title {
            font-size: 20px;
            font-weight: 700;
            color: #11203d;
            margin-bottom: 10px;
        }
        
        .note-text {
            font-size: 16px;
            color: #7c7c7c;
            line-height: 1.6;
        }
        
        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .rsvp-container {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-card {
                max-width: 100%;
            }
            
            .section-title {
                font-size: 28px;
            }
        }
        
        @media (max-width: 480px) {
            .contact-card {
                padding: 20px;
            }
            
            .card-header {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .section-subtitle {
                font-size: 16px;
            }
        }


        









   /* New Color Coding*/




:root {
    --bs-primary: #e89e93;
    --bs-secondary: #7c7c7c;
    --bs-secondary-2: #fecbc8;
    --bs-dark: #11203d;
    --bs-primary-rgb: 232, 158, 147;
    --bs-secondary-rgb: 124, 124, 124;
    --bs-secondary-2-rgb: 254, 203, 200;
    --bs-dark-rgb: 17, 32, 61;
    --bs-link-color: #e89e93;
    --bs-link-hover-color: #e89e93;
    --bs-body-color: #11203d;
    --bs-border-color: #fecbc8;
}

/* Background colors */
.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary-2 {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-secondary-2-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

/* Text colors */
.text-primary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary-2 {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-secondary-2-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

/* Border colors */
.border-primary {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary-2 {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-secondary-2-rgb), var(--bs-border-opacity)) !important;
}

.border-dark {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

/* Fill colors for SVGs */
.fill-primary {
    fill: #e89e93 !important;
}

.fill-secondary {
    fill: #7c7c7c !important;
}

.fill-secondary-2 {
    fill: #fecbc8 !important;
}

/* Navigation */
.nav-link.active {
    color: #e89e93 !important;
    text-decoration: underline;
}

.nav-link:hover {
    color: #11203d !important;
}

/* Buttons */
.btn {
    background: #fff;
    border: 2px solid #11203d;
    color: #11203d;
}

.btn:not(.border-0):hover {
    background: #11203d;
    color: #fff;
    border-color: #11203d;
}

/* Section styling */
.section-divider.divider-primary {
    background-image: url("../img/section-divider-primary.svg");
    filter: hue-rotate(130deg) saturate(1.5); /* Adjusts color to match new scheme */
}

.section-divider.divider-secondary {
    background-image: url("../img/section-divider-secondary.svg");
    filter: hue-rotate(0deg) saturate(0.5); /* Adjusts color to match gray scheme */
}

.sep-line {
    border-top: 4px solid #e89e93;
    opacity: 1;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, .98);
    box-shadow: 0 3px 16px rgba(17, 32, 61, 0.2);
}

/* Page elements */
.page-dots.is-selected {
    background-image: url("../img/icon-wedding-heart-primary.svg");
    filter: hue-rotate(130deg) saturate(1.5);
}

/* Form elements */
input, select, textarea {
    border-color: #fecbc8;
    color: #11203d;
}

input:focus, select:focus, textarea:focus {
    border-color: #e89e93;
    box-shadow: 0 0 0 0.2rem rgba(232, 158, 147, 0.25);
}

/* Links */
a {
    color: #e89e93;
}

a:hover {
    color: #11203d;
}

/* Background overlays */
.bg-overlay::before {
    background: rgba(17, 32, 61, 0.5);
}

/* Ornament colors */
.ornament-corner.ornament-primary:before,
.ornament-corner.ornament-primary:after {
    background-image: url("../img/ornament-corner-primary.png");
    filter: hue-rotate(130deg) saturate(1.5);
}

/* Modal and overlay elements */
.modal-header {
    border-bottom-color: #fecbc8;
}

.modal-footer {
    border-top-color: #fecbc8;
}

/* Table elements */
th {
    background-color: #fecbc8;
    color: #11203d;
}

/* Code and pre elements */
code {
    color: #e89e93;
}

pre {
    background-color: #fecbc8;
    color: #11203d;
}

/* Selection color */
::selection {
    background: #fecbc8;
    color: #11203d;
}

::-moz-selection {
    background: #fecbc8;
    color: #11203d;
}

/* Scrollbar styling */
@media (min-width: 992px) {
    ::-webkit-scrollbar-thumb {
        background: rgba(124, 124, 124, 0.8);
    }
    
    ::-webkit-scrollbar-track {
        box-shadow: inset 0 0 6px rgba(17, 32, 61, 0.3);
    }
}


#wedding-gifts .bg-white {
    width: 95% !important;
    max-width: 100% !important;
    margin: 0 auto;
}

/* Mobile */
@media (max-width: 767.98px) {
    #wedding-gifts .bg-white {
        width: 92% !important;
        padding: 2rem 1.5rem !important;
    }
}

/* Tablet */
@media (min-width: 768px) {
    #wedding-gifts .bg-white {
        width: 85% !important;
        max-width: 800px !important;
    }
}

/* Desktop */
@media (min-width: 992px) {
    #wedding-gifts .bg-white {
        width: 70% !important;
        max-width: 900px !important;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    #wedding-gifts .bg-white {
        width: 65% !important;
        max-width: 1000px !important;
    }
}

.spotify-button {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    background-color: #1DB954;
    width: 100%;
    max-width: 280px;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.3);
}

.spotify-button i {
    font-size: 24px;
}

/* Tablet & Desktop */
@media (min-width: 768px) {
    .spotify-button {
        width: 30%;
        max-width: 300px;
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .spotify-button i {
        font-size: 32px;
    }
}


.image-flex-container {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.flex-image {
    flex: 1;
    min-width: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1 / 1; /* Makes container square */
}

.flex-image img {
    width: 100%;
    height: 100%; /* Fill the square container */
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* Mobile First Approach */
@media (max-width: 767.98px) {
    .image-flex-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .flex-image {
        width: 100%;
        flex: none;
        aspect-ratio: 1 / 1; /* Maintain square on mobile */
    }
}

/* Small Mobile */
@media (max-width: 375px) {
    .image-flex-container {
        gap: 12px;
        padding: 12px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
    .image-flex-container {
        gap: 18px;
        padding: 25px;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .image-flex-container {
        gap: 25px;
        padding: 30px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .image-flex-container {
        gap: 30px;
    }
}

/* Optional: Control maximum square size */
.image-flex-container.small-squares .flex-image {
    max-width: 300px;
}

.image-flex-container.medium-squares .flex-image {
    max-width: 400px;
}

.image-flex-container.large-squares .flex-image {
    max-width: 500px;
}

/* Hover effects for non-touch devices */
@media (hover: hover) {
    .flex-image:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }
    
    .flex-image:hover img {
        transform: scale(1.05);
    }
}

/* With captions */
.flex-image-with-caption {
    position: relative;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 15px 12px 12px;
    text-align: center;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.flex-image-with-caption:hover .image-caption {
    opacity: 1;
}

/* Mobile caption always visible */
@media (max-width: 767.98px) {
    .image-caption {
        opacity: 1;
        background: rgba(0, 0, 0, 0.7);
        padding: 8px;
        font-size: 12px;
    }
}

/* Alternative: Fixed size squares */
.image-flex-container.fixed-small .flex-image {
    width: 150px;
    height: 150px;
    flex: none;
}

.image-flex-container.fixed-medium .flex-image {
    width: 200px;
    height: 200px;
    flex: none;
}

.image-flex-container.fixed-large .flex-image {
    width: 250px;
    height: 250px;
    flex: none;
}

@media (max-width: 767.98px) {
    .image-flex-container.fixed-small .flex-image {
        width: 120px;
        height: 120px;
    }
    
    .image-flex-container.fixed-medium .flex-image {
        width: 150px;
        height: 150px;
    }
    
    .image-flex-container.fixed-large .flex-image {
        width: 180px;
        height: 180px;
    }
}