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

:root {
    --primary-color: #2c1810;
    --secondary-color: #d4af37;
    --accent-color: #8b6914;
    --text-dark: #1a1a1a;
    --text-light: #f8f9fa;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Garamond', 'Georgia', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(135deg, #faf4f0 0%, #f0e5d8 100%);
}

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

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

.navbar {
    background: linear-gradient(90deg, var(--primary-color) 0%, #3d2818 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 15px rgba(212, 175, 55, 0.25);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
}

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

.lang-btn {
    padding: 8px 15px;
    border-radius: var(--border-radius);
    border: 2px solid var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    background: transparent;
    font-weight: 500;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.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(44,24,16,0.76) 0%, rgba(139,105,20,0.76) 100%), url('https://picsum.photos/seed/yxg4com-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 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
    color: var(--secondary-color);
}

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

.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: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-primary:hover {
    background: #e5c158;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

section {
    padding: 80px 20px;
}

section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    animation: slideUp 0.8s ease-out;
    color: var(--primary-color);
    letter-spacing: 2px;
    font-weight: 600;
}

.features {
    background: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)), url('https://picsum.photos/seed/yxg4com-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: 35px;
}

.feature-card {
    background: linear-gradient(135deg, #faf4f0 0%, #f0e5d8 100%);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--secondary-color);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

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

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.services {
    background: linear-gradient(rgba(44, 24, 16, 0.86), rgba(61, 40, 24, 0.86)), url('https://picsum.photos/seed/yxg4com-services/1600/900');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.services h2 {
    color: var(--secondary-color);
}

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

.service-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--secondary-color);
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.service-item h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.testimonials {
    background: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)), url('https://picsum.photos/seed/yxg4com-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, #efe8e0 0%, #e5d5c8 100%);
    padding: 35px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    margin-bottom: 15px;
    font-style: italic;
    color: #333;
    line-height: 1.8;
}

.testimonial-card span {
    display: block;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.faq {
    background: linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.86)), url('https://picsum.photos/seed/yxg4com-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: 25px;
    background: #f9f7f4;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

.newsletter {
    background: linear-gradient(rgba(212, 175, 55, 0.84), rgba(166, 128, 69, 0.84)), url('https://picsum.photos/seed/yxg4com-newsletter/1600/900');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--primary-color);
    text-align: center;
}

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

.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;
    background: white;
}

.footer {
    background: linear-gradient(90deg, var(--primary-color) 0%, #3d2818 100%);
    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;
    font-size: 13px;
    letter-spacing: 1.5px;
    font-weight: 700;
}

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

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

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 30px;
    color: #888;
    font-size: 13px;
}

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .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/yxg4com-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;
}
