/* GLOBAL STYLES */

:root {
    --bg-main: #050505;
    --bg-alt: #111111;
    --gold: #d4af37;
    --gold-soft: #f4c873;
    --text-main: #f5f5f5;
    --text-muted: #c1c1c1;
    --card-bg: rgba(15, 15, 15, 0.96);
    --border-soft: rgba(212, 175, 55, 0.4);
    --radius-lg: 18px;
    --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.85);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, #111111 0, #020202 40%, #000000 100%);
    color: var(--text-main);
    line-height: 1.6;
    padding-top: 80px; /* clears fixed header */
}

/* UTILITIES */

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 1.5rem;
    margin: 0 auto;
}

.section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), transparent 60%),
        radial-gradient(circle at bottom right, rgba(244, 200, 115, 0.08), transparent 55%);
    opacity: 0.8;
    z-index: -2;
}

.section-alt {
    background-color: var(--bg-alt);
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: var(--gold-soft);
    margin-bottom: 0.75rem;
}

h1, h2, h3 {
    font-family: "Playfair Display", "Times New Roman", serif;
    color: #ffffff;
}

h1 {
    font-size: clamp(2.4rem, 3vw + 1.5rem, 3.6rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.8rem, 2vw + 1rem, 2.4rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, #e1c46a, var(--gold));
    color: #111111;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.7);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.85);
}

.btn-outline {
    border-color: var(--gold);
    color: var(--gold-soft);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.12);
}

.btn-block {
    width: 100%;
}

/* ===========================
   HEADER (ROYAL + RESPONSIVE)
=========================== */

.idol-header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, #1a1506, #000);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.idol-container {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.idol-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.idol-logo {
    width: 109px;
    height: 64px;
    object-fit: contain;
}

.idol-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.idol-brand-name {
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    color: #fff;
    letter-spacing: 0.35em;
}

.idol-brand-tagline {
    font-size: 0.65rem;
    color: #d4af37;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* Nav */

.idol-nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.idol-nav-list li a {
    font-size: 0.85rem;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 3px;
    transition: 0.3s ease;
}

/* Gold underline on hover */
.idol-nav-list li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.idol-nav-list li a:hover::after {
    width: 100%;
}

.idol-nav-list li a:hover {
    color: #d4af37;
}

/* Mobile toggle */

.idol-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    padding: 0;
}

.idol-menu-toggle span {
    display: block;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: #f5f5f5;
    margin: 0 auto;
    transition: 0.25s ease;
}

.idol-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.idol-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.idol-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
}

/* Mobile nav behaviour */

@media (max-width: 900px) {
    .idol-nav-list {
        gap: 1.4rem;
    }
}

@media (max-width: 768px) {
    .idol-menu-toggle {
        display: flex;
    }

    .idol-nav {
        position: fixed;
        top: 64px;
        right: 0;
        left: 0;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: 0.3s ease;
        background: rgba(4, 4, 4, 0.98);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(18px);
    }

    .idol-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .idol-nav-list {
        flex-direction: column;
        align-items: center;
        padding: 0.9rem 1.5rem 1.3rem;
        gap: 0.6rem;
    }
}

/* ===========================
   HERO
=========================== */

.hero-shell {
    position: relative;
    background:
        radial-gradient(circle at left, rgba(212, 175, 55, 0.2), transparent 60%),
        radial-gradient(circle at right, rgba(0, 0, 0, 0.9), transparent 65%),
        url("../images/hero-bg.jpg"); /* replace with your building image */
    background-size: cover;
    background-position: center right;
    color: #fff;
}

.hero-overlay-texture {
    position: absolute;
    inset: 0;
    background-image: url("../images/gold-particles.png"); /* optional */
    opacity: 0.18;
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.3fr);
    gap: 2rem;
    align-items: center;
    padding: 5rem 1.5rem 12rem;
}

.hero-text p {
    max-width: 640px;
    color: var(--text-muted);
    margin-bottom: 1.7rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

/* Hero highlight card */

.hero-highlight-card {
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.17), rgba(15, 15, 15, 0.98));
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    max-width: 420px;
    margin-left: auto;
    position: relative;
    overflow: hidden;
}

.hero-highlight-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.2), transparent 60%);
    opacity: 0.8;
    pointer-events: none;
}

.hero-highlight-card h2 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.hero-highlight-card p {
    color: var(--text-muted);
}

/* GRID HELPERS */

.grid.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
    gap: 2.5rem;
}

.section-text p {
    color: var(--text-muted);
}

.section-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

/* LISTS */

.icon-list {
    list-style: none;
    margin-top: 1rem;
}

.icon-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.6rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.icon-list li::before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 0.15rem;
    font-size: 0.6rem;
    color: var(--gold-soft);
}

/* MISSION & VISION */

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem;
    margin-top: 1.5rem;
}

.mv-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    padding: 1.75rem;
}

/* TIMELINE */

.timeline {
    margin-top: 2rem;
    border-left: 1px solid rgba(212, 175, 55, 0.4);
    padding-left: 1.5rem;
    position: relative;
}

.timeline-item {
    margin-bottom: 1.3rem;
    position: relative;
}

.timeline-year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(5, 5, 5, 0.95));
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.timeline-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -1.8rem;
    top: 0.4rem;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 2px solid var(--gold-soft);
    background-color: #000;
}

/* CARD GRID */

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 1.8rem;
}

.info-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    padding: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: var(--gold);
}

/* SERVICES */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.32);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.17), transparent 55%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: var(--shadow-soft);
}

.service-card:hover::after {
    opacity: 1;
}

.service-number {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 0.4rem;
}

/* VALUES */

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 1.8rem;
}

.value-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    padding: 1.6rem;
    color: var(--text-muted);
}

