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

:root {
    --primary-color: #1a472a;
    --secondary-color: #d4a5a5;
    --accent-color: #c41e3a;
    --text-dark: #1a1a1a;
    --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, #f5e6d3 0%, #e8d4c0 100%);
}

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

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

/* Navigation */
.navbar {
    background: linear-gradient(90deg, var(--primary-color) 0%, #2d5a3d 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;
}

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

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

.lang-btn {
    padding: 8px 15px;
    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(26,71,42,0.78) 0%, rgba(212,165,165,0.78) 100%), url('https://picsum.photos/seed/sg-beautycastlecom-hero/1600/900');
    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;
}

/* Features Section */
.features {
    background: linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.86)), url('https://picsum.photos/seed/sg-beautycastlecom-features/1600/900');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-dark);
}

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

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

.feature-card {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(212, 165, 165, 0.2);
    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-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Services Section */
.services {
    background: linear-gradient(rgba(212, 165, 165, 0.84), rgba(166, 124, 124, 0.84)), url('https://picsum.photos/seed/sg-beautycastlecom-services/1600/900');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.services h2 {
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 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;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)), url('https://picsum.photos/seed/sg-beautycastlecom-testimonials/1600/900');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-dark);
}

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

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

.testimonial-card {
    background: linear-gradient(135deg, #fff9e6 0%, #ffe4cc 100%);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(212, 165, 165, 0.2);
}

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

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

/* FAQ Section */
.faq {
    background: linear-gradient(rgba(245, 230, 211, 0.78), rgba(245, 230, 211, 0.78)), url('https://picsum.photos/seed/sg-beautycastlecom-faq/1600/900');
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
color: var(--text-dark);
}

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

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

.faq-item {
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

/* Newsletter Section */
.newsletter {
    background: linear-gradient(rgba(255, 192, 217, 0.85), rgba(255, 107, 157, 0.85)), url('https://picsum.photos/seed/sg-beautycastlecom-newsletter/1600/900');
    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 input {
    padding: 12px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    flex: 1;
    min-width: 250px;
}

/* Footer */
.footer {
    background: var(--primary-color);
    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-bottom {
    text-align: center;
    border-top: 1px solid #333;
    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%;
    }
}


.city-scenes {
    background: linear-gradient(rgba(20, 20, 20, 0.56), rgba(20, 20, 20, 0.56)), url('https://picsum.photos/seed/sg-beautycastlecom-city-scenes/1600/900');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}

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