/* ============================================================
   VENEVMEDIA – main.css
   Shared styles used across all pages
   ============================================================ */

/* ── RESET & BASE ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: 1px;
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ── LAYOUT ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── HEADER ── */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.9);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* ── LOGO ── */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo:hover { transform: scale(1.05); }

/* ── NAV LINKS ── */
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li { margin-left: 30px; }

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #fff;
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* ── MOBILE MENU BUTTON ── */
.mobile-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    padding: 0;
    background: none;
    border: none;
}

.mobile-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ── BUTTONS ── */
.btn-solid {
    display: inline-block;
    padding: 14px 36px;
    background-color: #fff;
    border: 2px solid #fff;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-solid:hover {
    background-color: transparent;
    color: #fff;
}

.btn-dark {
    display: inline-block;
    padding: 14px 36px;
    background-color: #000;
    border: 2px solid #000;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background-color: #222;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #fff;
    color: #000;
}

.btn-outline {
    display: inline-block;
    padding: 14px 36px;
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    margin-left: 16px;
}

.btn-outline:hover {
    background-color: #fff;
    color: #000;
}

/* ── PAGE HERO (shared variant – simple centered) ── */
.page-hero {
    padding: 160px 0 80px;
    background-color: #000;
    text-align: center;
}

.page-hero h1 {
    font-size: 54px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* ── FAQ ACCORDION (shared details/summary pattern) ── */
details.faq-item {
    border-bottom: 1px solid #222;
}

details.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.3s ease;
    user-select: none;
}

details.faq-item summary::-webkit-details-marker { display: none; }

details.faq-item summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

details.faq-item[open] summary::after {
    transform: rotate(45deg);
}

details.faq-item summary:hover { color: #ccc; }

.faq-answer {
    padding: 0 0 22px;
    color: #aaa;
    font-size: 15px;
    line-height: 1.8;
}

/* ── FOOTER ── */
footer {
    background-color: #111;
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img { height: 40px; margin-right: 10px; }

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 36px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover { color: #fff; }

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #fff;
    color: #000;
}

.copyright {
    font-size: 14px;
    color: #999;
    display: inline-block;
    margin: 0 10px;
}

a.copyright {
    text-decoration: none;
    transition: color 0.3s;
}

a.copyright:hover { color: #fff; }

/* ── WHATSAPP FLOATING BUTTON ── */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i { font-size: 22px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeRight {
    from { opacity: 0; transform: translateX(-50px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(50px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ── RESPONSIVE – Mobile Nav ── */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
    }

    .nav-links.active { left: 0; }
    .nav-links li { margin: 20px 0; }
    .mobile-menu { display: flex; }

    .page-hero { padding: 120px 0 50px; }
    .page-hero h1 { font-size: 30px; }
    .page-hero p { font-size: 15px; }
}

@media (max-width: 480px) {
    .page-hero h1 { font-size: 26px; }
    .btn-solid { padding: 12px 22px; font-size: 14px; }
    .whatsapp-float span { display: none; }
    .whatsapp-float { padding: 14px; border-radius: 50%; bottom: 20px; right: 20px; }
}