/* PROJECT */

.project-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 2rem;
    margin-top: 2rem;
    align-items: center;
}

.project-image img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
}

/* TEAM */

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.3rem;
    margin-top: 2rem;
}

.team-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 1.4rem;
    border: 1px solid var(--border-soft);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.team-role {
    color: var(--gold-soft);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 0.4rem;
}

/* CONTACT */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
    gap: 2.2rem;
}

.contact-info p {
    color: var(--text-muted);
}

.contact-list {
    list-style: none;
    margin-top: 1.2rem;
    font-size: 0.95rem;
}

.contact-list li {
    margin-bottom: 0.6rem;
}

.contact-list a {
    color: var(--gold-soft);
    text-decoration: none;
}

.contact-list a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 1.9rem;
    border: 1px solid var(--border-soft);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.8rem;
}

label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
}

input,
textarea {
    background: #050505;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    padding: 0.65rem 0.9rem;
    color: var(--text-main);
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

textarea {
    border-radius: 16px;
    resize: vertical;
}

input:focus,
textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.6);
    background: #080808;
}

/* FOOTER */

.footer {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.4rem 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.back-to-top {
    color: var(--gold-soft);
    text-decoration: none;
    font-size: 0.85rem;
}

.back-to-top:hover {
    text-decoration: underline;
}

/* RESPONSIVE DESIGN */

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

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

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

    .team-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .project-grid,
    .hero-content,
    .grid.two-col,
    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-highlight-card {
        margin-top: 1.5rem;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3.5rem 0;
    }

    .services-grid,
    .card-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-content {
        padding: 3.7rem 1.3rem 4rem;
    }

    .hero-shell {
        background-position: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-form {
        padding: 1.25rem;
    }
}


 /* ===========================
           SCROLL ANIMATIONS
        =========================== */
        [data-animate] {
            opacity: 0;
            transform: translateY(32px);
            transition:
                opacity 0.9s ease-out,
                transform 0.9s ease-out;
            will-change: opacity, transform;
        }

        [data-animate].in-view {
            opacity: 1;
            transform: translateY(0);
        }

        [data-animate="fade-up"]    { transform: translateY(32px); }
        [data-animate="fade-down"]  { transform: translateY(-32px); }
        [data-animate="fade-left"]  { transform: translateX(32px); }
        [data-animate="fade-right"] { transform: translateX(-32px); }
        [data-animate="fade-scale"] { transform: translateY(20px) scale(0.95); }

        [data-animate="fade-down"].in-view,
        [data-animate="fade-left"].in-view,
        [data-animate="fade-right"].in-view,
        [data-animate="fade-scale"].in-view {
            transform: translate(0, 0) scale(1);
        }

        /* ===========================
           ABOUT PAGE – STORY BANNER CTA
           (LAPIS-style, royal theme)
        =========================== */
        .story-banner {
            position: relative;
            width: 100%;
            min-height: 30vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;

            /* Background image – change path to your image */
            background:
                linear-gradient(
                    0deg,
                    rgba(0, 0, 0, 0.55),
                    rgba(0, 0, 0, 0.55)
                ),
                url("../images/about-story-banner.jpg"); /* << replace with your photo */
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
        }

        .story-banner-overlay {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at left, rgba(212, 175, 55, 0.25), transparent 60%),
                radial-gradient(circle at right, rgba(0, 0, 0, 0.8), transparent 55%);
            mix-blend-mode: soft-light;
            opacity: 0.9;
            pointer-events: none;
        }

        .story-banner-inner {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 0 1.5rem;
        }

        .story-caption {
            text-transform: uppercase;
            letter-spacing: 0.22em;
            font-size: 0.75rem;
            color: #f4c873;
            margin-bottom: 0.7rem;
        }

        .story-banner h1 {
            font-family: "Playfair Display", serif;
            font-size: clamp(2.4rem, 3.4vw + 1rem, 3.8rem);
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: #ffffff;
            margin-bottom: 0.6rem;
        }

        .story-tagline {
            max-width: 640px;
            margin: 0 auto;
            color: #e1e1e1;
            font-size: 0.95rem;
        }

        /* Parallax feel for large screens */
        @media (min-width: 992px) {
            .story-banner {
                background-attachment: fixed;
            }
        }

        /* Responsive tweaks */
        @media (max-width: 768px) {
            .story-banner {
                min-height: 45vh;
                background-position: center;
            }

            .story-banner h1 {
                letter-spacing: 0.18em;
                font-size: clamp(1.9rem, 2.6vw + 1rem, 2.4rem);
            }

            .story-tagline {
                font-size: 0.9rem;
            }
        }
/* ===========================
   CONTACT PAGE – ROYAL BANNER
=========================== */

.contact-banner {
    position: relative;
    width: 100%;
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    background:
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)
        ),
        url("../images/contact-banner.jpg"); /* Replace with your banner image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at left, rgba(212, 175, 55, 0.25), transparent 60%),
        radial-gradient(circle at right, rgba(0, 0, 0, 0.85), transparent 60%);
    mix-blend-mode: soft-light;
    opacity: 0.9;
    pointer-events: none;
}

.contact-banner-inner {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 1.6rem;
}

.contact-caption {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.24em;
    color: var(--gold-soft);
    margin-bottom: 0.4rem;
}

.contact-banner h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.4rem, 3.5vw + 1rem, 3.8rem);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.contact-tagline {
    max-width: 720px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: #e3e3e3;
}

/* Parallax on big screens */
@media (min-width: 992px) {
    .contact-banner { background-attachment: fixed; }
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .contact-banner { min-height: 40vh; }
    .contact-banner h1 { font-size: 2rem; letter-spacing: 0.15em; }
}


