/* ============================================
   Vibrant Matrimonial Theme - style.css
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(to bottom, #fff 0%, #fef6f8 50%, #fceef3 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles - Vibrant Royal Theme */
.main-header {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 50%, #673ab7 100%);
    color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 5px 25px rgba(233, 30, 99, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #ff4081;
}

.header-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 15px;
}

.header-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.company-logo {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
}

.company-logo:hover {
    transform: scale(1.05);
}

.company-name {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.tagline {
    font-size: 14px;
    font-weight: 400;
    margin-top: 3px;
    color: #fff;
    font-style: italic;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.promoter-logo {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
}

.promoter-logo:hover {
    transform: scale(1.05);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 50px 0;
}

.page-header {
    background: linear-gradient(135deg, #fff 0%, #ffe5f0 100%);
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(233, 30, 99, 0.2);
    border: 3px solid #ff4081;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #e91e63 0%, #9c27b0 50%, #673ab7 100%);
}

.page-header h2 {
    color: #e91e63;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0.5px;
}

.page-header p {
    color: #9c27b0;
    font-weight: 500;
    font-size: 18px;
}

/* Content List */
.content-list {
    display: grid;
    gap: 30px;
}

.content-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.15);
    border: 3px solid #ffe5f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.content-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #e91e63 0%, #9c27b0 50%, #673ab7 100%);
}

.content-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(233, 30, 99, 0.3);
    border-color: #ff4081;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 3px solid #ffe5f0;
}

.item-header h3 {
    color: #e91e63;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.date {
    color: #673ab7;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    padding: 8px 16px;
    border-radius: 25px;
    border: 2px solid #9c27b0;
}

.item-body {
    margin-bottom: 20px;
}

.item-body p {
    color: #444;
    line-height: 1.8;
    font-size: 16px;
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.category {
    background: linear-gradient(135deg, #ff6090 0%, #e91e63 100%);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid #ff4081;
}

.btn-details {
    background: linear-gradient(135deg, #9c27b0 0%, #673ab7 100%);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.4);
    letter-spacing: 0.5px;
    border: 2px solid #7b1fa2;
}

.btn-details:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.5);
    background: linear-gradient(135deg, #7b1fa2 0%, #512da8 100%);
}

.no-content {
    background: #ffffff;
    padding: 60px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.15);
    border: 3px solid #ffe5f0;
}

.no-content p {
    color: #e91e63;
    font-size: 20px;
    font-weight: 600;
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, #d81b60 0%, #8e24aa 50%, #5e35b1 100%);
    color: #ffffff;
    padding: 30px 0;
    margin-top: 60px;
    box-shadow: 0 -5px 25px rgba(216, 27, 96, 0.3);
    border-top: 4px solid #ff4081;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content p {
    margin: 0;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.footer-right p {
    font-style: italic;
    font-weight: 400;
}

/* Mobile Responsive Design */
@media (max-width: 992px) {
    .main-header {
        padding: 12px 0;
    }
    
    .company-name {
        font-size: 22px;
    }
    
    .tagline {
        font-size: 12px;
    }
    
    .company-logo, .promoter-logo {
        height: 70px;
    }
    
    .page-header h2 {
        font-size: 30px;
    }
    
    .page-header p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 10px 0;
    }
    
    .header-content {
        grid-template-columns: auto 1fr auto;
        gap: 10px;
    }
    
    .header-left,
    .header-center,
    .header-right {
        justify-content: center;
    }
    
    .company-name {
        font-size: 18px;
    }
    
    .tagline {
        font-size: 11px;
        margin-top: 2px;
    }
    
    .company-logo, .promoter-logo {
        height: 50px;
    }
    
    .page-header {
        padding: 30px;
    }
    
    .page-header h2 {
        font-size: 26px;
    }
    
    .content-item {
        padding: 25px;
    }
    
    .item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .item-header h3 {
        font-size: 22px;
    }
    
    .item-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .btn-details {
        width: 100%;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-header {
        padding: 8px 0;
    }
    
    .header-content {
        grid-template-columns: auto 1fr auto;
        gap: 8px;
    }
    
    .company-name {
        font-size: 16px;
    }
    
    .tagline {
        font-size: 10px;
        display: none;
    }
    
    .company-logo, .promoter-logo {
        height: 40px;
    }
    
    .page-header {
        padding: 25px;
    }
    
    .page-header h2 {
        font-size: 22px;
    }
    
    .page-header p {
        font-size: 15px;
    }
    
    .content-item {
        padding: 20px;
    }
    
    .item-header h3 {
        font-size: 20px;
    }
    
    .item-body p {
        font-size: 15px;
    }
}

/* Additional Decorative Elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-item {
    animation: fadeInUp 0.6s ease-out;
}

.content-item:nth-child(1) {
    animation-delay: 0.1s;
}

.content-item:nth-child(2) {
    animation-delay: 0.2s;
}

.content-item:nth-child(3) {
    animation-delay: 0.3s;
}

/* Decorative Accent */
.page-header::after {
    content: '💕';
    position: absolute;
    right: 30px;
    top: 30px;
    font-size: 40px;
    opacity: 0.3;
}

.content-item::after {
    content: '❤️';
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 24px;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.content-item:hover::after {
    opacity: 0.3;
    transform: scale(1.2);
}