/* =========================================================
   FALAQ HOLDINGS LTD.
   Premium Luxury Corporate Website
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

/* =========================================================
   ROOT
   ========================================================= */

:root {
    --black: #0b0b0b;
    --black-soft: #111111;
    --black-card: #151515;

    --white: #f5f2ea;
    --white-soft: #d8d5ce;

    --gold: #c9a86a;
    --gold-light: #e1c98a;
    --gold-dark: #9d7d42;

    --gray: #a7a7a7;
    --gray-dark: #686868;

    --border: rgba(201, 168, 106, 0.22);

    --max-width: 1240px;
}

/* =========================================================
   RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
}

/* =========================================================
   GENERAL
   ========================================================= */

.container {
    width: min(90%, var(--max-width));
    margin: 0 auto;
}

.section {
    padding: 120px 0;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;

    margin-bottom: 20px;
}

.section-label::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--gold);
}

h1,
h2,
h3,
h4 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    line-height: 1.15;
}

h2 {
    font-size: clamp(40px, 5vw, 68px);
}

p {
    color: var(--gray);
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.section-text {
    max-width: 650px;
    font-size: 17px;
}

.section-text p + p {
    margin-top: 22px;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    z-index: 1000;

    background: rgba(11, 11, 11, 0.86);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
    min-height: 86px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

/* LOGO */

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    width: 110px;
    height: auto;
    display: block;
}

/* NAVIGATION */

.main-navigation {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-navigation a {
    color: #d0d0d0;

    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;

    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: var(--gold-light);
}

/* HEADER BUTTON */

.header-button {
    padding: 11px 20px;

    border: 1px solid var(--gold);

    color: var(--gold-light);

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    transition: all 0.3s ease;
}

.header-button:hover {
    background: var(--gold);
    color: var(--black);
}

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

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(201, 168, 106, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #0b0b0b 0%,
            #141414 55%,
            #090909 100%
        );
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.88),
            rgba(0, 0, 0, 0.25)
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.72)
        );

    pointer-events: none;
}

.hero::after {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -220px;
    bottom: -240px;

    border: 1px solid rgba(201, 168, 106, 0.14);

    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 900px;

    padding-top: 80px;

    animation: fadeUp 1s ease both;
}

.hero .eyebrow {
    color: var(--gold-light);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 4px;
    text-transform: uppercase;

    margin-bottom: 28px;
}

.hero h1 {
    font-size: clamp(55px, 8vw, 110px);

    letter-spacing: -3px;

    max-width: 1000px;
}

.hero-description {
    max-width: 650px;

    font-size: 18px;

    color: #b5b5b5;

    margin-top: 30px;
}

.hero-actions {
    display: flex;
    align-items: center;

    gap: 16px;

    margin-top: 42px;

    flex-wrap: wrap;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 28px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    transition: all 0.3s ease;
}

.button-primary {
    background: var(--gold);
    color: var(--black);
}

.button-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.24);

    color: var(--white);
}

.button-secondary:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

/* =========================================================
   ABOUT
   ========================================================= */

.introduction {
    background: var(--white);
    color: var(--black);
}

.introduction h2 {
    color: var(--black);
}

.introduction .section-label {
    color: var(--gold-dark);
}

.introduction .section-label::before {
    background: var(--gold-dark);
}

.introduction .section-text p {
    color: #555;
}

/* =========================================================
   BUSINESSES
   ========================================================= */

.businesses {
    background: var(--black-soft);
}

.section-heading {
    max-width: 780px;
    margin-bottom: 65px;
}

.section-heading > p:last-child {
    margin-top: 20px;

    font-size: 17px;

    color: var(--gray);
}

.business-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.business-card {
    min-height: 310px;

    padding: 38px;

    background: var(--black-card);

    border: 1px solid rgba(255, 255, 255, 0.07);

    position: relative;

    overflow: hidden;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease;
}

.business-card::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -70px;
    bottom: -70px;

    border: 1px solid rgba(201, 168, 106, 0.16);

    border-radius: 50%;
}

.business-card:hover {
    transform: translateY(-7px);

    border-color: var(--border);

    background: #181818;
}

.business-number {
    color: var(--gold);

    font-size: 11px;

    letter-spacing: 3px;
}

.business-card h3 {
    margin-top: 55px;

    font-size: 30px;
}

.business-category {
    color: var(--gold-light);

    font-size: 12px !important;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.business-card > p:not(.business-category) {
    margin-top: 12px;

    font-size: 14px;

    max-width: 360px;
}

.business-link {
    display: inline-block;

    margin-top: 22px;

    color: var(--gold-light);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 1px;

    transition: transform 0.3s ease;
}

.business-link:hover {
    transform: translateX(5px);
}

/* =========================================================
   APPROACH
   ========================================================= */

.approach {
    background: #0d0d0d;
}

.approach-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 60px;
}

.approach-item {
    padding-top: 25px;

    border-top: 1px solid var(--border);

    transition: transform 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-5px);
}

