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

:root {
    --primary-color: #0d1a2e;
    --secondary-color: #1a2f4a;
    --accent-color: #c0392b;
    --text-dark: #e8edf5;
    --text-light: #f8f9fa;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #070d18 0%, #0d1a2e 100%);
}

html[lang="zh-SG"] body {
    background: linear-gradient(135deg, #070d18 0%, #0d1a2e 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: linear-gradient(90deg, var(--primary-color) 0%, #1b2f4a 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
}

.logo:hover {
    opacity: 0.92;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
}

.language-switcher {
    display: flex;
    gap: 10px;
}

.lang-btn {
    padding: 8px 15px;
    min-width: 88px;
    text-align: center;
    border-radius: var(--border-radius);
    border: 2px solid white;
    cursor: pointer;
    transition: var(--transition);
    color: white;
    text-decoration: none;
    font-size: 14px;
    background: transparent;
}

.lang-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.lang-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(10,16,28,0.85) 0%, rgba(26,47,74,0.75) 100%), url('../img/bar-luxury.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: fadeInDown 1s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: #96281b;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(192, 57, 43, 0.4);
}

.btn-secondary {
    background: #1a4a6e;
    color: white;
}

.btn-secondary:hover {
    background: #1d5c8a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 74, 110, 0.4);
}

/* Sections */
section {
    padding: 80px 20px;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    animation: slideUp 0.8s ease-out;
    color: var(--text-light);
}

/* Features Section */
.features {
    background-color: #080f1a;
    background-image: linear-gradient(rgba(8, 15, 26, 0.86), rgba(8, 15, 26, 0.9));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
}
.features.bg-loaded {
    background-image: linear-gradient(rgba(8, 15, 26, 0.86), rgba(8, 15, 26, 0.9)), url('../img/features.webp');
}

