/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-pink: #ffd6e0;
    --accent-pink: #ff9eb5;
    --dark-pink: #ff4d7d;
    --deep-pink: #e91e63;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --light-gray: #f9f9f9;
    --gradient: linear-gradient(135deg, var(--primary-pink) 0%, var(--accent-pink) 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

body {
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Top Bar Styles */
.top-bar {
    background-color: #f8f8f8;
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1002;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .contact-info a {
        color: var(--text-light);
        text-decoration: none;
        transition: color 0.3s;
    }

        .contact-info a:hover {
            color: var(--deep-pink);
        }

.social-icons {
    display: flex;
    gap: 12px;
}

    .social-icons a {
        color: var(--text-light);
        transition: color 0.3s;
    }

        .social-icons a:hover {
            color: var(--deep-pink);
        }

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 40px;
    z-index: 1001;
    transition: all 0.3s ease;
}

    header.sticky {
        top: 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
}

    .logo span {
        color: var(--deep-pink);
        margin-left: 5px;
    }

    .logo i {
        color: var(--deep-pink);
        margin-right: 8px;
        font-size: 24px;
    }

nav ul {
    display: flex;
    list-style: none;
}

    nav ul li {
        margin-left: 25px;
        position: relative;
    }

        nav ul li a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s;
            padding: 8px 5px;
            position: relative;
            font-size: 0.95rem;
        }

            nav ul li a:after {
                content: '';
                position: absolute;
                width: 0;
                height: 2px;
                bottom: 0;
                left: 0;
                background-color: var(--deep-pink);
                transition: width 0.3s ease;
            }

            nav ul li a:hover:after, nav ul li a.active:after {
                width: 100%;
            }

            nav ul li a:hover, nav ul li a.active {
                color: var(--deep-pink);
            }

.cta-button {
    background: linear-gradient(45deg, var(--deep-pink), var(--dark-pink));
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
    font-size: 0.9rem;
}

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(233, 30, 99, 0.4);
    }

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--deep-pink);
}

/* Page Container */
.page {
    padding-top: 80px;
    min-height: calc(100vh - 200px);
}

/* Hero Section with Full Width Slider */
.hero {
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.slider {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 450px;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
    width: 100%;
}

.slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
    position: relative;
}

    .slide:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.slide h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.slide p {
    font-size: 1.2rem;
    margin: 0 auto 25px;
    color: var(--white);
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s;
}

    .slider-dot.active {
        background-color: var(--deep-pink);
        transform: scale(1.2);
    }

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--deep-pink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

    .slider-arrow:hover {
        background-color: rgba(255, 255, 255, 0.95);
        transform: translateY(-50%) scale(1.1);
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--deep-pink), var(--dark-pink));
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(233, 30, 99, 0.4);
    }

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

    .btn-secondary:hover {
        background-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-3px);
    }

/* Features Section */
.features {
    padding: 70px 0;
    background-color: var(--light-gray);
    position: relative;
}

    .features:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" preserveAspectRatio="none"><path fill="%23ffffff" opacity="0.5" d="M0,0 L1000,0 L1000,1000 L0,1000 Z M100,100 L900,100 L900,900 L100,900 Z"></path></svg>');
        background-size: cover;
    }

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

    .section-title h2 {
        font-size: 2.4rem;
        color: var(--text-dark);
        margin-bottom: 12px;
    }

    .section-title p {
        color: var(--text-light);
        max-width: 600px;
        margin: 0 auto;
        font-size: 1rem;
    }

    .section-title:after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
        height: 3px;
        background: var(--deep-pink);
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .feature-card:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(45deg, var(--deep-pink), var(--dark-pink));
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-hover);
    }

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

    .feature-icon i {
        font-size: 30px;
        color: var(--white);
    }

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
}

/* New Features Section */
.new-features {
    padding: 70px 0;
    background-color: var(--white);
}

.features-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
    justify-content: center;
}

