/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --gold-dark: #b8972e;
    --gold: rgb(230, 186, 106);
    --black: #000000;
    --dark-bg: #1a1a1a;
    --dark-gray: #2d2d2d;
    --light-gray: #f8f9fa;
    --text-light: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.6);
    --border-color: rgba(230, 186, 106, 0.2);
}

/* Base Styles */
body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}

/* Header Styles */
#header {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: relative;
    z-index: 1000;
}

.register-header-container {
    padding: 0.5rem 1.5rem;
}

.brand {
    color: var(--gold);
    transition: color 0.3s ease;
}

.brand:hover {
    color: var(--gold-dark);
}

.brand-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.logo-img {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

/* Navigation */
.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu:hover {
    background: rgba(230, 186, 106, 0.1);
}

/* Main Container */
.register-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Tab Navigation */
.nav-tabs {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
}

.nav-item {
    flex: 1;
    min-width: 200px;
}

.nav-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    border-bottom: none;
    color: var(--text-muted);
    padding: 1rem 1.5rem;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.nav-link:hover {
    background: rgba(230, 186, 106, 0.1);
    color: var(--gold);
    border-color: var(--border-color);
}

.nav-link.active {
    background: var(--dark-gray);
    color: var(--gold);
    border-color: var(--border-color) var(--border-color) var(--dark-gray);
    position: relative;
}

.nav-link.active::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 3px;
    background: var(--gold);
}

/* Form Container */
.form-container {
    background: linear-gradient(135deg, var(--dark-gray) 0%, rgba(45, 45, 45, 0.95) 100%);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-container h2 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1rem;
}

.form-container .text-center {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Form Elements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--gold);
    color: var(--text-light);
    box-shadow: 0 0 0 0.25rem rgba(230, 186, 106, 0.25);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* Radio Buttons & Checkboxes */
.form-check {
    margin-bottom: 0.5rem;
}

.form-check-input {
    background-color: transparent;
    border: 1px solid var(--border-color);
}

.form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}

.form-check-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.25rem rgba(230, 186, 106, 0.25);
}

.form-check-label {
    color: var(--text-light);
    cursor: pointer;
}

.form-check-inline {
    margin-right: 1.5rem;
}

/* Badge */
.badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    margin-left: 0.5rem;
}

/* Validation */
.validation-summary {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: none;
}

.validation-summary h5 {
    color: #dc3545;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.validation-summary ul {
    margin: 0;
    padding-left: 1.5rem;
    color: rgba(220, 53, 69, 0.9);
}

.text-danger {
    color: #dc3545 !important;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    color: var(--black);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 151, 46, 0.3);
}

.btn-gold:active {
    transform: translateY(0);
}

/* Success Messages */
.alert-success {
    background: rgba(25, 135, 84, 0.1);
    border: 1px solid rgba(25, 135, 84, 0.3);
    color: var(--text-light);
    border-radius: 8px;
}

.alert-success h4 {
    color: #198754;
}

/* Tab Content */
.tab-content {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
body.menu-open {
    overflow: hidden;
}
/* Responsive Design */
@media (max-width: 992px) {
    .register-container {
        padding: 1.5rem;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}
@media (max-width: 768px) {
    /* Header */
    .register-header-container {
        padding: 0.5rem 1rem;
    }
    
    .logo-img {
        height: 40px;
        width: 40px;
    }
    
    .brand-title {
        font-size: 1.25rem;
    }
    
    .brand-tagline {
        font-size: 0.75rem;
    }
    
    /* Mobile Menu - FIXED VERSION */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: var(--dark-gray);
        flex-direction: column;
        padding: 5rem 2rem;
        gap: 1rem;
        transition: right 0.3s ease;
        z-index: 1001;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        margin: 0;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    /* Overlay when menu is open */
    .nav-links::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: -1;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    
    .nav-links.active::before {
        opacity: 1;
        pointer-events: all;
    }
    .nav-links li{
        width: 100%;
    }
      /* Mobile menu button */
    .mobile-menu {
        display: flex !important; /* Force display */
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 1px solid var(--border-color);
        color: var(--gold);
        padding: 0.5rem 1rem;
        border-radius: 5px;
        font-size: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 44px;
        height: 44px;
        z-index: 1002;
    }
    
    .mobile-menu:hover {
        background: rgba(230, 186, 106, 0.1);
    }
    
    /* Tabs */
    .nav-item {
        flex: 0 0 100%;
        min-width: auto;
    }
    
    .nav-link {
        justify-content: flex-start;
        padding: 0.75rem 1rem;
    }
    
    /* Form */
    .form-container {
        padding: 1.5rem;
    }
    
    .btn-gold {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }
    
    /* Row spacing */
    .row.g-4 {
        --bs-gutter-y: 1rem;
    }
}
@media (max-width: 576px) {
    .register-container {
        padding: 1rem;
    }
    
    .form-container {
        padding: 1.25rem;
    }
    
    .form-container h2 {
        font-size: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .btn-gold {
        padding: 0.625rem 1rem;
        font-size: 0.9rem;
    }
    
    .form-control {
        padding: 0.625rem 0.875rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .brand-title {
        font-size: 1.1rem;
    }
    
    .form-container h2 {
        font-size: 1.3rem;
    }
    
    .btn-gold {
        font-size: 0.85rem;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .form-container {
        border: 1px solid #ddd;
        box-shadow: none;
    }
    
    .btn-gold,
    .mobile-menu {
        display: none;
    }
}

/* Utility Classes */
.d-none {
    display: none !important;
}

.d-flex {
    display: flex !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.gap-3 {
    gap: 1rem !important;
}

.w-100 {
    width: 100% !important;
}

.text-decoration-none {
    text-decoration: none !important;
}

.text-center {
    text-align: center !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

/* Footer Styles */
.footer-bottom {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, var(--dark-bg) 100%);
    padding-top: 2rem;
    margin-top: 3rem;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--gold) 20%, 
        var(--gold) 80%, 
        transparent 100%);
    opacity: 0.3;
}

.footer-bottom p {
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.text-gold {
    color: var(--gold) !important;
    transition: color 0.3s ease;
    position: relative;
}

.text-gold:hover {
    color: var(--gold-dark) !important;
}

.text-gold::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.text-gold:hover::after {
    width: 100%;
}

.footer-bottom .bi-heart-fill {
    animation: heartbeat 1.5s ease-in-out infinite;
    margin: 0 3px;
    position: relative;
    top: -1px;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Separator styling */
.footer-bottom span.mx-3 {
    color: var(--gold);
    opacity: 0.5;
    font-weight: 300;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-bottom {
        padding-top: 1.5rem;
        margin-top: 2rem;
        padding-bottom: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
        line-height: 1.5;
    }
    
    .footer-bottom .mx-3 {
        margin: 0 0.75rem !important;
    }
    
    .footer-bottom::before {
        left: 5%;
        right: 5%;
    }
}

@media (max-width: 576px) {
    .footer-bottom {
        margin-top: 1.5rem;
        padding-top: 1.25rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .footer-bottom .mx-3 {
        display: none; /* Hide separator on very small screens */
    }
    
    .footer-bottom span:last-child {
        margin-top: 0.25rem;
        display: block;
    }
}

/* Optional: Add a subtle pattern overlay */
.footer-bottom {
    position: relative;
    overflow: hidden;
}

.footer-bottom::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(230, 186, 106, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(230, 186, 106, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Add smooth scroll effect for the whole page */
html {
    scroll-behavior: smooth;
}

/* Optional: Back to top button for footer area */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gold);
    color: var(--black);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    border: 2px solid var(--gold-dark);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(184, 151, 46, 0.3);
}