.approach-item span {
    color: var(--gold);

    font-size: 12px;

    letter-spacing: 2px;
}

.approach-item h3 {
    margin: 20px 0 12px;

    font-size: 31px;
}

.approach-item p {
    font-size: 14px;
}

/* =========================================================
   VISION
   ========================================================= */

.vision {
    background:
        radial-gradient(
            circle at center,
            rgba(201, 168, 106, 0.08),
            transparent 55%
        ),
        var(--black);

    text-align: center;
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
}

.vision h2 {
    margin-top: 10px;
}

.vision p:last-child {
    max-width: 750px;

    margin: 30px auto 0;

    font-size: 18px;
}

/* =========================================================
   FUTURE
   ========================================================= */

.future {
    background:
        linear-gradient(
            rgba(10, 10, 10, 0.94),
            rgba(10, 10, 10, 0.97)
        ),
        radial-gradient(
            circle at center,
            rgba(201, 168, 106, 0.11),
            transparent 55%
        );
}

/* =========================================================
   VALUES
   ========================================================= */

.values {
    background: var(--black-soft);
}

.values-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.value-item {
    padding: 32px 28px;

    border: 1px solid rgba(255, 255, 255, 0.07);

    background: #131313;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);

    border-color: var(--border);
}

.value-item h3 {
    font-size: 24px;

    margin-bottom: 14px;
}

.value-item p {
    font-size: 14px;
}

/* =========================================================
   OPPORTUNITY
   ========================================================= */

.opportunity {
    background:
        linear-gradient(
            135deg,
            #111111,
            #0b0b0b
        );

    text-align: center;
}

.opportunity-content {
    max-width: 850px;
    margin: 0 auto;
}

.opportunity h2 {
    margin-top: 5px;
}

.opportunity p:not(.section-label) {
    max-width: 650px;

    margin: 22px auto 32px;

    font-size: 17px;
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact {
    background: #0a0a0a;
}

.contact-details {
    max-width: 600px;
}

.contact-details > p:first-child {
    margin-bottom: 25px;

    font-size: 17px;
}

.contact-details a {
    display: inline-block;

    color: var(--gold-light);

    font-family: "Playfair Display", serif;

    font-size: 24px;

    margin-bottom: 20px;

    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--white);
}

.contact-details > p:last-child {
    color: #777;

    font-size: 13px;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: #070707;

    border-top: 1px solid rgba(255, 255, 255, 0.06);

    padding: 55px 0 25px;
}

.footer-inner {
    display: grid;

    grid-template-columns: 1fr auto 1fr;

    gap: 40px;

    align-items: center;
}

.footer-logo {
    color: var(--gold-light);

    font-family: "Playfair Display", serif;

    font-size: 22px;

    letter-spacing: 3px;
}

.footer-inner > div:first-child p {
    color: #777;

    font-size: 8px;

    letter-spacing: 4px;

    margin-top: 5px;
}

.footer-links {
    display: flex;

    gap: 25px;

    flex-wrap: wrap;
}

.footer-links a {
    color: #888;

    font-size: 12px;

    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.copyright {
    color: #666;

    font-size: 11px;

    text-align: right;
}

/* =========================================================
   ANIMATION
   ========================================================= */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .section {
        padding: 100px 0;
    }

    .main-navigation {
        gap: 18px;
    }

    .header-button {
        display: none;
    }

    .two-column {
        grid-template-columns: 1fr;

        gap: 50px;
    }

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

    .approach-grid {
        gap: 30px;
    }

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

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .copyright {
        text-align: left;
    }

}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .container {
        width: min(91%, 600px);
    }

    .section {
        padding: 80px 0;
    }

    /* HEADER */

    .header-inner {
        min-height: 72px;
    }

    .logo img {
        width: 85px;
    }

    .main-navigation {
        display: none;
    }

    /* HERO */

    .hero {
        min-height: 92vh;
    }

    .hero-content {
        padding-top: 80px;
    }

    .hero .eyebrow {
        font-size: 9px;

        letter-spacing: 2.5px;

        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: clamp(45px, 13vw, 70px);

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 15px;

        margin-top: 22px;
    }

    .hero-actions {
        margin-top: 30px;

        flex-direction: column;

        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    /* HEADINGS */

    h2 {
        font-size: 42px;
    }

    /* BUSINESSES */

    .business-grid {
        grid-template-columns: 1fr;
    }

    .business-card {
        min-height: 280px;

        padding: 30px;
    }

    .business-card h3 {
        margin-top: 45px;

        font-size: 28px;
    }

    /* APPROACH */

    .approach-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    /* VALUES */

    .values-grid {
        grid-template-columns: 1fr;
    }

    /* CONTACT */

    .contact-details a {
        font-size: 21px;
    }

    /* FOOTER */

    .footer-inner {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .copyright {
        text-align: left;
    }

}

/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .hero h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 36px;
    }

    .section {
        padding: 70px 0;
    }

    .business-card {
        padding: 25px;
    }

}
