/* -----------------------------
   BODY & BASE
------------------------------ */
.openvelnord-today-body {
    font-family: 'Exo 2', sans-serif; /* Updated everywhere */
    background-color: #ffd5b2;
    color: #ffefd0;
    margin: 0;
    padding: 0;
}

/* ================================
   SECTION TITLE
================================ */
.section-title {
    font-family: 'Exo 2', sans-serif; /* consistent with site font */
    font-size: 2.8rem; /* prominent size */
    font-weight: 700;
    color: #4d1900; /* main heading color */
    text-align: center;
    text-shadow: 2px 2px #ffd5b2; /* subtle border/shadow effect for contrast */
    margin-bottom: 40px;
    max-width: 850px; /* contained width for better readability */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

/* ================================
   NAVBAR
   ================================ */
.openvelnord-today-navbar {
    background-color: #ffd5b2; /* soft background */
    font-family: 'Exo 2', sans-serif;
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: flex;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s, box-shadow 0.3s;
}



.openvelnord-today-navbar .openvelnord-today-brand img {
    max-height : 80px;
    transition: transform 0.3s;
}

.openvelnord-today-navbar .openvelnord-today-brand img:hover {
    transform: scale(1.05);
}

.openvelnord-today-navbar .navbar-nav {
    font-weight: 500;
    text-transform: uppercase;
}

.openvelnord-today-navbar .nav-link {
    color: #4d1900;
    margin: 0 8px;
    font-weight: 600;
    transition: color 0.3s, border-bottom 0.3s;
}

.openvelnord-today-navbar .nav-link.active,
.openvelnord-today-navbar .nav-link:hover {
    color: #4d1900;
    border-bottom: 2px solid #4d1900;
    border-radius: 2px;
}

.openvelnord-today-navbar .navbar-toggler {
    border: 2px solid #4d1900;
    color: #4d1900;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s;
}

.openvelnord-today-navbar .navbar-toggler:hover {
    background-color: #4d1900;
    color: #ffd5b2;
}

@media (max-width: 768px) {
    .openvelnord-today-navbar .navbar-nav {
        text-align: center;
    }
    .openvelnord-today-navbar .nav-link {
        padding: 10px 0;
        margin: 0;
        font-size: 1.1rem;
    }
    .openvelnord-today-navbar .openvelnord-today-brand img {
        height: 50px;
        max-width: 140px;
    }
}

.openvelnord-today-hero {
	padding: 120px 20px;
    text-align: center;
    color: #4d1900;
    font-family: 'Exo 2', sans-serif;
    background: url('../images/hero.jpg') center/cover no-repeat;
    background-color: #ffd5b2; /* fallback */
    position: relative;
}

.openvelnord-today-hero .hero-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 15px;
}

.openvelnord-today-hero .hero-title {
    font-size: 4rem;
    font-weight: 900;
    text-shadow: 3px 3px #ffd5b2;
    line-height: 1.2;
    margin-bottom: 20px;
}

.openvelnord-today-hero .hero-sub {
    font-size: 1.4rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-openvelnord {
    background-color: #4d1900;
    color: #ffd5b2;
    font-weight: bold;
    border-radius: 10px;
    padding: 14px 36px;
    transition: 0.3s;
    font-size: 1.1rem;
}

.btn-openvelnord:hover {
    background-color: #ffefd0;
    color: #4d1900;
}

.openvelnord-today-disclaimer-section .disclaimer-card {
    background-color: rgba(77,25,0,0.2);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(77,25,0,0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}
.openvelnord-today-disclaimer-section .disclaimer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(77,25,0,0.6);
}
.openvelnord-today-disclaimer-section .card-title {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #4d1900;
    text-shadow: 1px 1px #ffd5b2;
}
.openvelnord-today-disclaimer-section .card-text {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #4d1900;
}
.openvelnord-today-disclaimer-section .btn-openvelnord {
    background-color: #4d1900;
    color: #ffd5b2;
    font-weight: bold;
    border-radius: 10px;
    padding: 12px 30px;
    transition: 0.3s;
    text-decoration: none;
}
.openvelnord-today-disclaimer-section .btn-openvelnord:hover {
    background-color: #ffefd0;
    color: #4d1900;
}


/* ================================
   GAME SECTION
   ================================ */
.openvelnord-today-play .section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: #4d1900;
    text-shadow: 1px 1px #ffd5b2;
    font-family: 'Exo 2', sans-serif;
}

/* Game card container */
.openvelnord-today-game-card {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden; /* hides overflow and scrollbars */
    box-shadow: 0 8px 20px rgba(77,25,0,0.5);
    aspect-ratio: 16 / 9;
    position: relative;
    border: 2px solid #4d1900;
}

/* Game iframe */
.openvelnord-today-game-card iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 16px;
    overflow: hidden; /* hides any iframe scrollbars */
    scrolling: no;    /* legacy attribute for older browsers */
}

/* ================================
   NEW FEATURES
================================ */
.new-feature-card {
    background: linear-gradient(145deg, rgba(77,25,0,0.7), rgba(77,25,0,0.9));
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.4s, box-shadow 0.4s;
    color: #ffd5b2;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}
.new-feature-card:hover {
    transform: translateY(-15px) rotate(-1deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}
.new-feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ffefd0;
    transition: color 0.3s;
}
.new-feature-card:hover .feature-icon {
    color: #ffd5b2;
}
.new-feature-card .feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffd5b2;
    text-shadow: 1px 1px #4d1900;
}
.new-feature-card .feature-text {
    font-size: 1rem;
    color: #ffefd0;
}


