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

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

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

html[lang="zh-SG"] body {
    background: linear-gradient(135deg, #090f1c 0%, #162338 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.2);
}

.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: 14px;
}

.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(--secondary-color);
    border-color: var(--secondary-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.82) 0%, rgba(31,53,83,0.72) 100%), url('../img/bar-luxury.jpg');
    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: 3px 3px 6px rgba(0, 0, 0, 0.4);
    font-family: 'Georgia', serif;
}

.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: #a01530;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.4);
}

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

.btn-secondary:hover {
    background: #b89393;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 165, 165, 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;
    font-family: 'Georgia', serif;
    color: var(--text-light);
}

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

.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.15);
}

.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: #a01530;
    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: linear-gradient(rgba(9, 16, 28, 0.86), rgba(16, 33, 55, 0.86)), url('../img/services.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.services h2 {
    color: white;
}

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

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

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

.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: linear-gradient(rgba(10, 16, 27, 0.86), rgba(10, 16, 27, 0.9)), url('../img/testimonials.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
}

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

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

.testimonial-card {
    background: linear-gradient(135deg, rgba(21, 33, 53, 0.92) 0%, rgba(18, 29, 47, 0.92) 100%);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.testimonial-card p {
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-card span {
    display: block;
    color: #b7c4d8;
    font-size: 14px;
    font-weight: bold;
}

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

.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);
}

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

.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(--secondary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

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

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

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

.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 input,
    .newsletter-form .btn {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

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


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

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

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

.city-scenes-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.city-scenes-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.city-scenes-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #ffffff;
    font-family: 'Georgia', serif;
}

.city-scenes-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Gallery Section */
.gallery {
    background: linear-gradient(135deg, #0a1323 0%, #162741 100%);
    color: var(--text-light);
}

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

.gallery > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #c0cde0;
    margin-bottom: 50px;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    height: 350px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(0.7);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
    color: white;
    padding: 30px 20px;
    transform: translateY(20px);
    transition: var(--transition);
    opacity: 0;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
}

.gallery-overlay p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
}


