
:root {
    --gold-primary: #d4af37;
    --gold-light: #e8d5a3;
    --gold-dark: #b8960c;
    --champagne: #f7e8d4;
    --ivory: #fffdf9;
    --rose-gold: #e8c4b8;
    --bronze: #cd7f32;
    --dark-charcoal: #2c2c2c;
    --warm-brown: #5c4033;
    --taupe: #8b7355;
    --cream: #faf5ef;
    --blush: #f5e6e8;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--ivory);
    color: var(--dark-charcoal);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: var(--transition-smooth);
}

section {
    position: relative;
    overflow: hidden;
}

/* Decorative Elements */
section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--gold-primary), 
        var(--gold-light), 
        var(--gold-primary), 
        transparent);
    opacity: 0.6;
}

/* Hero Section - Elegant */
.bridal-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, 
        rgba(0,0,0,0.3) 0%, 
        rgba(0,0,0,0.1) 100%),
        url('../assets/images/backgroundimage.jpg') center center / cover no-repeat fixed;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 80px;
    isolation: isolate;
}

.bridal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, 
        rgba(255,255,255,0.15) 0%, 
        rgba(255,255,255,0.05) 100%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(92,70,58,0.75) 0%, 
        rgba(44,44,44,0.55) 50%,
        rgba(92,70,58,0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 750px;
    margin-inline-start: auto;
    text-align: right;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-label {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    position: relative;
    padding-inline-end: 20px;
}

.hero-label::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--gold-primary);
    transform: translateY(-50%);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.2;
    color: var(--ivory);
    margin-bottom: 25px;
    font-weight: 300;
    font-family: 'Cormorant Garamond', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-title span {
    color: var(--gold-primary);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.hero-title span::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--gold-primary), 
        transparent);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.hero-title:hover span::before {
    transform: scaleX(1);
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-inline-start: auto;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn-primary,
.hero-btn-secondary {
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-btn-primary {
    background: var(--gold-primary);
    color: var(--ivory);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255,255,255,0.3), 
        transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.hero-btn-primary:hover::before {
    left: 100%;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
    background: var(--gold-dark);
}

.hero-btn-secondary {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: var(--ivory);
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-btn-secondary:hover {
    background: var(--ivory);
    color: var(--gold-primary);
    transform: translateY(-3px);
    border-color: transparent;
}

/* Section Headings */
.section-heading {
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    position: relative;
    padding: 0 30px;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--gold-primary), 
        transparent);
}

.section-label::before {
    right: 100%;
}

.section-label::after {
    left: 100%;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--dark-charcoal);
    margin-bottom: 15px;
    font-weight: 400;
    font-family: 'Cormorant Garamond', serif;
    position: relative;
}

.section-text {
    color: var(--taupe);
    font-size: 1rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

/* Categories Section - Luxurious */
.bridal-categories-section,
.offers-section,
.journey-section,
.products-section,
.booking-cta-section {
    padding: 100px 0;
}

.bridal-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.bridal-category-card {
    background: var(--ivory);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: var(--transition-smooth);
    position: relative;
    cursor: pointer;
}

.bridal-category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, 
        var(--gold-primary), 
        var(--gold-light), 
        var(--gold-primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.bridal-category-card:hover::before {
    opacity: 1;
}

.bridal-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0,0,0,0.15);
}

