@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Poppins:wght@300;400;500;600&display=swap');
@import './variables.css';

/* BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--c-black);
    color: var(--c-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    /* Security: Reduce easy text selection */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

/* Allow text selection only in specific inputs */
input, textarea {
    user-select: auto;
    -webkit-user-select: auto;
    -moz-user-select: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--c-gold);
    font-weight: 700;
}

a {
    color: var(--c-white);
    text-decoration: none;
    transition: var(--t-fast);
}

a:hover {
    color: var(--c-gold);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

/* UTILITIES */
.gold-text { color: var(--c-gold); }
.text-center { text-align: center; }
.font-montserrat { font-family: var(--font-subheading); }
.glass-panel {
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-subheading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--t-normal);
    font-size: 14px;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--c-gold-dark), var(--c-gold), var(--c-gold-light));
    color: var(--c-black);
    position: relative;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--c-gold-light), var(--c-gold), var(--c-gold-dark));
    z-index: -1;
    transition: opacity var(--t-normal);
    opacity: 0;
    border-radius: 4px;
}

.btn-primary:hover::before {
    opacity: 1;
}
.btn-primary:hover {
    color: var(--c-black);
    box-shadow: 0 0 20px var(--c-gold-glow);
}

.btn-outline {
    background: transparent;
    color: var(--c-white);
    border: 1px solid var(--c-gold);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 15px var(--c-gold-glow);
    color: var(--c-gold);
}

/* HEADER */
header.site-header {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--c-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-shadow: 0 0 10px var(--c-gold-glow);
}
.logo-icon::before {
    content: '👑';
    position: absolute;
    top: -15px;
    font-size: 16px;
}

.logo-text {
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--c-white);
    line-height: 1.2;
}

nav.main-user-menu ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav.main-user-menu a {
    font-family: var(--font-subheading);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--c-gray-light);
    position: relative;
    padding: 5px 0;
}

nav.main-user-menu a:hover, nav.main-user-menu a.active {
    color: var(--c-gold);
}

nav.main-user-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--c-gold);
    transition: var(--t-fast);
}

nav.main-user-menu a:hover::after, nav.main-user-menu a.active::after {
    width: 100%;
    box-shadow: 0 0 5px var(--c-gold);
}

#mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--c-gold);
    font-size: 24px;
    cursor: pointer;
}

/* FOOTER */
footer.site-footer {
    background-color: var(--c-dark);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 60px 0 20px;
    margin-top: 50px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-wrapper {
    margin-bottom: 20px;
}
.footer-brand p {
    color: var(--c-gray-light);
    font-size: 14px;
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-subheading);
    color: var(--c-gold);
    margin-bottom: 20px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.footer-links a, .footer-contact p {
    color: var(--c-gray-light);
    font-size: 14px;
}

.footer-contact .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    margin-top: 15px;
    font-family: var(--font-subheading);
    font-weight: 600;
}
.footer-contact .whatsapp-btn:hover {
    background: #128C7E;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid var(--c-gray);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.footer-legal-links a {
    color: var(--c-gray-light);
    font-size: 12px;
}
.copyright {
    color: var(--c-gray-light);
    font-size: 12px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    nav.main-user-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--c-dark);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid var(--c-gold);
    }
    nav.main-user-menu.active {
        display: flex;
    }
    #mobile-menu-btn {
        display: block;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* OVERLAY PROTECT */
.protect-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}
img {
    pointer-events: none;
}

/* PARTICLES CANVAS */
#particles-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -2;
    pointer-events: none;
}