.feature-tab {
    padding: 10px 20px;
    background: var(--light-gray);
    border: none;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

    .feature-tab.active {
        background: var(--deep-pink);
        color: var(--white);
    }

.feature-content {
    display: none;
}

    .feature-content.active {
        display: block;
    }

.sweet-memories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.memory-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

    .memory-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

.memory-image {
    height: 180px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .memory-image i {
        font-size: 45px;
        color: var(--white);
    }

.memory-info {
    padding: 18px;
}

.memory-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.memory-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.memory-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.cheating-stories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.story-card {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border-left: 4px solid var(--deep-pink);
}

    .story-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

.story-meta {
    display: flex;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.story-date {
    margin-right: 12px;
}

.story-type {
    color: var(--deep-pink);
    font-weight: 600;
}

.story-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.story-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.relationship-status {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    margin-bottom: 30px;
}

.status-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.status-option {
    background: var(--white);
    border-radius: 10px;
    padding: 18px;
    width: 180px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

    .status-option:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

    .status-option.active {
        border: 2px solid var(--deep-pink);
    }

    .status-option i {
        font-size: 28px;
        color: var(--deep-pink);
        margin-bottom: 12px;
    }

    .status-option h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

.new-matches {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.match-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    text-align: center;
}

    .match-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

.match-photo {
    height: 180px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .match-photo i {
        font-size: 55px;
        color: var(--white);
    }

.match-info {
    padding: 18px;
}

    .match-info h3 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .match-info p {
        color: var(--text-light);
        margin-bottom: 12px;
        font-size: 0.85rem;
    }

.match-compatibility {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.compatibility-bar {
    width: 100%;
    height: 6px;
    background: var(--light-gray);
    border-radius: 4px;
    overflow: hidden;
    margin-right: 8px;
}

.compatibility-fill {
    height: 100%;
    background: var(--deep-pink);
    border-radius: 4px;
}

.compatibility-value {
    font-weight: 600;
    color: var(--deep-pink);
}

/* Testimonials */
.testimonials {
    padding: 70px 0;
    background-color: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border-top: 5px solid var(--deep-pink);
}

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--accent-pink);
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .author-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .author-avatar i {
        color: var(--white);
        font-size: 18px;
    }

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* CTA Section */
.cta-section {
    padding: 70px 0;
    background: var(--gradient);
    text-align: center;
    position: relative;
}

    .cta-section:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" preserveAspectRatio="none"><path fill="%23ffffff" opacity="0.2" d="M0,0 L1000,0 L1000,1000 L0,1000 Z M200,200 L800,200 L800,800 L200,800 Z"></path></svg>');
        background-size: cover;
    }

    .cta-section .container {
        position: relative;
        z-index: 1;
    }

    .cta-section h2 {
        font-size: 2.4rem;
        margin-bottom: 15px;
        color: var(--text-dark);
    }

    .cta-section p {
        max-width: 600px;
        margin: 0 auto 25px;
        color: var(--text-light);
        font-size: 1.1rem;
    }

/* Feelings Page */
.feelings {
    padding: 70px 0;
    background-color: var(--light-gray);
}

.feelings-hero {
    text-align: center;
    margin-bottom: 50px;
    padding: 50px 0;
    background: var(--gradient);
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

    .feelings-hero:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" preserveAspectRatio="none"><path fill="%23ffffff" opacity="0.2" d="M0,0 L1000,0 L1000,1000 L0,1000 Z M200,200 L800,200 L800,800 L200,800 Z"></path></svg>');
        background-size: cover;
    }

.feelings-hero-content {
    position: relative;
    z-index: 1;
}

.feelings-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feelings-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 25px;
    color: var(--text-light);
}

.video-creation {
    background-color: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow);
    margin-bottom: 50px;
}

    .video-creation h2 {
        font-size: 2rem;
        margin-bottom: 25px;
        text-align: center;
        color: var(--text-dark);
    }

.video-interface {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.video-preview {
    flex: 1;
    min-width: 300px;
    background: var(--light-gray);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    position: relative;
    overflow: hidden;
}

    .video-preview i {
        font-size: 70px;
        color: var(--deep-pink);
        opacity: 0.7;
    }

.video-controls {
    flex: 1;
    min-width: 300px;
}

.control-group {
    margin-bottom: 20px;
}

    .control-group h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
        color: var(--text-dark);
    }

.emotion-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.emotion-btn {
    padding: 8px 16px;
    background: var(--light-gray);
    border: none;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

    .emotion-btn.active {
        background: var(--deep-pink);
        color: var(--white);
    }

.filter-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
}

.filter-option {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

    .filter-option.active {
        background: var(--deep-pink);
        color: var(--white);
    }

    .filter-option i {
        font-size: 22px;
        margin-bottom: 8px;
        display: block;
    }

.video-gallery {
    margin-top: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.video-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

    .video-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

.video-thumbnail {
    height: 180px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .video-thumbnail i {
        font-size: 45px;
        color: var(--white);
    }

.video-info {
    padding: 18px;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.video-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.video-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.video-comments {
    margin-top: 12px;
    border-top: 1px solid var(--light-gray);
    padding-top: 12px;
}

.comment {
    display: flex;
    margin-bottom: 12px;
}

.comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-pink);
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .comment-avatar i {
        color: var(--white);
        font-size: 13px;
    }

.comment-content {
    flex: 1;
}

.comment-author {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.comment-text {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* About Page */
.about {
    padding: 70px 0;
    background-color: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.about-text {
    flex: 1;
}

    .about-text h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
        color: var(--text-dark);
    }

    .about-text p {
        margin-bottom: 15px;
        color: var(--text-light);
    }

.about-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-image-placeholder {
    width: 100%;
    height: 350px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4.5rem;
}

.team {
    margin-top: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.team-member {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

    .team-member:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-hover);
    }

.member-photo {
    height: 220px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .member-photo i {
        font-size: 70px;
        color: var(--white);
    }

.member-info {
    padding: 20px 18px;
}

    .member-info h3 {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }

    .member-info p {
        color: var(--deep-pink);
        font-weight: 500;
        margin-bottom: 12px;
    }

    .member-info .bio {
        color: var(--text-light);
        font-size: 0.9rem;
    }

/* Blog Page */
.blog {
    padding: 70px 0;
    background-color: var(--light-gray);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

.blog-image {
    height: 180px;
    background-color: var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-pink);
    font-size: 2.8rem;
}

.blog-content {
    padding: 20px;
}

.blog-meta {
    display: flex;
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.blog-date {
    margin-right: 12px;
}

.blog-category {
    color: var(--deep-pink);
    font-weight: 600;
}

.blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.blog-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.read-more {
    color: var(--deep-pink);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

    .read-more i {
        margin-left: 5px;
        transition: transform 0.3s;
    }

    .read-more:hover i {
        transform: translateX(5px);
    }

/* FAQ Page */
.faq {
    padding: 70px 0;
    background-color: var(--light-gray);
}

.faq-item {
    background-color: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    transition: all 0.3s;
}

    .faq-question:hover {
        background-color: var(--primary-pink);
    }

.faq-answer {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-light);
}

    .faq-answer.active {
        padding: 0 18px 18px;
        max-height: 500px;
    }

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 35px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

    .footer-column h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 35px;
        height: 2px;
        background-color: var(--deep-pink);
    }

.footer-column ul {
    list-style: none;
}

    .footer-column ul li {
        margin-bottom: 8px;
    }

        .footer-column ul li a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s;
        }

            .footer-column ul li a:hover {
                color: var(--deep-pink);
            }

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--white);
        transition: background-color 0.3s;
    }

        .social-links a:hover {
            background-color: var(--deep-pink);
        }

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
    font-size: 0.85rem;
}

/* Search Bar Styles */
.search-container {
    position: relative;
    margin-left: 20px;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 25px;
    padding: 5px 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

    .search-box input {
        border: none;
        outline: none;
        padding: 8px;
        width: 200px;
        background: transparent;
        font-size: 0.9rem;
    }

    .search-box button {
        background: none;
        border: none;
        color: var(--deep-pink);
        cursor: pointer;
        padding: 5px;
    }

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
    margin-top: 10px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

    .search-results.active {
        display: block;
    }

.search-result-item {
    padding: 12px 15px;
    border-bottom: 1px solid var(--light-gray);
    cursor: pointer;
    transition: background-color 0.3s;
}

    .search-result-item:hover {
        background-color: var(--primary-pink);
    }

    .search-result-item:last-child {
        border-bottom: none;
    }

    .search-result-item h4 {
        font-size: 0.95rem;
        margin-bottom: 5px;
        color: var(--text-dark);
    }

    .search-result-item p {
        font-size: 0.8rem;
        color: var(--text-light);
    }

.no-results {
    padding: 15px;
    text-align: center;
    color: var(--text-light);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

    .video-interface {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .slide h1 {
        font-size: 2.2rem;
    }

    .slider {
        height: 50vh;
        min-height: 400px;
    }

    .search-box input {
        width: 150px;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 15px;
    }

        nav.active {
            display: block;
        }

        nav ul {
            flex-direction: column;
        }

            nav ul li {
                margin: 8px 0;
            }

    .mobile-menu {
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .slide h1 {
        font-size: 1.8rem;
    }

    .slide p {
        font-size: 1rem;
    }

    .feelings-hero h1 {
        font-size: 2.2rem;
    }

    .slider {
        height: 45vh;
        min-height: 350px;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    .top-bar {
        padding: 6px 0;
        font-size: 0.8rem;
    }

    .contact-info {
        gap: 15px;
    }

    .search-container {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }

    .search-box {
        width: 100%;
    }

        .search-box input {
            width: 100%;
        }

    .header-container {
        flex-wrap: wrap;
    }
}

/* collaborators ergistration page */

