/* Global Reset & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #d4af37; /* Gold color */
}

.logo img {
    height: 50px;
    margin-right: 10px;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.menu-toggle {
    display: none;
}

.nav-links a {
    font-weight: 500;
    color: #333;
    font-size: 16px;
}

.nav-links a:hover {
    color: #d4af37;
}

.btn-join {
    display: inline-block;
    background-color: #d4af37;
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-join:hover {
    background-color: #b5952f;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/mysugarmummyhero.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 0;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-btn {
    display: inline-block;
    background-color: #d4af37;
    color: #fff;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn:hover {
    background-color: #b5952f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #d4af37;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    background: #fff;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    fill: #d4af37;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f4f4f4;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Community Section */
.community {
    padding: 80px 0;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.role-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 400px;
    group: hover;
}

.role-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.role-card:hover img {
    transform: scale(1.1);
}

.role-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
}

.role-info h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
}

/* Cities Section */
.cities {
    padding: 80px 0;
    background-color: #fff;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.city-item {
    background-color: #f9f9f9;
    padding: 0;
    text-align: center;
    border-radius: 8px;
    transition: background-color 0.3s;
    border: 1px solid #eee;
    overflow: hidden;
}

.city-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.city-item h3 {
    margin: 15px 0;
    font-size: 18px;
    color: #333;
}

.city-item p {
    padding: 0 15px 20px;
    font-size: 14px;
    color: #666;
}

.city-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.city-item:hover h3 {
    color: #d4af37;
}

/* Profiles Unification */
.feature-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: #fff;
}

.how-it-works .section-title h2 {
    color: #fff;
}

.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #d4af37;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    color: #d4af37;
    margin-bottom: 15px;
}

/* Membership */
.membership {
    padding: 80px 0;
    background-color: #f4f4f4;
}

.pricing-table {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.price-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    border-top: 5px solid #d4af37;
}

.price-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.price {
    font-size: 36px;
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 30px;
}

.price span {
    font-size: 16px;
    color: #777;
    font-weight: normal;
}

.price-card ul {
    margin-bottom: 30px;
    text-align: left;
}

.price-card li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.price-card li::before {
    content: '✓';
    color: #d4af37;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    font-style: italic;
}

.testimonial-author {
    margin-top: 20px;
    font-weight: bold;
    color: #d4af37;
    font-style: normal;
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Blog Preview */
.blog-preview {
    padding: 80px 0;
    background-color: #f4f4f4;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.read-more {
    color: #d4af37;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background-color: #fff;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    cursor: pointer;
    color: #1a1a1a;
}

.faq-item p {
    color: #666;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
}

.footer-col ul li a:hover {
    color: #d4af37;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #777;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .navbar {
        justify-content: space-between;
        position: relative;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
    }

    .menu-toggle .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background-color: #333;
    }

    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 20px 0;
        gap: 20px;
        border-top: 1px solid #f0f0f0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        transform: translateY(-200%);
        transition: transform 0.4s ease;
        z-index: 999;
        text-align: center;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links a {
        display: block;
        font-size: 18px;
        padding: 10px 0;
    }
    
    .btn-join {
        margin: 10px auto;
        display: inline-block;
        width: 80%;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .steps {
        flex-direction: column;
    }
}

/* City Pages Content (e.g., Berlin) */
.city-content {
    padding: 60px 0;
    background-color: #fff;
}

.content-block {
    margin-bottom: 50px;
}

.content-block h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #d4af37;
}

