/* Wendus Website Styles */
/* Professional event planning software website styling */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: white;
    color: #333;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 4px solid;
    border-image: linear-gradient(135deg, #B8860B, #DAA520, #FFD700) 1;
    box-shadow: inset 0 0 20px rgba(218, 165, 32, 0.1), 0 0 30px rgba(218, 165, 32, 0.2);
}

.header::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid;
    border-image: linear-gradient(135deg, #FFD700, #DAA520, #B8860B) 1;
    z-index: 1;
    pointer-events: none;
}

.header-content {
    position: relative;
    z-index: 2;
}

.logo {
    width: 120px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('wendus_icon_large.png') center/contain no-repeat;
    filter: drop-shadow(0 10px 20px rgba(218, 165, 32, 0.4));
}

.header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #B8860B;
    text-shadow: 2px 2px 4px rgba(218, 165, 32, 0.3);
}

.header p {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    color: #666;
    opacity: 0.95;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #B8860B;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(218, 165, 32, 0.2);
}

.feature-card h3::before {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #B8860B, #FFD700);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.feature-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Screenshots Gallery */
.gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: white;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 20px;
    text-align: center;
}

.gallery-caption h4 {
    font-family: 'Playfair Display', serif;
    color: #B8860B;
    margin-bottom: 10px;
}

.gallery-caption p {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #B8860B, #DAA520, #FFD700);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #B8860B;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: #f8f8f8;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* PayPal Button Container */
#paypal-button-container,
#sidebar-paypal-button-container {
    max-width: 300px;
    margin: 0 auto;
}

.payment-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    margin-top: 20px;
}

/* 3D Decorative Elements */
.decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.wedding-rings {
    position: absolute;
    top: 20px;
    right: 50px;
    transform: rotate(-15deg);
    animation: float 6s ease-in-out infinite;
}

.birthday-gifts {
    position: absolute;
    top: 30px;
    left: 50px;
    transform: rotate(10deg);
    animation: float 8s ease-in-out infinite reverse;
}

/* Realistic Wedding Ring */
.ring {
    width: 40px;
    height: 40px;
    border: 6px solid #FFD700;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-shadow: 
        inset 0 2px 4px rgba(255, 255, 255, 0.8),
        inset 0 -2px 4px rgba(184, 134, 11, 0.6),
        0 4px 8px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 215, 0, 0.4);
    background: white;
}

.ring::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ring-2 {
    margin-left: -15px;
    margin-top: 10px;
}

/* Realistic Gift Box */
.gift-box {
    width: 35px;
    height: 30px;
    background: linear-gradient(145deg, #DAA520, #B8860B);
    border-radius: 3px;
    display: inline-block;
    position: relative;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.gift-box::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 6px;
    background: linear-gradient(145deg, #8B0000, #DC143C);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gift-box::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 35px;
    background: linear-gradient(145deg, #8B0000, #DC143C);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gift-box-2 {
    margin-left: 10px;
    width: 30px;
    height: 25px;
    background: linear-gradient(145deg, #4169E1, #191970);
}

.gift-box-2::before {
    width: 35px;
    background: linear-gradient(145deg, #FFD700, #DAA520);
}

.gift-box-2::after {
    background: linear-gradient(145deg, #FFD700, #DAA520);
    height: 30px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(-15deg);
    }
    50% {
        transform: translateY(-10px) rotate(-15deg);
    }
}

.ring-1 {
    animation-delay: 0s;
}

.ring-2 {
    animation-delay: 0.5s;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 30px;
    color: white;
}

.price-container {
    margin-bottom: 30px;
}

.original-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
    margin-bottom: 10px;
}

.current-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.discount-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-left: 15px;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer h3 {
    font-family: 'Playfair Display', serif;
    color: #DAA520;
    margin-bottom: 20px;
}

.footer p {
    margin-bottom: 30px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #DAA520;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
}

/* Social Proof Section */
.social-proof {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.stat-item {
    padding: 30px 20px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #B8860B;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
    font-weight: 500;
}

.testimonials {
    margin-top: 80px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.1);
    position: relative;
}

.testimonial::before {
    content: '★★★★★';
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: block;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #B8860B, #DAA520);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.author-info h4 {
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.trust-badge-icon {
    width: 24px;
    height: 24px;
    background: #B8860B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.trust-badge-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Sidebar Navigation */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: white;
    z-index: 1000;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    padding: 30px;
    background: linear-gradient(135deg, #B8860B, #DAA520);
    color: white;
    position: relative;
}

.sidebar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.sidebar-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.sidebar-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
}

.sidebar-nav {
    padding: 0;
}

.nav-item {
    display: block;
    padding: 20px 30px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-item:hover {
    background: #f8f9fa;
    color: #B8860B;
    padding-left: 40px;
}

.nav-item.active {
    background: #B8860B;
    color: white;
}

.sidebar-content {
    padding: 30px;
    display: none;
}

.sidebar-content.active {
    display: block;
}

.menu-toggle {
    position: fixed;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #B8860B, #DAA520);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 998;
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.3);
    transition: all 0.3s ease;
    font-size: 20px;
}

.menu-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(184, 134, 11, 0.4);
}

.product-features {
    padding: 0;
}

.product-header {
    text-align: center;
    padding: 20px 0 30px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 30px;
}

.product-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #B8860B;
    margin-bottom: 10px;
}

.product-header p {
    color: #666;
    font-size: 1rem;
    max-width: 300px;
    margin: 0 auto;
}

.features-list {
    display: grid;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #fafafa, #ffffff);
    border-radius: 15px;
    border: 1px solid rgba(218, 165, 32, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.15);
    border-color: rgba(218, 165, 32, 0.3);
}

.feature-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #B8860B, #DAA520);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
    font-family: 'Poppins', sans-serif;
}

.feature-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.feature-highlight {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    border-left: 4px solid #B8860B;
}

.feature-highlight h4 {
    color: #B8860B;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.psychology-box {
    background: linear-gradient(135deg, #fff5f5, #ffffff);
    border: 2px solid #dc3545;
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    text-align: center;
}

.psychology-box h3 {
    color: #dc3545;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.contact-info {
    padding: 20px 0;
}

.contact-item {
    background: linear-gradient(135deg, #fafafa, #ffffff);
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
    border: 1px solid rgba(218, 165, 32, 0.1);
    text-align: center;
}

.contact-item h4 {
    font-family: 'Playfair Display', serif;
    color: #B8860B;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-item p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-email {
    background: linear-gradient(135deg, #B8860B, #DAA520);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.3);
    color: white;
    text-decoration: none;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 12px 0;
}

.benefit-point {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #B8860B, #DAA520);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2.5rem;
    }
    
    .header p {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-badges {
        gap: 20px;
    }
    
    .sidebar {
        width: 100%;
        right: -100%;
    }
    
    .menu-toggle {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

/* Performance and Loading States */
.lazy-load {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.lazy-load.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Analytics and Tracking Helper Classes */
.trackable-button {
    cursor: pointer;
}

.trackable-link {
    position: relative;
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #B8860B;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1001;
}

.skip-link:focus {
    top: 6px;
}

/* Focus states for accessibility */
.menu-toggle:focus,
.sidebar-close:focus,
.nav-item:focus,
.cta-button:focus,
.contact-email:focus {
    outline: 2px solid #B8860B;
    outline-offset: 2px;
}