﻿@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@500;600;700&amp;family=EB+Garamond:wght@400;500&amp;display=swap');

body {
    font-family: 'Inter', 'EB Garamond', Georgia, serif;
    color: #fff;
    background-color: #0A1628;
}

.admin-header-links {
    background-color: rgb(10 22 40 / var(--tw-bg-opacity, 1));
    text-align:center;
}

.bar-notification {
    background-color: rgb(10 22 40 / var(--tw-bg-opacity, 1));
}

.hero-bg p {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    max-height:100px;
}

.heading-serif {
    /*font-family: 'Cormorant', Georgia, serif;*/
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.nav-link {
    position: relative;
    font-family: 'Inter', 'Cormorant', Georgia, serif;
    font-weight: 400;
    letter-spacing: 0.4px;
    font-size: 18px;
}

    .nav-link:after {
        content: '';
        position: absolute;
        width: 0;
        height: 1px;
        bottom: -4px;
        left: 0;
        background-color: #C9A227;
        transition: width 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    }

    .nav-link:hover:after {
        width: 100%;
    }

.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

    .nav-dropdown-trigger i {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.65);
        transition: transform 0.25s ease, color 0.25s ease;
    }

.nav-dropdown:hover .nav-dropdown-trigger i,
.nav-dropdown:focus-within .nav-dropdown-trigger i {
    transform: rotate(180deg);
    color: #C9A227;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 245px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(10, 22, 40, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    left: -20px;
    right: -20px;
    top: 100%;
    height: 18px;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -9px;
    left: 50%;
    width: 16px;
    height: 16px;
    background: #0A1628;
    border-left: 1px solid rgba(255, 255, 255, 0.10);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    position: relative;
    display: block;
    padding: 11px 14px;
    border-radius: 10px;
    font-family: 'Cormorant', Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.25px;
    color: rgba(255, 255, 255, 0.82);
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

    .nav-dropdown-menu a:hover,
    .nav-dropdown-menu a:focus {
        color: #FFFFFF;
        background: rgba(201, 162, 39, 0.12);
        padding-left: 18px;
        outline: none !important;
        box-shadow: none !important;
    }

    .nav-dropdown-menu a::before {
        content: '';
        position: absolute;
        left: 7px;
        top: 50%;
        width: 3px;
        height: 0;
        border-radius: 999px;
        background: #C9A227;
        transform: translateY(-50%);
        transition: height 0.2s ease;
    }

    .nav-dropdown-menu a:hover::before,
    .nav-dropdown-menu a:focus::before {
        height: 18px;
    }

.gold-btn {
    background-color: #C9A227;
    color: #0A1628;
    font-family: 'Inter', 'Cormorant', Georgia, serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

    .gold-btn:hover {
        background-color: #B8971F;
        transform: translateY(-2px);
    }

.outline-gold {
    border: 1px solid #C9A227;
    color: #C9A227;
    font-family: 'Inter', 'Cormorant', Georgia, serif;
    transition: all 0.3s ease;
}

    .outline-gold:hover {
        background-color: #C9A227;
        color: #0A1628;
    }

.elegant-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

    .elegant-card:hover {
        border-color: rgba(201, 162, 39, 0.25);
        background: rgba(255,255,255,0.035);
        transform: translateY(-3px);
    }

.official-icon {
    flex: 0 0 auto;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    border-radius: 18px;
    background: #F4F0E8;
    border: 1px solid rgba(201, 162, 39, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

    .official-icon img {
        display: block;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.official-icon--coin {
    width: 92px;
    height: 92px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    overflow: hidden;
}

    .official-icon--coin img {
        width: 100%;
        height: 100%;
    }

.association-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.association-logo {
    flex: 0 0 auto;
    width: 90px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    border-radius: 12px;
    background: #F4F0E8;
    border: 1px solid rgba(201, 162, 39, 0.25);
}

    .association-logo img {
        display: block;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.section-header {
    /*font-family: 'Cormorant', Georgia, serif;*/
    font-weight: 600;
    letter-spacing: -0.015em;
}

.section-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: #C9A227;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-bg {
    background: linear-gradient(rgba(10, 22, 40, 0.72), rgba(10, 22, 40, 0.85)), url(https://picsum.photos/id/1015/2000/1200);
    background-size: cover;
    background-position: center 40%;
}

.hero-bg2 {
    background: linear-gradient(rgba(10, 22, 40, 0.72), rgba(10, 22, 40, 0.85)), url(https://www.arrowandbranchrarecoins.com/Content/Images/OurStory/our-story-desktop-5iwntbtbf07.jpg);
    background-size: cover;
    background-position: center 40%;
}

.hero-bg3 {
    background: linear-gradient(rgba(10, 22, 40, 0.72), rgba(10, 22, 40, 0.85)), url(https://www.arrowandbranchrarecoins.com/Content/Images/Press/press-desktop-5izw3c5g9dl.jpg);
    background-size: cover;
    background-position: center 40%;
}

.hero-bg4 {
    background: linear-gradient(rgba(10, 22, 40, 0.72), rgba(10, 22, 40, 0.85)), url(https://www.arrowandbranchrarecoins.com/Content/Images/Home/contact-us-desktop-5iwntbu5toy.jpg);
    background-size: cover;
    background-position: center 40%;
}

.footer {
    background-color: #0A1628;
    color: #aaa;
    padding: 60px 20px 30px;
}

.footer-upper {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-block .title {
    color: #C9A227;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-block ul.list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-block ul.list li {
        margin-bottom: 10px;
    }

.footer-block a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .footer-block a:hover {
        color: #C9A227;
    }

.footer-lower {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #777;
}

.footer-disclaimer,
.footer-powered-by {
    opacity: 0.85;
}

    .footer-powered-by a {
        color: #C9A227;
    }

.nav-link:focus,
nav a:focus {
    outline: none !important;
    box-shadow: none !important;
}

.video-thumbnail {
    position: relative;
    background: linear-gradient(145deg, #1a2638 0%, #0f1826 100%);
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.play-button {
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.video-card:hover .play-button {
    transform: scale(1.1);
}

.html-login-page .login-page .page-title h1,
.html-login-page .login-page .title,
.html-login-page .login-page .title strong,
.html-login-page .login-page .inputs label {
    color: #111;
}

.html-login-page .login-page .returning-wrapper {
    max-width: 560px;
    margin: 0 auto;
    padding: 24px;
    border: 1px solid #d5d5d5;
    border-radius: 4px;
    background: #fff;
}

.html-login-page .login-page .returning-wrapper .form-fields,
.html-login-page .login-page .returning-wrapper .buttons {
    padding: 0;
    background: transparent;
}

.html-login-page .login-page .returning-wrapper input[type="text"],
.html-login-page .login-page .returning-wrapper input[type="email"],
.html-login-page .login-page .returning-wrapper input[type="password"],
.html-login-page .login-page .returning-wrapper input[type="tel"] {
    background: #fff;
    color: #111;
    border: 1px solid #777;
}

.html-login-page .login-page .returning-wrapper input[type="text"]:focus,
.html-login-page .login-page .returning-wrapper input[type="email"]:focus,
.html-login-page .login-page .returning-wrapper input[type="password"]:focus,
.html-login-page .login-page .returning-wrapper input[type="tel"]:focus {
    border-color: #0A1628;
    box-shadow: none;
}

.html-login-page .login-page .returning-wrapper .forgot-password a {
    color: #0A1628;
}