/* ================= Wildretreat.click Base ================= */
body.w-click {
    background-color: #000725;
    color: #dae9ff;
    font-family: 'Poppins', Arial, Verdana, Tahoma, system-ui, sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    color: #dae9ff;
    font-family: inherit;
}

a.w-click-link {
    color: #ffdeb7;
    text-decoration: none;
}
a.w-click-link:hover {
    color: #66a4ff;
}

button.w-click-btn {
    background-color: #dae9ff;
    color: #000725;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.3s ease;
}
button.w-click-btn:hover {
    background-color: #66a4ff;
}

.w-click-accent {
    color: #dae9ff;
}

.container.w-click {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}



/* ================= Wildretreat.click Base ================= */
body.w-click {
    background-color: #000725;
    color: #dae9ff;
    font-family: 'Poppins', Arial, Verdana, Tahoma, system-ui, sans-serif;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    color: #dae9ff;
    font-family: inherit;
    margin-bottom: 0.75rem;
}

p {
    color: #dae9ff;
}

/* ================= Section Title ================= */
.section-title {
    font-size: 2rem;             /* prominent size */
    font-weight: 700;            /* bold heading */
    color: #ffdeb7;              /* accent color for visibility */
    margin-bottom: 1.5rem;       /* spacing below heading */
    position: relative;          /* for decorative pseudo-elements if needed */
    display: inline-block;       /* shrink to text width for decorations */
    text-transform: uppercase;   /* optional: makes headings stand out */
}

/* Optional underline glow effect */
.section-title::after {
    content: "";
    display: block;
    width: 50%;
    height: 4px;
    background: #66a4ff;
    border-radius: 2px;
    margin: 0.5rem auto 0 auto;
    box-shadow: 0 0 10px rgba(102, 164, 255, 0.6);
}

/* ================= Navbar ================= */
/* Navbar adjustments */
.w-click-navbar {
    background-color: #000725;
    flex-direction: column;
    padding: 1rem 0;
    text-align: center;
}

.w-click-logo {
    height: 80px;
}

/* Navbar links row bottom centered */
.w-click-nav {
    justify-content: center;
    margin-top: 0.5rem;
}

/* Navbar links */
.w-click-nav {
    justify-content: center;
    gap: 2rem; /* increase space between links */
}

/* Navbar links spacing */
.w-click-nav {
    justify-content: center;
    gap: 1.5rem; /* moderate space between links */
}

/* Navbar link styling */
.w-click-nav .nav-link {
    color: #dae9ff;
    font-weight: 500;
    padding: 0.8rem 1.8rem; /* compact height */
    position: relative;
    display: inline-block;
    z-index: 1;
    transition: color 0.3s;
}

/* Car-shaped background for active link */
.w-click-nav .nav-link.active::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;       /* slightly wider than link */
    height: 50%;       /* fits inside the link */
    background-color: #66a4ff;
    border-radius: 40% 40% 20% 20% / 50% 50% 15% 15%; /* smaller arc, car-like */
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Hover effect */
.w-click-nav .nav-link:hover {
    color: #ffdeb7;
}

