:root {
    --bg: #050505;
    --surface: rgba(255, 255, 255, 0.03);
    --surface-strong: rgba(255, 255, 255, 0.08);
    --primary: #f7b500;
    --text: #f9f9f9;
    --muted: rgba(249, 249, 249, 0.65);
    --accent: #4fe3ff;
    /* --hero-image: url('https://images.unsplash.com/photo-1485579149621-3123dd979885?auto=format&fit=crop&w=1600&q=80'); */
	--hero-image: url('../images/Singapore-CrazyElephant2.jpeg');
    font-size: 16px;
}

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

body {
    font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
    background: radial-gradient(circle at top, rgba(79, 227, 255, 0.2), transparent 45%),
        var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
}

img,
svg,
video {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 3vw;
    background: rgba(5, 5, 5, 0.65);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
}

.brand-mark {
    width: 1rem;
    height: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 999px;
}

.site-nav {
    display: flex;
    gap: 1.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.site-nav a {
    position: relative;
    padding-bottom: 0.25rem;
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.header-social {
    display: flex;
    gap: 0.75rem;
}

.header-social svg {
    width: 1.4rem;
    height: 1.4rem;
    fill: var(--text);
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.header-social a:hover svg,
.header-social a:focus-visible svg {
    opacity: 1;
}

main {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 3rem 3vw 5rem;
}

.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.hero-media {
    position: relative;
    min-height: 420px;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    filter: grayscale(0.2) brightness(0.9);
    border-radius: 24px;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.05), rgba(5, 5, 5, 0.75));
}

.hero-video {
    position: absolute;
    bottom: 1.5rem;
    right: -1rem;
    width: 55%;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.hero-content h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-content .lede {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 560px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.78rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.hero-actions {
    margin: 1.5rem 0 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-actions a {
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid transparent;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-actions a.primary {
    background: linear-gradient(120deg, var(--primary), var(--accent));
    color: #050505;
}

.hero-actions a.secondary {
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-actions a:hover {
    transform: translateY(-2px);
}

.stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stats .stat {
    font-size: 2rem;
    font-weight: 600;
}

.panel {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.panel-header {
    max-width: 720px;
    margin-bottom: 2rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.card {
    padding: 1.5rem;
    border-radius: 18px;
    background: var(--surface-strong);
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.card-tag {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    color: var(--accent);
}

.text-link {
    color: var(--primary);
    font-weight: 600;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
}

.timeline article {
    padding: 1.25rem;
    border-left: 2px solid var(--primary);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.timeline span {
    font-size: 0.85rem;
    color: var(--muted);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.service-grid article {
    padding: 1.25rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
}

.store-panel button {
    align-self: flex-start;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    border: none;
    background: var(--primary);
    color: #050505;
    font-weight: 600;
    cursor: pointer;
}

.newsletter-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: var(--text);
    min-width: 260px;
}

.newsletter-form button {
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    border: none;
    background: var(--accent);
    color: #050505;
    font-weight: 600;
    cursor: pointer;
}

.disclaimer {
    font-size: 0.85rem;
    color: var(--muted);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.about-content ul {
    list-style: none;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--muted);
}

.site-footer {
    display: flex;
    justify-content: space-between;
    padding: 2rem 3vw 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

button,
input {
    font-family: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media (max-width: 768px) {
    .site-header {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .site-nav {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .hero-video {
        position: relative;
        width: 100%;
        right: 0;
        bottom: 0;
        margin-top: 1rem;
    }

    main {
        padding-top: 2rem;
    }
}

/* Settings Link Styling - Matches social media icons */
.settings-link {
    transition: all 0.3s ease;
}

.settings-link:hover {
    transform: rotate(90deg) scale(1.1);
    filter: drop-shadow(0 0 8px var(--primary));
}

.settings-link:active {
    transform: rotate(180deg) scale(0.95);
}

.settings-link svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}
