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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #6a1b9a 0%, #ad1457 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ffc107;
}

.cta-button {
    background-color: #28a745;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #218838;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #6a1b9a;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.search-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.search-form select {
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.search-button {
    background-color: #ad1457;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.search-button:hover {
    background-color: #8e1147;
}

/* Categories Section */
.categories {
    margin-bottom: 3rem;
}

.categories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #6a1b9a;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ad1457;
}

.category-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

.category-link {
    background-color: #6a1b9a;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.category-link:hover {
    background-color: #5a1681;
}

/* Featured Profiles */
.featured-profiles {
    margin-bottom: 3rem;
}

.featured-profiles h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #6a1b9a;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.profile-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a1b9a, #ad1457);
    margin: 0 auto 1rem;
}

.profile-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ad1457;
}

.profile-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

.profile-link {
    background-color: #28a745;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.profile-link:hover {
    background-color: #218838;
}

/* Local Info */
.local-info {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.local-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #6a1b9a;
}

.local-info p {
    margin-bottom: 2rem;
    color: #666;
}

.nearby-cities h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ad1457;
}

.nearby-cities ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.nearby-cities li {
    background-color: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #666;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #6a1b9a 0%, #ad1457 100%);
    color: white;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-large {
    background-color: #28a745;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

.cta-large:hover {
    background-color: #218838;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #6a1b9a;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
}

/* Filters */
.filters {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.filter-bar {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-bar select {
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

/* Listings */
.listings h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #6a1b9a;
}

.listings-grid {
    display: grid;
    gap: 2rem;
}

.listing-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    gap: 2rem;
    align-items: center;
}

.listing-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a1b9a, #ad1457);
    flex-shrink: 0;
}

.listing-info {
    flex: 1;
}

.listing-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ad1457;
}

.listing-info p {
    margin-bottom: 1rem;
    color: #666;
}

.listing-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.listing-tags span {
    background-color: #f8f9fa;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #666;
}

.listing-cta {
    background-color: #28a745;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.listing-cta:hover {
    background-color: #218838;
}

/* Couples specific styles */
.couples-intro {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    text-align: center;
}

.couples-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #6a1b9a;
}

.couples-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.couple-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    gap: 2rem;
    align-items: center;
}

.couple-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a1b9a, #ad1457);
    flex-shrink: 0;
}

.couple-info {
    flex: 1;
}

.couple-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ad1457;
}

.couple-info p {
    margin-bottom: 1rem;
    color: #666;
}

.couple-details {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.couple-details span {
    background-color: #f8f9fa;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #666;
}

.couple-cta {
    background-color: #28a745;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.couple-cta:hover {
    background-color: #218838;
}

.couples-tips {
    margin-bottom: 3rem;
}

.couples-tips h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #6a1b9a;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.tip-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ad1457;
}

.tip-card p {
    color: #666;
}

/* Events specific styles */
.events-intro {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    text-align: center;
}

.events-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #6a1b9a;
}

.events-calendar h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #6a1b9a;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.event-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    gap: 2rem;
    align-items: center;
}

.event-date {
    text-align: center;
    background: linear-gradient(135deg, #6a1b9a, #ad1457);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    min-width: 80px;
}

.event-date .day {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

.event-date .month {
    font-size: 0.9rem;
    display: block;
}

.event-info {
    flex: 1;
}

.event-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ad1457;
}

.event-info p {
    margin-bottom: 1rem;
    color: #666;
}

.event-details {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.event-details span {
    background-color: #f8f9fa;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #666;
}

.event-cta {
    background-color: #28a745;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.event-cta:hover {
    background-color: #218838;
}

.event-types {
    margin-bottom: 3rem;
}

.event-types h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #6a1b9a;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.type-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.type-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ad1457;
}

.type-card p {
    color: #666;
}

.event-rules {
    margin-bottom: 3rem;
}

.event-rules h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #6a1b9a;
}

.rules-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.rule-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.rule-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ad1457;
}

.rule-item p {
    color: #666;
}

/* Blog specific styles */
.blog-featured {
    margin-bottom: 3rem;
}

.blog-featured h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #6a1b9a;
}

.featured-article {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.featured-article h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ad1457;
}

.featured-article p {
    margin-bottom: 1rem;
    color: #666;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #999;
}

.article-cta {
    background-color: #28a745;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.article-cta:hover {
    background-color: #218838;
}

.blog-articles {
    margin-bottom: 3rem;
}

.blog-articles h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #6a1b9a;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.article-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ad1457;
}

.article-card p {
    margin-bottom: 1rem;
    color: #666;
}

.article-link {
    color: #6a1b9a;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.article-link:hover {
    color: #ad1457;
}

.blog-categories {
    margin-bottom: 3rem;
}

.blog-categories h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #6a1b9a;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-tag {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.category-tag h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ad1457;
}

.category-tag p {
    color: #666;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffc107;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ffc107;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .listing-card,
    .couple-card,
    .event-card {
        flex-direction: column;
        text-align: center;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    main {
        padding: 1rem;
    }
}