:root {
    --primary-color: #ff6b9d;
    --primary-dark: #c44569;
    --secondary-color: #ffd1dc;
    --text-dark: #2d2d2d;
    --text-light: #666;
    --bg-light: #fff5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Header Styles */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.landing-header.scrolled .header-container{
    transform: translateY(-100%);
    opacity: 0;
}

.landing-header.scrolled.show-header .header-container{
    transform: translateY(0);
    opacity: 1;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5px 60px;
    display: flex;
    transition: all .4s ease;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.footer-logo {
    font-size: 1.8rem; font-weight: 700; margin-bottom: 20px; background: linear-gradient(135deg, #ff6b9d, #c44569); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

footer ul li i {
    color: #ff6b9d;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(196, 69, 105, 0.1));
    border: 2px solid transparent;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    overflow: hidden;
}

.lang-switcher::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.lang-switcher:hover::before {
    left: 100%;
}

.lang-switcher:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.lang-switcher .globe-icon {
    font-size: 1.1rem;
    transition: transform 0.5s ease;
}

.lang-switcher:hover .globe-icon {
    transform: rotate(360deg);
}

.lang-switcher .lang-text {
    position: relative;
}

.lang-switcher .magic-sparkle {
    position: absolute;
    font-size: 0.7rem;
    top: -8px;
    right: -12px;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.btn-header {
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-login {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: transparent;
}

/* .btn-login:hover {
    background: var(--primary-color);
    color: white;
} */

.btn-register {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: 2px solid transparent;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.4);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Responsive Header */
@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 40px;
        gap: 25px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-buttons {
        display: none;
    }
}

/* Common Button Styles */
.btn-primary:hover,
.btn-secondary:hover,
.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.4);
}

.social-links a:hover {
    background: linear-gradient(135deg, #ff6b9d, #c44569) !important;
    transform: translateY(-3px);
}

footer a:hover {
    color: #ff6b9d !important;
}

.theme-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.theme-card:hover .theme-overlay {
    opacity: 1;
}

.theme-preview {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.theme-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-btn {
    background: white;
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.preview-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

/* Additional Styles */
.floating-hearts {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-hearts .heart {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-hearts .heart:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.floating-hearts .heart:nth-child(2) { left: 30%; top: 60%; animation-delay: 1s; }
.floating-hearts .heart:nth-child(3) { left: 50%; top: 30%; animation-delay: 2s; }
.floating-hearts .heart:nth-child(4) { left: 70%; top: 70%; animation-delay: 3s; }
.floating-hearts .heart:nth-child(5) { left: 90%; top: 40%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.15);
}

.theme-card:hover .theme-overlay {
    opacity: 1 !important;
}

@media (max-width: 768px) {
    .wedding-hero h1 {
        font-size: 2.2rem !important;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px !important;
    }
    
    .section-title {
        font-size: 1.8rem !important;
    }
    
    .cta-section h2 {
        font-size: 2rem !important;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons a {
        margin-right: 0 !important;
        text-align: center;
    }
    
}