@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
    --gold: #c99527;
    --gold-light: #e5bd57;
    --navy: #101522;
    --navy-dark: #080b12;
    --text: #222;
    --white: #ffffff;
}

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

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: "Montserrat", Arial, sans-serif;
    background: var(--white);
    color: var(--text);
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    background: #fff;
}

/* ---------------- HEADER ---------------- */

.header {
    width: 100%;
    min-height: 190px;
    padding: 22px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 5;
}

.brand {
    display: flex;
    align-items: center;
    gap: 22px;
}

.logo {
    width: 145px;
    height: 145px;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
}

.brand-text {
    line-height: 1.1;
}

.arabic {
    color: var(--gold);
    font-size: clamp(16px, 1.6vw, 24px);
    font-weight: 700;
    margin-bottom: 10px;
    direction: rtl;
}

.brand-text h1 {
    color: var(--gold);
    font-size: clamp(22px, 2.4vw, 38px);
    letter-spacing: 1.5px;
    font-weight: 800;
    white-space: nowrap;
}

.contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 285px;
}

.contact a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: color .2s ease, transform .2s ease;
}

.contact a:hover {
    color: var(--gold);
    transform: translateX(-3px);
}

.icon {
    width: 27px;
    height: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 24px;
    font-weight: 700;
}

/* ---------------- HERO ---------------- */

.hero {
    flex: 1;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 45%, rgba(201,149,39,.08), transparent 35%),
        #ffffff;
}

.coming-soon {
    position: relative;
    z-index: 2;
    padding: 30px;
    transform: translateY(-10px);
}

.small-line {
    display: block;
    color: #777;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 18px;
}

.coming-soon h2 {
    color: var(--navy);
    font-size: clamp(48px, 8vw, 110px);
    line-height: .95;
    font-weight: 800;
    letter-spacing: 4px;
    text-shadow: 0 3px 18px rgba(0,0,0,.08);
}

.coming-soon h2::after {
    content: "";
    display: block;
    width: 150px;
    height: 5px;
    margin: 24px auto 20px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    border-radius: 10px;
}

.coming-soon p {
    color: #666;
    font-size: 16px;
    font-weight: 500;
}

/* ---------------- GOLD/NAVY WAVE ---------------- */

.footer {
    position: relative;
    height: 145px;
    background: #111e2d;
    color: #aaa;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 18px;
    overflow: hidden;
}

/* Broad bronze/gold wave */
.footer::before {
    content: "";
    position: absolute;
    left: -6%;
    top: -94px;
    width: 112%;
    height: 155px;
    background: #c38c48;
    border-radius: 0 0 50% 50% / 0 0 70% 70%;
    transform: rotate(1.8deg);
}

/* Light champagne-gold highlight */
.footer::after {
    content: "";
    position: absolute;
    left: -6%;
    top: -83px;
    width: 112%;
    height: 145px;
    background: #e5c174;
    border-radius: 0 0 50% 50% / 0 0 70% 70%;
    transform: rotate(1.8deg);
}

/* Dark navy wave sitting over the gold bands */
.gold-line {
    position: absolute;
    z-index: 2;
    top: -72px;
    left: -6%;
    width: 112%;
    height: 140px;
    background: #141a26;
    border-radius: 0 0 50% 50% / 0 0 72% 72%;
    transform: rotate(1.8deg);
    border-top: 2px solid #c38c48;
}

/* Fine bright-gold accent line */
.gold-line::after {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 100%;
    height: 3px;
    background: #e5c174;
    border-radius: 50%;
}

.footer p {
    position: relative;
    z-index: 5;
    font-size: 11px;
    letter-spacing: .5px;
}
/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 900px) {
    .header {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 25px 5% 10px;
        gap: 20px;
    }

    .brand {
        flex-direction: column;
        gap: 8px;
    }

    .logo {
        width: 125px;
        height: 125px;
    }

    .brand-text h1 {
        white-space: normal;
    }

    .contact {
        align-items: center;
        min-width: 0;
    }

    .contact a {
        justify-content: center;
    }

    .hero {
        min-height: 430px;
    }

    .coming-soon h2 {
        font-size: clamp(42px, 11vw, 80px);
    }
}

@media (max-width: 500px) {
    .header {
        min-height: auto;
    }

    .logo {
        width: 105px;
        height: 105px;
    }

    .arabic {
        font-size: 14px;
    }

    .brand-text h1 {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .contact a {
        font-size: 12px;
    }

    .coming-soon {
        padding: 15px;
    }

    .small-line {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .coming-soon h2 {
        font-size: 42px;
        letter-spacing: 2px;
    }

    .coming-soon p {
        font-size: 13px;
        padding: 0 15px;
    }

    .footer {
        height: 110px;
    }
}