.openvelnord-today-reviews .review-card {
    background: linear-gradient(135deg, rgba(77,25,0,0.85), rgba(77,25,0,0.7));
    border-radius: 20px;
    padding: 30px 20px;
    min-height: 250px; /* Uniform height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    color: #ffefd0;
}

.openvelnord-today-reviews .review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.7);
}

.openvelnord-today-reviews .review-icon {
    font-size: 2.5rem;
    color: #ffd5b2;
    margin-bottom: 15px;
}

.openvelnord-today-reviews .review-text {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.openvelnord-today-reviews .reviewer-name {
    font-weight: 700;
    color: #ffd5b2;
}

/* Ensure consistent spacing in the grid */
.openvelnord-today-reviews .row > [class*="col-"] {
    display: flex;
}
.openvelnord-today-reviews .row > [class*="col-"] .review-card {
    flex: 1;
}

.openvelnord-today-about .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4d1900;
    text-shadow: 1px 1px #ffd5b2;
    margin-bottom: 20px;
    font-family: 'Exo 2', sans-serif;
}

.openvelnord-today-about .section-text {
    font-size: 1.1rem;
    color: #4d1900;
    line-height: 1.7;
}

.openvelnord-today-about .btn-openvelnord {
    font-weight: bold;
    border-radius: 10px;
    padding: 12px 30px;
    transition: 0.3s;
}

.openvelnord-today-about .btn-openvelnord:hover {
    background-color: #ffefd0;
    color: #4d1900;
}

.openvelnord-today-about-img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}


/* CONTACT */
.openvelnord-today-input {
    background-color: #ffd5b2;
    border: 2px solid #4d1900;
    color: #4d1900;
    border-radius: 10px;
    padding: 12px;
    font-family: 'Exo 2', sans-serif;
}
.openvelnord-today-input::placeholder {
    color: #4d1900;
}
.openvelnord-today-contact button.btn-openvelnord {
    width: 100%;
    font-family: 'Exo 2', sans-serif;
}

.openvelnord-today-footer {
    background-color: #ffd5b2; /* light background */
    color: #4d1900;            /* dark text */
    padding: 50px 20px;
    font-family: 'Exo 2', sans-serif;
}

.openvelnord-today-footer a {
    color: #4d1900;  /* dark links */
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.openvelnord-today-footer a:hover {
    color: #000000;  /* hover accent */
    border-bottom: 1px solid #4d1900;
}

.openvelnord-today-footer-links {
    padding: 0;
    margin-bottom: 20px;
}

.openvelnord-today-footer-links li {
    list-style: none;
}

.openvelnord-today-footer-disclaimer {
    background-color: #fff2db; /* slightly lighter than main footer for contrast */
    color: #4d1900;            /* dark text */
    border: 1px solid #4d1900;
    border-radius: 10px;
    padding: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

.openvelnord-today-footer-disclaimer a {
    color: #4d1900;
    text-decoration: underline;
}

.openvelnord-today-footer-disclaimer a:hover {
    color: #000000;
}

.openvelnord-today-footer p.small {
    font-size: 0.85rem;
    margin-top: 15px;
    color: #4d1900;
}



/* SCROLL TOP BUTTON */
.openvelnord-today-scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #4d1900;
    color: #ffd5b2;
    border: none;
    height: 40px;            /* square height */
    width: 40px;             /* square width */
    display: none;
    z-index: 999;
    font-size: 1.5rem;
    border-radius: 10px;
    font-family: 'Exo 2', sans-serif;

    /* Center the arrow */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.openvelnord-today-scroll-top:hover {
    background-color: #ffefd0;
    color: #4d1900;
    transform: translateY(-2px);
}

/* DISCLAIMER POPUP */
.openvelnord-today-disclaimer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(77,25,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    font-family: 'Exo 2', sans-serif;
}
.openvelnord-today-disclaimer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.openvelnord-today-disclaimer-popup {
    background-color: #ffd5b2;
    color: #4d1900;
    max-width: 500px;
    width: 90%;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    font-family: 'Exo 2', sans-serif;
}
.openvelnord-today-disclaimer-popup .popup-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 1px 1px #ffefd0;
}
.openvelnord-today-disclaimer-popup .popup-text {
    font-size: 1rem;
    margin-bottom: 15px;
    font-family: 'Exo 2', sans-serif;
}
.openvelnord-today-disclaimer-popup .popup-actions button {
    border-radius: 10px;
    padding: 10px 25px;
    font-weight: bold;
    transition: 0.3s;
    font-family: 'Exo 2', sans-serif;
}
.btn-openvelnord-outline {
    background: transparent;
    color: #4d1900;
    border: 2px solid #4d1900;
    font-family: 'Exo 2', sans-serif;
}
.btn-openvelnord-outline:hover {
    background-color: #4d1900;
    color: #ffd5b2;
}



/* ==============================
   LEGAL PAGES CSS
   ============================== */

/* Body for legal pages */
.legal-section {
    background-color: #ffd5b2;  /* light background */
    color: #4d1900;             /* dark text for readability */
    font-family: 'Exo 2', sans-serif;
    padding: 80px 20px;
}

/* Container */
.legal-section .container {
    max-width: 850px;
    margin: 0 auto;
    text-align: left;
}

/* Section title */
.legal-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #4d1900;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px #ffefd0;
}

/* Paragraph text */
.legal-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4d1900;
}

/* Highlight important text */
.legal-text strong {
    color: #4d1900;
    font-weight: 700;
}

/* Links in legal pages */
.legal-text a {
    color: #4d1900;
    text-decoration: underline;
}

.legal-text a:hover {
    color: #ffefd0;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .legal-section {
        padding: 60px 15px;
    }
    .legal-title {
        font-size: 2.2rem;
    }
    .legal-text {
        font-size: 1rem;
    }
}
