/* Sugar Mama US - style.css */
:root {
    --primary-color: #4a0e0e; /* Dark Burgundy */
    --secondary-color: #d4af37; /* Gold */
    --text-color: #333;
    --light-bg: #fdfaf5;
    --white: #ffffff;
    --accent-color: #6a1b1b;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Georgia', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Georgia', serif;
}

.logo img {
    height: 40px;
    width: auto;
}

nav ul {
    display: flex;
    gap: 20px;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

.nav-cta {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: bold;
}

.nav-cta:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 1.5rem;
    color: var(--white);
    font-family: inherit;
    margin-bottom: 30px;
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Section Common */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Info Sections */
.info-section {
    background-color: var(--light-bg);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card svg {
    width: 50px;
    height: 50px;
    fill: var(--secondary-color);
    margin-bottom: 20px;
}

/* Cities Grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.city-card {
    position: relative;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.city-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    color: var(--white);
}

.city-overlay h3 {
    color: var(--white);
    margin-bottom: 5px;
}

/* Profiles */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.profile-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.profile-img {
    height: 350px;
    overflow: hidden;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    padding: 20px;
}

/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 30px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
}

.tab-btn:first-child {
    border-radius: 25px 0 0 25px;
}

.tab-btn:last-child {
    border-radius: 0 25px 25px 0;
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pricing-content {
    display: none;
}

.pricing-content.active {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    width: 320px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    border: none;
}

.pricing-card.featured {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.price span {
    font-size: 1rem;
    color: #888;
}

.weekly-breakdown {
    color: #888;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: center;
}

.pricing-features li {
    padding: 8px 0;
    color: #666;
    font-size: 0.95rem;
}

.choose-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 25px;
    font-weight: bold;
    transition: var(--transition);
}

.choose-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.pricing-footer-info {
    text-align: center;
    margin-top: 40px;
    color: #666;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    padding: 0 20px 20px;
    color: #666;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Hot Features */
.features-grid .feature-card h3 {
    font-size: 1.2rem;
    margin-top: 15px;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images/sugardating.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.final-cta h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta p {
    color: var(--white);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.final-cta .cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Meaning Page Specific Styles */
.meaning-page {
    padding: 60px 0;
    background-color: var(--white);
}

.meaning-hero {
    background: linear-gradient(rgba(74, 14, 14, 0.85), rgba(74, 14, 14, 0.85)), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

.meaning-hero h1 {
    color: var(--secondary-color);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.meaning-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
}

.meaning-section {
    margin-bottom: 60px;
}

.meaning-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.meaning-section h3 {
    font-size: 1.8rem;
    margin-top: 35px;
    color: var(--accent-color);
}

.meaning-section p {
    margin-bottom: 20px;
    font-size: 1.15rem;
    color: #444;
}

.meaning-section ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.meaning-section ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    font-size: 1.1rem;
}

.meaning-section ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.image-grid-2, .image-grid-3 {
    display: grid;
    gap: 25px;
    margin: 35px 0;
}

.image-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.image-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.img-item {
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.img-item:hover img {
    transform: scale(1.08);
}

.allowance-table-wrapper {
    overflow-x: auto;
    margin: 35px 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.allowance-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    min-width: 500px;
}

.allowance-table th {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 18px;
    text-align: left;
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
}

.allowance-table td {
    padding: 15px 18px;
    border-bottom: 1px solid #eee;
    font-size: 1.05rem;
}

.allowance-table tr:nth-child(even) {
    background-color: #fcf9f2;
}

.allowance-table tr:hover {
    background-color: #f5eedc;
}

.content-highlight {
    background-color: var(--light-bg);
    padding: 30px;
    border-left: 6px solid var(--secondary-color);
    border-radius: 0 12px 12px 0;
    margin: 35px 0;
    font-style: italic;
}

.internal-link {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: underline;
}

.internal-link:hover {
    color: var(--secondary-color);
}

@media (max-width: 992px) {
    .image-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .image-grid-2, .image-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .meaning-hero h1 {
        font-size: 2.2rem;
    }
    
    .meaning-section h2 {
        font-size: 1.8rem;
    }
    
    .meaning-section h3 {
        font-size: 1.5rem;
    }
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

footer h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

footer a:hover {
    color: var(--secondary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cta-group {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
        display: block;
        margin: 0 auto 15px;
    }
    .btn:last-child {
        margin-bottom: 0;
    }

    header .container {
        position: relative;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 20px;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
}
