/*
 * Territoriopadel — Brand Override
 * Remaps Adelux theme colors to TP corporate palette
 * --primary:         #272727  → keep (dark text)
 * --accent-color-2:  #C6EF2E  → #C8E410 (TP lima)
 * --accent-color:    #000000  → #011014 (TP negro)
 */

:root {
    /* Override Adelux accent with TP brand colors */
    --accent-color-2:  #C8E410;   /* TP Verde lima (CTA buttons, highlights) */
    --accent-color-6:  #E8FA7A;   /* TP Lima claro */
    --accent-color:    #011014;   /* TP Negro */
    --primary:         #31295D;   /* TP Morado — headings */

    /* Typography — keep Montserrat + Lato from theme */
    --font-family-1: "Montserrat", sans-serif;
    --font-family-2: "Lato", sans-serif;
}

/* Topbar/navbar background → TP morado */
.navbar-container {
    background: #31295D !important;
}
.nav-link {
    color: rgba(235,242,241,.85) !important;
}
.nav-link:hover, .nav-link.active {
    color: #C8E410 !important;
}
.dropdown-menu {
    background: #31295D !important;
    border: 1px solid rgba(200,228,16,.2) !important;
}
.dropdown-item {
    color: rgba(235,242,241,.85) !important;
}
.dropdown-item:hover {
    background: rgba(200,228,16,.15) !important;
    color: #C8E410 !important;
}

/* CTA button → TP lima */
.btn-accent {
    background: #C8E410 !important;
    color: #011014 !important;
    font-weight: 700 !important;
}
.btn-accent:hover {
    background: #b5d00e !important;
    color: #011014 !important;
}

/* Section backgrounds */
.bg-accent-color {
    background: #31295D !important;
}
.bg-accent-color .secondary-accent,
.bg-accent-color h1, .bg-accent-color h2,
.bg-accent-color h3, .bg-accent-color h4,
.bg-accent-color p {
    color: #EBF2F1 !important;
}

/* Headings use TP morado */
h1, h2 { color: #31295D; }
h3, h4, h5 { color: #31295D; }

/* Accent text */
.accent-color-2, .text-accent { color: #C8E410 !important; }
.primary-accent  { color: #31295D !important; }

/* Hero section */
.hero-container {
    background: linear-gradient(135deg, #31295D 0%, #1e1b42 100%);
}

/* Cards */
.card { border-radius: 12px; }
.card-booking-form {
    border: 1px solid rgba(49,41,93,.12);
    box-shadow: 0 4px 24px rgba(49,41,93,.1);
}

/* Icon circles → TP morado */
.icon-circle { background: #31295D !important; color: #C8E410 !important; }
.contact-icon { background: #C8E410 !important; color: #011014 !important; }
.social-icon {
    background: rgba(200,228,16,.15) !important;
    color: #C8E410 !important;
    border: 1px solid rgba(200,228,16,.3) !important;
}
.social-icon:hover {
    background: #C8E410 !important;
    color: #011014 !important;
}

/* Form inputs */
.form input, .form select, .form textarea {
    border: 1.5px solid #e0dff0 !important;
    border-radius: 8px !important;
}
.form input:focus, .form select:focus {
    border-color: #31295D !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(49,41,93,.1) !important;
}

/* Footer */
footer .bg-accent-color { background: #1e1b42 !important; }

/* Booking highlight */
.booking-form-detail { background: #31295D !important; }
.booking-form-detail h3, .booking-form-detail h4,
.booking-form-detail p, .booking-form-detail li { color: #EBF2F1 !important; }
.booking-form-detail .btn-accent { background: #C8E410 !important; color: #011014 !important; }