.category-image {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.category-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0) 0%, 
        rgba(44,44,44,0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bridal-category-card:hover .category-image::after {
    opacity: 1;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.bridal-category-card:hover .category-image img {
    transform: scale(1.08);
}

.category-content {
    padding: 30px 25px;
    text-align: center;
    background: linear-gradient(135deg, var(--ivory), var(--cream));
}

.category-content h3 {
    font-size: 1.5rem;
    color: var(--dark-charcoal);
    margin-bottom: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.category-description {
    color: var(--taupe);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.category-content span {
    color: var(--gold-primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.category-content span::after {
    content: '→';
    transition: transform 0.3s ease;
}

.bridal-category-card:hover .category-content span::after {
    transform: translateX(-5px);
}

/* Offers Section */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offer-card {
    background: linear-gradient(135deg, var(--ivory), var(--cream));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(212, 175, 55, 0.05) 0%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.offer-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--ivory);
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.offer-card:hover .offer-icon {
    transform: scale(1.1) rotate(5deg);
}

.offer-value {
    font-size: 2rem;
    color: var(--gold-primary);
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
}

.offer-title {
    font-size: 1.3rem;
    color: var(--dark-charcoal);
    margin-bottom: 12px;
    font-weight: 600;
}

.offer-condition,
.offer-description {
    color: var(--taupe);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Journey Section - Timeline Style */
.journey-section {
    background: linear-gradient(135deg, var(--cream), var(--ivory));
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.journey-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--gold-primary), 
        transparent);
}

.journey-card {
    background: var(--ivory);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.journey-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.journey-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--ivory);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    transition: transform 0.3s ease;
}

.journey-card:hover .journey-number {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.journey-card h3 {
    color: var(--dark-charcoal);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.journey-card p {
    color: var(--taupe);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Products Section - Elegant Grid */
.bridal-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.bridal-product-card {
    background: var(--ivory);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: var(--transition-smooth);
    position: relative;
}

.bridal-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

.bridal-product-image-wrap {
    position: relative;
    height: 420px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream), var(--ivory));
}

.bridal-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.bridal-product-card:hover .bridal-product-image {
    transform: scale(1.08);
}

.bridal-product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(44,44,44,0.7) 0%, 
        rgba(44,44,44,0.2) 50%,
        transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bridal-product-card:hover .bridal-product-overlay {
    opacity: 1;
}

.bridal-overlay-btn {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--ivory);
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.bridal-product-card:hover .bridal-overlay-btn {
    transform: translateY(0);
}

.bridal-overlay-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px) !important;
}

.bridal-product-badges {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.bridal-badge {
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ivory);
    backdrop-filter: blur(5px);
    letter-spacing: 0.5px;
}

.bridal-badge.offer {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

.bridal-product-info {
    padding: 25px 20px 30px;
    text-align: center;
    background: var(--ivory);
}

.bridal-product-category {
    color: var(--gold-primary);
    font-size: 0.85rem;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bridal-product-title {
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-family: 'Cormorant Garamond', serif;
}

.bridal-product-title a {
    color: var(--dark-charcoal);
    transition: color 0.3s ease;
}

.bridal-product-title a:hover {
    color: var(--gold-primary);
}

.bridal-product-colors {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--ivory);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.color-dot:hover {
    transform: scale(1.2);
}

.btn-details {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    font-weight: 500;
    background: transparent;
    transition: var(--transition-smooth);
}

.btn-details:hover {
    background: var(--gold-primary);
    color: var(--ivory);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Pagination - Elegant */
.bridal-pagination {
    gap: 8px;
}

.bridal-pagination .page-link {
    color: var(--taupe);
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin: 0 4px;
    border-radius: 12px !important;
    padding: 12px 20px;
    font-weight: 500;
    transition: var(--transition-smooth);
    background: var(--ivory);
}

.bridal-pagination .page-link:hover {
    background: var(--gold-primary);
    color: var(--ivory);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.bridal-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-color: transparent;
    color: var(--ivory);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.pagination-note {
    color: var(--taupe);
    margin-top: 20px;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Booking CTA - Luxurious */
.booking-cta-section {
    background: linear-gradient(135deg, var(--cream), var(--ivory));
}

.booking-cta-box {
    background: linear-gradient(135deg, var(--ivory), var(--cream));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 30px;
    padding: 50px 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.booking-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--gold-primary), 
        var(--gold-light), 
        var(--gold-primary));
}

.booking-cta-box:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.booking-cta-box h2 {
    color: var(--dark-charcoal);
    margin-bottom: 15px;
    font-size: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.booking-cta-box p {
    margin: 0;
    color: var(--taupe);
    line-height: 1.7;
    font-size: 1rem;
}

.booking-cta-btn {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--ivory);
    border-radius: 50px;
    padding: 15px 35px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.booking-cta-btn:hover {
    color: var(--ivory);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Empty State */
.empty-state {
    text-align: center;
    background: linear-gradient(135deg, var(--ivory), var(--cream));
    border-radius: 20px;
    padding: 80px 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.empty-icon {
    font-size: 4rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h3 {
    color: var(--dark-charcoal);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.empty-state p {
    color: var(--taupe);
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .bridal-categories-grid,
    .bridal-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991.98px) {
    .bridal-categories-grid,
    .offers-grid,
    .journey-grid,
    .bridal-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .journey-grid::before {
        display: none;
    }
    
    .booking-cta-box {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-inline: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-label::after {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .bridal-hero {
        min-height: 85vh;
        padding: 120px 0 70px;
        background-attachment: scroll;
    }
    
    .bridal-categories-grid,
    .offers-grid,
    .journey-grid,
    .bridal-products-grid {
        grid-template-columns: 1fr;
    }
    
    .category-image,
    .bridal-product-image-wrap {
        height: 350px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .booking-cta-box {
        padding: 35px 25px;
    }
    
    .booking-cta-box h2 {
        font-size: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}