.content-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.content-block h3 {
    font-size: 24px;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.image-row {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.image-row img {
    flex: 1;
    min-width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.image-row img:hover {
    transform: scale(1.02);
}

.benefit-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefit-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
    color: #555;
}

.benefit-list li::before {
    content: '★';
    color: #d4af37;
    position: absolute;
    left: 0;
    font-size: 20px;
}

.benefit-list strong {
    color: #1a1a1a;
}

.cta-block {
    text-align: center;
    padding: 60px;
    background-color: #f9f9f9;
    border-radius: 15px;
    margin-top: 60px;
    border: 1px solid #eee;
}

.cta-block h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.big-btn {
    padding: 18px 50px;
    font-size: 22px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .content-block h2 {
        font-size: 26px;
    }
    
    .content-block p {
        font-size: 16px;
    }
    
    .image-row img {
        height: 200px;
    }
    
    .cta-block {
        padding: 30px;
    }
}

/* City Page Enhancements - New Styles */
.city-comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.city-comparison-table th, .city-comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.city-comparison-table th {
    background-color: #d4af37;
    color: #fff;
    font-size: 18px;
}

.city-comparison-table tr:last-child td {
    border-bottom: none;
}

.city-comparison-table tr:nth-child(even) {
    background-color: #fcfcfc;
}

.city-section-alt {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.city-section-alt:nth-child(even),
.city-section-reverse {
    flex-direction: row-reverse;
}

.city-section-text {
    flex: 1;
}

.city-section-image {
    flex: 1;
}

.city-section-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
}

.city-list-styled {
    list-style: none;
    margin: 20px 0;
}

.city-list-styled li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    font-size: 17px;
    color: #555;
}

.city-list-styled li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 20px;
}

@media (max-width: 768px) {
    .city-section-alt, 
    .city-section-alt:nth-child(even),
    .city-section-reverse {
        flex-direction: column;
    }
    
    .city-comparison-table {
        font-size: 14px;
    }
    
    .city-comparison-table th, .city-comparison-table td {
        padding: 10px;
    }
}

/* About Page Specific Scoped Styles */
.about-page-container {
    background-color: #fff;
}

.about-section-custom {
    padding: 60px 0;
    border-bottom: 1px solid #f0f0f0;
}

.about-section-custom:last-child {
    border-bottom: none;
}

.about-success-story {
    background: #fdfdfd;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    margin-bottom: 30px;
    border-left: 4px solid #d4af37;
}

.about-success-story h3 {
    color: #d4af37;
    font-size: 22px;
    margin-bottom: 15px;
}

.about-success-story p {
    font-style: italic;
    color: #555;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-value-card {
    text-align: center;
    padding: 20px;
    background: #fafafa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-value-icon {
    font-size: 40px;
    color: #d4af37;
    margin-bottom: 15px;
}

/* Sugar Baby Page Specific Styles */
.hero-sugar-baby {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/sugardating3.jpg'); /* Slightly darker overlay for better text contrast */
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 0;
    padding-top: 80px;
}

.hero-sugar-baby h1 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-sugar-baby p {
    color: #f0f0f0;
}

/* Lesbian Page Specific Styles */
.hero-lesbian {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/sugarmummyprofile14.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 0;
    padding-top: 80px;
}