/* ================= Navbar Toggler ================= */
.w-click-toggler {
    border: none;              /* remove default border */
    background: transparent;    /* transparent background */
    color: #dae9ff;            /* icon color */
    font-size: 1.5rem;         /* slightly larger icon */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navbar Toggler Icon (Font Awesome) */
.w-click-toggler .fa-bars {
    color: #dae9ff;
    transition: color 0.3s;
}

.w-click-toggler:hover .fa-bars {
    color: #ffdeb7; /* hover accent color */
}



/* ================= Hero ================= */
.w-click-hero {
    position: relative;
    text-align: center;
    height: 80vh; /* 90% of viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000725;
    background-image: url('../img/hero-bg.jpg'); /* your hero image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 0 1rem; /* horizontal padding */
}

.w-click-hero-inner {
    max-width: 1200px; /* contain content width */
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.w-click-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #dae9ff;
}

.w-click-hero-title span {
    color: #ffdeb7;
}

.w-click-hero-sub {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #dae9ff;
}

.w-click-hero-cta {
    margin-top: 1rem;
}

/* ================= Buttons ================= */
.w-click-btn {
    background-color: #dae9ff;
    color: #000725;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.w-click-btn:hover {
    background-color: #66a4ff;
}

.w-click-btn-ghost {
    background-color: transparent;
    border: 2px solid #dae9ff;
    color: #dae9ff;
}

.w-click-btn-ghost:hover {
    background-color: #66a4ff;
    color: #000725;
}

/* ================= Cards ================= */
.w-click-card {
    background-color: #000f3a;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* ================= Sections ================= */
section {
    padding: 4rem 1rem;
}

/* ================= Disclaimer Section ================= */
.w-click-disclaimer {
    padding: 5rem 1rem;
}

.w-click-disclaimer .w-click-card {
    background-color: #001040; /* dark card to stand out */
    border-radius: 16px;
    padding: 3rem 2rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(102, 164, 255, 0.4); /* subtle blue glow */
    transition: transform 0.3s, box-shadow 0.3s;
}

.w-click-disclaimer .w-click-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(102, 164, 255, 0.6);
}

.w-click-disclaimer .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffdeb7;
}

.w-click-disclaimer p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #dae9ff;
}

.w-click-disclaimer .w-click-btn-ghost {
    margin-top: 1rem;
    border: 2px solid #dae9ff;
    transition: all 0.3s;
}

.w-click-disclaimer .w-click-btn-ghost:hover {
    background-color: #66a4ff;
    color: #000725;
    border-color: #66a4ff;
}

/* ================= Game ================= */
.w-click-game-frame {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    background-color: #000f3a;
}

.w-click-iframe-wrap iframe {
    width: 100%;
    height: 500px;
    border: none;
	

}

/* ================= Features Section ================= */
.w-click-features {
    background-color: #000725;
    padding: 5rem 1rem;
}

.w-click-features .section-sub {
    font-size: 1.2rem;
    color: #dae9ff;
    margin-bottom: 3rem;
}

.w-click-feature {
    background-color: #001040;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.w-click-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(102, 164, 255, 0.5);
}

.w-click-feature-icon {
    font-size: 2.5rem;
    color: #ffdeb7;
    margin-bottom: 1rem;
    transition: transform 0.3s, color 0.3s;
}

.w-click-feature:hover .w-click-feature-icon {
    transform: scale(1.2);
    color: #66a4ff;
}

.w-click-feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #dae9ff;
    margin-bottom: 0.75rem;
}

.w-click-feature-text {
    font-size: 1rem;
    color: #dae9ff;
    line-height: 1.6;
}

/* Responsive spacing */
@media (max-width: 768px) {
    .w-click-feature {
        margin-bottom: 1.5rem;
    }
}

/* ================= About Section ================= */
.w-click-about {
    background-color: #000725;
    padding: 5rem 1rem;
    color: #dae9ff;
}

.w-click-about-media {
    max-width: 500px;
    margin: 0 auto 2rem auto;
}

.w-click-about-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(102, 164, 255, 0.3);
}

.w-click-about-text {
    max-width: 800px; /* contain text width */
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #dae9ff;
}

