/* ---------------- Hero Video ---------------- */
.hero-video {
    object-fit: cover;
    object-position: center;
    height: 75vh;
    width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
}

.hero-overlay-content {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
}

/* ---------------- Responsive YouTube Embed ---------------- */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 500px;
    border-radius: 12px;
    margin: 0 auto;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

/* ---------------- Vault Section ---------------- */
.vault-logo {
    max-width: 400px;
}

.vault-description {
    max-width: 900px;
    margin: 0 auto;
}

/* ---------------- Coin Cards ---------------- */
.coin-card {
    background-color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.coin-card img {
    background-color: white;
    border-radius: 0.5rem;
    width: 100%;
}

.coin-card p {
    margin-top: 0.5rem;
    font-weight: 600;
}

/* ---------------- Gallery ---------------- */
.gallery-img {
    border-radius: 0.5rem;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    width: 100%;
}

/* ---------------- Icon Boxes ---------------- */
.icon-box {
    background-color: #04041a;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.icon-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 12px rgba(0, 255, 128, 0.15);
}

/* ---------------- Five Column Layout ---------------- */
.five-cols > .col {
    flex: 0 0 20%;
    max-width: 20%;
}

@media (max-width: 768px) {
    .five-cols > .col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .five-cols > .col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ---------------- Expo ---------------- */
.expo-img {
    max-height: 500px;
    border-radius: 12px;
    width: 100%;
    object-fit: cover;
}

/* ---------------- Text Utility ---------------- */
.text-white {
    color: #fff !important;
}

/* ---------------- Utility Replacements ---------------- */
.p-2 {
    padding: 0.5rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.rounded {
    border-radius: 0.375rem !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.border-0 {
    border: none !important;
}

.border-light {
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

/* ---------------- Global & Navbar ---------------- */
body {
    background-color: #1e214d !important;
    color: #fff !important;

    min-height: 100vh;
    position: relative;
    z-index: 1;
    font-family: 'Exo', sans-serif !important;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/bg3.png') no-repeat center center fixed;
    background-size: cover;
    opacity: 0.25;
    z-index: -1;
    pointer-events: none;
}

.content-wrapper {
    padding: 3rem 1rem;
}

.navbar {
    background-color: #1e214d;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.navbar-brand img {
    max-height: 60px; /* Adjustable depending on how tall you want the logo */
    height: auto;
    width: auto;
}

.navbar-nav .nav-link {
    color: gold;
    font-weight: 600;
    font-size: 1.2rem; /* 👈 make the nav links larger */
    margin-left: 1rem;
}
.btn-warning{

background-color: #d09e43 !important;
color: #fff !important;
    border-color: #d09e43 !important;

    padding-top:8px !important ;
}

.navbar-nav .nav-link:hover {
    color: greenyellow;
}

.navbar-toggler {
    border: none;
    color: #fff;
    font-size: 1.25rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }
}

.gallery-fixed {
    height: 200px !important;
    object-fit: cover !important;
    cursor: pointer;
}


 .yt-portrait {
     max-width: 320px; /* or 360px depending on how large you want it */
     margin: 0 auto;
 }

.yt-portrait .ratio-9x16 {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 portrait */
    height: 0;
}

.yt-portrait .ratio-9x16 iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}



     /* Wrapper to force all images same height */
 .spec-image-wrapper {
     width: 100%;
     height: 250px; /* adjust this if needed */
     overflow: hidden;
     border-radius: 12px;
     position: relative;
 }

/* Image inside wrapper */
.spec-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* important to make images cover without distortion */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Fancy hover zoom and glow */
.spec-image-wrapper:hover .spec-image {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.snippet {
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.5); /* semi-transparent */
    color: gold;
    font-style: italic;
    border-radius: 8px;
    text-align: center;
    font-size: 1.95rem;
}


.navbar-toggler:focus {
    box-shadow: none;
}



.dropdown-panel {
    background-color: rgba(2, 0, 46, 0.9) !important; /* Deep transparent blue */
    backdrop-filter: blur(2px); /* Optional soft blur effect */
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border: none;
    z-index: 1050; /* Make sure it's on top */
}

.navbar-nav .nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    color: white !important;
}

.navbar-nav .nav-link:hover {
    color: #66ff99 !important;
    background-color: rgba(255, 255, 255, 0.05);
}
.coin-caption {
    font-family: 'Exo', sans-serif !important; /* or 'Eurostile', or 'Rajdhani' for futuristic look */
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    text-align: LEFT;
    margin: 0;
}

.coin-caption span {
    font-weight: 800;
}
.contact-form-wrapper,
.team-wrapper {
    width: 100%;
}

@media (min-width: 992px) {
    .contact-form-wrapper,
    .team-wrapper {
        width: 44%;
    }
}

.team-card {
    position: relative;
    background-color: #f3e4cc;
    color: #333;
    min-height: 160px;
    border-radius: 8px;
    padding: 20px 20px 20px 140px;
    width: 100%;
}

.team-img {
    position: absolute;
    width: 140px;
    height: 140px;
    left: -30px;
    top: 10px;
    border: 4px solid white;
    border-radius: 50%;
    object-fit: cover;
}

.team-info {
    color: #333;
}

.team-name {
    color: #1e214d;
    font-size: 19px;
}

@media (max-width: 767.98px) {
    .team-card {
        position: relative;
        background-color: #f3e4cc;
        color: #333;
        min-height: 160px;
        border-radius: 8px;
        padding: 20px 20px 20px 140px;
        width: 100%;
    }

    .team-img {
        position: absolute;
        width: 140px;
        height: 140px;
        left: -30px;
        top: 10px;
        border: 4px solid white;
        border-radius: 50%;
        object-fit: cover;
    }

    .team-name {
        color: #1e214d;
        font-size: 19px;
    }

    @media (max-width: 767.98px) {
        .team-card {
            padding: 20px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .team-img {
            position: static;
            margin-bottom: 10px;
            width: 100px;
            height: 100px;
        }

        .team-info {
            padding: 0;
        }
    }
}

@media (max-width: 767.98px) {
    .vault-logo-inline {
        width: 77% !important;
        max-width: none !important;
    }
}

.amuseko-logo {
    max-width: 100%;
    height: auto;
}

/* Optional: scale down logo on small screens */
@media (max-width: 767.98px) {
    .amuseko-logo {
        width: 60%; /* or adjust to your liking */
        max-width: 200px; /* optional upper bound */
    }
}


b, h1, h2, h3, h4, h5, h6 {
    font-family: 'Exo', sans-serif;
    font-weight: bold;
   
}


@media (min-width: 768px) {
    .pc-margin {
        margin-top: 48px;
    }
}

@media (max-width: 767px) {
    .pc-margin {
        margin-top: 0;
    }
}