.features h2 {
    color: var(--text-light);
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(17, 28, 46, 0.95) 0%, rgba(24, 39, 63, 0.95) 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    border-left: 4px solid var(--accent-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.feature-card a {
    color: #ffd166;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.feature-card a:hover {
    border-bottom: 2px solid #ffd166;
    color: #ffb703;
}

.feature-link {
    display: block;
    width: fit-content;
    margin-top: 12px;
    margin-left: auto;
    margin-right: auto;
    padding: 8px 15px;
    background: var(--accent-color);
    color: white !important;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    white-space: nowrap;
    border: none !important;
}

.feature-link:hover {
    background: #96281b;
    transform: scale(1.05);
    border: none !important;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.feature-card h3 {
    color: #f4d58d;
    margin-bottom: 10px;
}

/* Services Section */
.services {
    background-color: #09101c;
    background-image: linear-gradient(rgba(9, 16, 28, 0.86), rgba(16, 33, 55, 0.86));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}
.services.bg-loaded {
    background-image: linear-gradient(rgba(9, 16, 28, 0.86), rgba(16, 33, 55, 0.86)), url('../img/services.webp');
}

.services h2 {
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.service-item h3 {
    color: white;
    margin-bottom: 10px;
}

.services-grid .card-link,
.testimonials-grid .card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.services-grid .card-link:focus-visible,
.testimonials-grid .card-link:focus-visible {
    outline: 2px solid #ffd166;
    outline-offset: 3px;
}

/* Testimonials Section */
.testimonials {
    background-color: #0a101b;
    background-image: linear-gradient(rgba(10, 16, 27, 0.86), rgba(10, 16, 27, 0.9));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
}
.testimonials.bg-loaded {
    background-image: linear-gradient(rgba(10, 16, 27, 0.86), rgba(10, 16, 27, 0.9)), url('../img/testimonials.webp');
}

.testimonials h2 {
    color: var(--text-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(21, 33, 53, 0.92) 0%, rgba(18, 29, 47, 0.92) 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(192, 57, 43, 0.3);
    border-color: rgba(192, 57, 43, 0.4);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-avatar {
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(192, 57, 43, 0.3) 0%, rgba(255, 209, 102, 0.1) 100%);
    border-radius: 50%;
    border: 2px solid rgba(255, 209, 102, 0.3);
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    color: #ffd166;
    font-size: 1.1rem;
    margin: 0;
    margin-bottom: 3px;
    font-weight: 600;
}

.testimonial-location {
    color: #a0afc5;
    font-size: 0.85rem;
    margin: 0;
    margin-bottom: 5px;
}

.testimonial-stars {
    color: #ffd166;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin: 0;
}

.testimonial-quote {
    color: #e8edf5;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0 0 20px 0;
    font-style: italic;
    flex: 1;
}

.testimonial-quote a {
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
}

.testimonial-footer {
    display: flex;
    gap: 10px;
}

.btn-small {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #96281b 100%);
    color: white;
    text-decoration: none;
    border-radius: calc(var(--border-radius) - 2px);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-small:hover {
    background: linear-gradient(135deg, #96281b 0%, #6b1b12 100%);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(192, 57, 43, 0.4);
}

/* FAQ Section */
.faq {
    background-color: #080f1a;
    background-image: linear-gradient(rgba(8, 15, 26, 0.88), rgba(8, 15, 26, 0.9));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
}
.faq.bg-loaded {
    background-image: linear-gradient(rgba(8, 15, 26, 0.88), rgba(8, 15, 26, 0.9)), url('../img/faq.webp');
}

.faq h2 {
    color: var(--text-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(16, 24, 38, 0.88);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.faq-question {
    color: var(--text-light);
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
    font-weight: bold;
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-answer {
    margin-top: 10px;
    color: #c6d1e2;
    line-height: 1.8;
}

.faq-link {
    color: #ffd166;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 209, 102, 0.55);
    transition: var(--transition);
}

.faq-link:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* Link styling for "新加坡寂寞男人网" */
.lonelyguy-link {
    text-decoration: underline;
    text-decoration-color: currentColor;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.lonelyguy-link:hover {
    opacity: 0.8;
}

/* Keep original colors for links in different contexts */
.hero .lonelyguy-link {
    color: inherit;
}

.testimonial-card .lonelyguy-link {
    color: inherit;
}

.newsletter .lonelyguy-link {
    color: inherit;
}

.city-scenes .lonelyguy-link {
    color: inherit;
}

.footer .lonelyguy-link {
    color: inherit;
}

/* Newsletter Section */
.newsletter {
    background-color: #0a1220;
    background-image: linear-gradient(rgba(10, 18, 32, 0.86), rgba(24, 42, 69, 0.86));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
}
.newsletter.bg-loaded {
    background-image: linear-gradient(rgba(10, 18, 32, 0.86), rgba(24, 42, 69, 0.86)), url('../img/newsletter.webp');
}

.newsletter h2 {
    color: white;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.newsletter-form .btn {
    padding: 12px 20px;
}

/* Footer */
.footer {
    background: #0b1527;
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

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

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 8px;
}

.footer-section a:hover {
    color: white;
    padding-left: 10px;
}

.footer-links {
    text-align: center;
    padding: 16px 0 8px;
    border-top: 1px solid #2b3e5d;
}

.footer-links h4 {
    color: #888;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links ul li a {
    color: #667;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links ul li a:hover {
    color: #aab;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #2b3e5d;
    padding-top: 30px;
    color: #999;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form .btn {
        width: 100%;
    }
}


.city-scenes {
    background-color: #141414;
    background-image: linear-gradient(rgba(20, 20, 20, 0.56), rgba(20, 20, 20, 0.56));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}
.city-scenes.bg-loaded {
    background-image: linear-gradient(rgba(20, 20, 20, 0.56), rgba(20, 20, 20, 0.56)), url('../img/city-scenes.webp');
}

.city-scenes h2,
.city-scenes p,
.city-scenes a {
    color: #ffffff;
}

/* City Guide Styles */
.city-guide {
    max-width: 900px;
    margin: 0 auto;
}

.guide-intro {
    text-align: center;
    margin-bottom: 50px;
    padding: 20px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.guide-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e8edf5;
}

.venue-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.venue-category {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #c0392b;
    transition: all 0.3s ease;
}

.venue-category:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.venue-category h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #ffd166;
}

.venue-category p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #ddd;
}

.timing-tips {
    background: rgba(192, 57, 43, 0.15);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #c0392b;
}

.timing-tips h3 {
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: #ffd166;
}

.timing-tips ul {
    list-style: none;
    padding: 0;
}

.timing-tips li {
    padding: 10px 0;
    padding-left: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e8edf5;
    position: relative;
}

.timing-tips li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #ffd166;
}

.choice-guide {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #c0392b;
}

.choice-guide h3 {
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: #ffd166;
}

.choice-guide p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #e8edf5;
}

.safety-note {
    text-align: center;
    padding: 20px;
    background: rgba(255, 209, 102, 0.1);
    border-radius: 8px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 209, 102, 0.3);
}

.safety-note p {
    font-size: 0.9rem;
    color: #ddd;
    font-style: italic;
}

@media (max-width: 768px) {
    .venue-categories {
        grid-template-columns: 1fr;
    }
    
    .guide-intro p,
    .choice-guide p,
    .venue-category p {
        font-size: 0.9rem;
    }
}


