/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.2;
    background-color: #F8E4ED;
    color: #7F083E;
}

/* Header Styles */
header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #FCD3E6;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

header h1 {
    text-align: center;
    padding: 1rem;
    color: #3B0003;
    font-size: 2.5rem;
    font-weight: bold;
}

nav {
    background-color: #e4bbd1;
    padding: 1rem;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    max-width: 1200px;
    margin: 0 auto;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    text-decoration: none;
    color: #5d153b;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    background-color: #842250;
    color: white;
}

.login-btn, .signup-btn {
    background-color: #c07b99;
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 20px;
}

/* Main Content */
main {
    margin-top: 10px;
    padding: 2rem;
}

.content-wrapper {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Slideshow Section */
.slideshow {
    flex: 1;
    background-color: #fce8ee;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(121, 3, 52, 0.776);
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
}

.slide h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.slide p {
    color: #f3aec8;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #7F083E;
    transform: scale(1.2);
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #7F083E;
    transition: all 0.3s ease;
}

.prev-btn {
    left: 1rem;
}

.next-btn {
    right: 1rem;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.cta-section {
    flex: 1;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('https://images.unsplash.com/photo-1455390582262-044cdead277a?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: white;
    text-align: center;
}

.start-button {
    background-color: #ad0548;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.start-button:hover {
    background-color: #7e1943;
    transform: translateY(-2px);
}

/* Featured Blogs Section */
.featured-blogs {
    padding: 2rem 0;
}

.featured-blogs h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #7F083E;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.blog-card {
    background-color: #fce8ee;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(69, 0, 17, 0.826);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    background-color: #f4d1e2;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    color: #7F083E;
    margin-bottom: 0.5rem;
}

.blog-content p {
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.author {
    color: #711d47;
    font-size: 0.9rem;
}

/* Footer Styles */
footer {
    background-color: #6b0331;
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #fbbedc;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    nav ul li {
        margin: 0.5rem 0;
    }
    .content-wrapper {
        flex-direction: column;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Remove the search styles section completely */
  