.w-click-about .section-sub {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.w-click-btn {
    background-color: #dae9ff;
    color: #000725;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.w-click-btn:hover {
    background-color: #66a4ff;
    color: #000725;
}

/* ================= Reviews Section ================= */
.w-click-reviews {
    background-color: #000725;
    padding: 5rem 1rem;
    color: #dae9ff;
}

.w-click-reviews .section-sub {
    font-size: 1.2rem;
    color: #dae9ff;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.w-click-review {
    background-color: #001040;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 25px rgba(102, 164, 255, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.w-click-review:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(102, 164, 255, 0.5);
}

.w-click-review-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.w-click-avatar {
    width: 40px;
    height: 40px;
    background-color: #66a4ff;
    color: #000725;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.w-click-review-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.w-click-review-text {
    margin: 1rem 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #dae9ff;
}

.w-click-stars {
    font-size: 1rem;
    color: #ffdeb7;
}

/* Responsive 2-column layout */
@media (max-width: 992px) {
    .w-click-review {
        margin-bottom: 1.5rem;
    }
}


/* ================= Footer ================= */
.w-click-footer {
    background-color: #000725;
    color: #dae9ff;
    padding: 4rem 1rem 2rem 1rem; /* improved top, bottom, and sides */
    text-align: center;
}

.w-click-footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
}

.w-click-footer-nav {
    padding: 0;
    margin: 1rem 0 2rem 0;
    list-style: none;
}

.w-click-footer-nav li {
    display: inline-block;
    margin: 0 1rem; /* increased spacing between links */
}

.w-click-footer-link {
    color: #dae9ff;
    font-weight: 500;
    transition: color 0.3s, transform 0.3s;
}

.w-click-footer-link:hover {
    color: #ffdeb7;
    transform: translateY(-2px); /* subtle hover lift */
}

.w-click-footer-disclaimer {
    max-width: 700px;
    margin: 0 auto 1.5rem auto; /* centered disclaimer text */
}

.w-click-footer-disclaimer h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffdeb7;
}

.w-click-footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #dae9ff;
    margin: 0;
}

.w-click-footer-copy {
    font-size: 0.8rem;
    margin-top: 1rem;
    color: #66a4ff;
}

/* ================= Age Popup ================= */
.w-click-age-popup {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.85);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.w-click-age-popup-content {
    background-color: #000f3a;
    color: #dae9ff;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
}

.w-click-age-popup-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.w-click-age-popup-text {
    font-size: 1rem;
    line-height: 1.5;
}

/* ================= Scroll to Top ================= */
.w-click-scrolltop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #dae9ff;
    color: #000725;
    padding: 0.75rem;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: background-color 0.3s;
}

.w-click-scrolltop:hover {
    background-color: #66a4ff;
}


/* ================= Contact Section ================= */
.w-click-contact {
    background-color: #000725;
    color: #dae9ff;
    padding: 5rem 1rem;
}

.w-click-contact .form-label {
    font-weight: 500;
    color: #dae9ff;
}

.w-click-contact .form-control {
    background-color: #001040;
    color: #dae9ff;
    border: 1px solid #66a4ff;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s;
}

.w-click-contact .form-control:focus {
    border-color: #ffdeb7;
    box-shadow: 0 0 10px rgba(255, 222, 183, 0.5);
    outline: none;
}

.w-click-btn-submit {
    background-color: #dae9ff;
    color: #000725;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.w-click-btn-submit:hover {
    background-color: #66a4ff;
    color: #000725;
    transform: translateY(-2px);
}



/* ================= Legal Pages ================= */
.w-click-legal {
    background-color: #000725;
    color: #dae9ff;
    padding: 5rem 1rem;
}

.w-click-legal .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #dae9ff;
}

.w-click-legal .section-sub {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #ffdeb7;
}

.w-click-legal-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #001040;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(102, 164, 255, 0.2);
    line-height: 1.8;
}

.w-click-legal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #ffdeb7;
}

.w-click-legal-content p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: #dae9ff;
}

/* Links inside legal pages */
.w-click-legal-content a {
    color: #66a4ff;
    text-decoration: underline;
    transition: color 0.3s;
}

.w-click-legal-content a:hover {
    color: #ffdeb7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .w-click-legal .section-title {
        font-size: 2rem;
    }

    .w-click-legal .section-sub {
        font-size: 1rem;
    }

    .w-click-legal-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .w-click-legal .section-title {
        font-size: 1.75rem;
    }

    .w-click-legal-content h2 {
        font-size: 1.25rem;
    }
}
