/* Honeymoon Fund Page Styles */
.honeymoon-page {
    min-height: 100vh;
    background: #F8F8F8;
    padding: 0;
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Header */
.honeymoon-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border-bottom: 1px solid rgba(229, 228, 227, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
}

.back-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(229, 228, 227, 0.50);
    border: none;
    cursor: pointer;
    color: #5C5B58;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: rgba(229, 228, 227, 0.70);
    transform: translateX(-2px) translateY(-1px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-button:active {
    transform: translateX(0) translateY(0);
    transition: all 0.1s ease;
}

.header-title {
    color: #282827;
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.4px;
    margin: 0;
}

/* Subheader */
.honeymoon-subheader {
    padding: 20px;
}

.subheader-text {
    color: #9C9A97;
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.32px;
    margin: 0;
    text-align: left;
}

/* Gift Cards Container */
.gift-cards-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
}

/* Desktop Layout - 2x2 Grid */
@media (min-width: 1024px) {
    .gift-cards-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        width: 1200px;
        padding: 40px 160px;
    }
    
    .gift-card {
        max-width: 640px;
        width: 100%;
        height: 200px;
    }
    
    .honeymoon-page {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .honeymoon-header {
        width: 100%;
    }
    
    .honeymoon-subheader {
        width: 100%;
    }
}

/* Gift Card Base Styles */
.gift-card {
    display: flex;
    height: 168px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
}

.gift-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(105, 105, 105, 0.00) 0%, rgba(0, 0, 0, 0.90) 100%);
    z-index: 1;
}

.gift-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gift-card:active {
    transform: translateY(0);
}

.gift-card-content {
    z-index: 2;
    display: flex;
justify-content: space-between;
align-items: flex-end;
gap: 16px;
align-self: stretch;
width: 100%;
padding-bottom: 20px;
padding-left: 20px;
padding-right: 20px;
}

.card-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.card-title {
    color: white;
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.36px;
}

.card-action {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    align-self: stretch;
}

.gift-amount {
    color: white;
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.gift-button {
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 12px;
    background: rgba(250, 250, 250, 0.12);
    backdrop-filter: blur(2px);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gift-button:hover {
    background: rgba(250, 250, 250, 0.20);
    transform: translateY(-2px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gift-button:active {
    transform: translateY(0);
    transition: all 0.1s ease;
}



/* Individual Card Backgrounds */
.california-card {
    background-image: url('/src/images/california.jpg');
}

.riviera-card {
    background-image: url('/src/images/cancun.jpg');
}

.europe-card {
    background-image: url('/src/images/europe.jpg');
}

.custom-card {
    background-image: url('/src/images/custom.jpg');
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .honeymoon-header {
        padding: 16px;
    }
    
    .header-title {
        font-size: 18px;
    }
    
    .honeymoon-subheader {
        padding: 16px;
    }
    
    .subheader-text {
        font-size: 15px;
        line-height: 24px;
    }
    
    .gift-cards-container {
        padding: 0px 16px 16px 16px;
        gap: 12px;
        z-index: 20;
    }

    
    .gift-card {
        height: 180px;
        padding: 0;
        gap: 12px;
        z-index: 2;
    }
    
    .card-title {
        color: #FFF;
font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: -0.32px;
max-width: 128px;
    }
    
    .gift-amount {
        font-size: 15px;
    }
    
    .gift-button {
        padding: 6px 8px 6px 12px;
        font-size: 12px;
    }
}

/* Safari-specific styling */
@supports (-webkit-touch-callout: none) {
    .honeymoon-page {
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    .honeymoon-header {
        padding-top: calc(20px + env(safe-area-inset-top));
    }
} 

a {
    text-decoration: none;
}



.footer-text {
    color: #9C9A97;
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.28px;
    margin: 0;
}