.hero-lesbian h1 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-lesbian p {
    color: #f0f0f0;
    font-size: 20px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.lesbian-content {
    padding: 60px 0;
    background-color: #fff;
}

@media (max-width: 768px) {
    .hero-lesbian {
        height: auto;
        min-height: 60vh;
        padding: 140px 20px 80px;
    }

    .hero-lesbian h1 {
        font-size: 30px;
        margin-bottom: 20px;
    }
}
    font-size: 20px;
    margin-bottom: 45px; /* Increased space before button */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-sugar-baby .hero-btn {
    margin-top: 10px;
    padding: 18px 50px;
    font-size: 20px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.hero-sugar-baby .hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

.sugar-baby-content {
    padding: 80px 0;
    background-color: #fff;
}

.sugar-baby-content .content-block {
    margin-bottom: 70px;
}

/* Enhanced Typography for Sugar Baby Page */
.sugar-baby-content h2 {
    color: #222;
    font-size: 34px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.sugar-baby-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #d4af37;
}

.sugar-baby-content p {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Mobile Responsiveness for Sugar Baby Page */
@media (max-width: 768px) {
    .hero-sugar-baby {
        height: auto;
        min-height: 60vh;
        padding: 140px 20px 80px; /* Adjusted padding for mobile header */
    }

    .hero-sugar-baby h1 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .hero-sugar-baby p {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .hero-sugar-baby .hero-btn {
        padding: 15px 35px;
        font-size: 18px;
        width: 100%;
        max-width: 300px;
    }

    .sugar-baby-content {
        padding: 50px 0;
    }
    
    .sugar-baby-content h2 {
        font-size: 26px;
    }
}

/* Lesbian Page Specific Styles */
.hero-lesbian {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/sugarmummyprofile14.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 0;
    padding-top: 80px;
}

.hero-lesbian h1 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-lesbian p {
    color: #f0f0f0;
    font-size: 20px;
    margin-bottom: 45px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-lesbian .hero-btn {
    margin-top: 10px;
    padding: 18px 50px;
    font-size: 20px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    background-color: #d4af37;
    color: #fff;
    border-radius: 50px;
}

.hero-lesbian .hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
    background-color: #b5952f;
}

.lesbian-content {
    padding: 80px 0;
    background-color: #fff;
}

.lesbian-content .content-block {
    margin-bottom: 70px;
}

.lesbian-content h2 {
    color: #222;
    font-size: 34px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.lesbian-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #d4af37;
}

.lesbian-content p {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero-lesbian {
        height: auto;
        min-height: 60vh;
        padding: 140px 20px 80px;
    }

    .hero-lesbian h1 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .hero-lesbian p {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .hero-lesbian .hero-btn {
        padding: 15px 35px;
        font-size: 18px;
        width: 100%;
        max-width: 300px;
    }

    .lesbian-content {
        padding: 50px 0;
    }
    
    .lesbian-content h2 {
        font-size: 26px;
    }
}

/* Blog Page Specific Styles - appealing-photos.html */
.blog-post-container {
    padding: 120px 0 80px;
    background-color: #fff;
}

.blog-breadcrumb {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
}

.blog-breadcrumb a {
    color: #d4af37;
    margin-right: 5px;
}

.blog-breadcrumb span {
    margin: 0 5px;
}

.blog-hero-title {
    text-align: center;
    margin-bottom: 50px;
}

.blog-hero-title h1 {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-hero-title p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-section {
    margin-bottom: 50px;
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.blog-section h2 {
    font-size: 32px;
    color: #d4af37;
    margin-bottom: 25px;
    margin-top: 40px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.blog-section h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    margin-top: 30px;
}

.blog-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.blog-section ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.blog-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.blog-section ul.dont-list li::before {
    content: '✗';
    color: #e74c3c;
}

.blog-image-row {
    display: flex;
    gap: 20px;
    margin: 40px 0;
}

.blog-image-row img {
    width: 33.333%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-image-row img:hover {
    transform: translateY(-5px);
}

.blog-table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.blog-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.blog-table th, .blog-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.blog-table th {
    background-color: #d4af37;
    color: #fff;
    font-weight: 600;
}

.blog-table tr:last-child td {
    border-bottom: none;
}

.blog-table tr:hover {
    background-color: #f9f9f9;
}

@media (max-width: 768px) {
    .blog-hero-title h1 {
        font-size: 30px;
    }
    
    .blog-image-row {
        flex-direction: column;
    }
    
    .blog-image-row img {
        width: 100%;
        height: auto;
        max-height: 300px;
    }
}

/* Bio Page Specific Styles - sugar-dating-bio.html */
.bio-page-container {
    padding: 120px 0 80px;
    background-color: #f9f9f9;
}

.bio-breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
}

.bio-breadcrumb a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bio-breadcrumb a:hover {
    color: #d4af37;
}

.bio-breadcrumb span {
    margin: 0 5px;
    color: #999;
}

.bio-hero-section {
    text-align: center;
    margin-bottom: 60px;
}

.bio-hero-section h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.bio-hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.bio-hero-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bio-section {
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.bio-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 25px;
    border-left: 4px solid #d4af37;
    padding-left: 15px;
}

.bio-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.bio-section ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.bio-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #555;
}

.bio-section ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.bio-image-row {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    justify-content: center;
}

.bio-image-row img {
    width: 30%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.bio-image-row img:hover {
    transform: translateY(-5px);
}

.bio-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bio-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 3px solid #d4af37;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.bio-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.bio-card p {
    font-size: 15px;
    margin-bottom: 10px;
}

.bio-card strong {
    color: #2c3e50;
}

@media (max-width: 768px) {
    .bio-hero-section h1 {
        font-size: 28px;
    }
    
    .bio-image-row {
        flex-direction: column;
    }
    
    .bio-image-row img {
        width: 100%;
        height: auto;
    }
    
    .bio-list {
        grid-template-columns: 1fr;
    }
}

/* Interest Page Specific Styles - sugar-mommy-interested-you.html */
.interest-page-container {
    padding: 120px 0 80px;
    background-color: #f9f9f9;
}

.interest-breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
}

.interest-breadcrumb a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.interest-breadcrumb a:hover {
    color: #d4af37;
}

.interest-breadcrumb span {
    margin: 0 5px;
    color: #999;
}

.interest-hero-section {
    text-align: center;
    margin-bottom: 60px;
}

.interest-hero-section h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.interest-hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.interest-hero-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.interest-section {
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.interest-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 25px;
    border-left: 4px solid #d4af37;
    padding-left: 15px;
}

.interest-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.interest-image-row {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    justify-content: center;
}

.interest-image-row img {
    width: 30%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.interest-image-row img:hover {
    transform: translateY(-5px);
}

.interest-sign-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.interest-sign-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 3px solid #d4af37;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: none; /* Reset previous style */
}

.interest-sign-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background-color: #fff; /* Reset previous hover bg */
}

.interest-sign-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.interest-warning-list {
    list-style-type: none;
    padding-left: 0;
    background-color: #fff; /* White bg for better contrast on grey page */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #c0392b; /* Red accent for warnings */
    border: none; /* Remove previous full border */
}

.interest-warning-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #555;
}

.interest-warning-list li:before {
    content: '⚠️';
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .interest-hero-section h1 {
        font-size: 28px;
    }
    
    .interest-image-row {
        flex-direction: column;
    }
    
    .interest-image-row img {
        width: 100%;
        height: auto;
    }
    
    .interest-sign-list {
        grid-template-columns: 1fr;
    }
}

/* Blog Page Styles - blog.html */
.blog-page-hero {
    height: 60vh;
    background: url('images/blog4.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px; /* Offset for fixed header */
}

.blog-page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

.blog-page-hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 800px;
}

.blog-page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.blog-page-hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.blog-page-intro {
    padding: 80px 0;
    text-align: center;
    background-color: #fff;
}

.blog-page-intro h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 30px;
}

.blog-page-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.blog-list-section {
    padding: 0 0 80px;
    background-color: #f9f9f9;
}

.blog-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.blog-card-image-wrapper {
    height: 250px;
    overflow: hidden;
}

.blog-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-item:hover .blog-card-image-wrapper img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
}

.blog-card-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    color: #d4af37;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
}

.blog-card-item:hover .read-more {
    color: #b38f2d;
}

.blog-seo-content {
    padding: 60px 0;
    background-color: #fff;
}

.blog-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.blog-content-wrapper h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #333;
    border-left: 5px solid #d4af37;
    padding-left: 20px;
}

.blog-content-wrapper h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #333;
}

.blog-content-wrapper p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

@media (max-width: 992px) {
    .blog-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-page-hero h1 {
        font-size: 32px;
    }
    
    .blog-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-card-image-wrapper {
        height: 200px;
    }
}


