/* 
 * Î Î‘ÎŸÎ¡ Custom Styles
 * Î ÏÏŒÏƒÎ¸ÎµÏ„Î± styles Î³Î¹Î± Ï„Î¿ website
 */

/* Custom Fonts (Ï€ÏÎ¿Î±Î¹ÏÎµÏ„Î¹ÎºÏŒ) */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700;900&display=swap');

/* Utility Classes */
.text-yellow {
    color: #FFD700 !important;
}

.bg-black {
    background-color: #000000 !important;
}

.bg-yellow {
    background-color: #FFD700 !important;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.pt-1 { padding-top: 10px; }
.pt-2 { padding-top: 20px; }
.pt-3 { padding-top: 30px; }
.pb-1 { padding-bottom: 10px; }
.pb-2 { padding-bottom: 20px; }
.pb-3 { padding-bottom: 30px; }

/* Buttons */
.btn-paor {
    background: #FFD700;
    color: #000;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-paor:hover {
    background: #FFA500;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.btn-paor-outline {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-paor-outline:hover {
    background: #FFD700;
    color: #000;
}

/* Cards Î¼Îµ Î Î‘ÎŸÎ¡ styling */
.paor-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #FFD700;
    transition: all 0.3s;
}

.paor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* Dividers */
.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    margin: 40px 0;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 5px 15px;
    background: #FFD700;
    color: #000;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Loading Spinner */
.spinner {
    border: 4px solid #2a2a2a;
    border-top: 4px solid #FFD700;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid;
}

.alert-success {
    background: rgba(46, 204, 113, 0.1);
    border-color: #2ecc71;
    color: #2ecc71;
}

.alert-warning {
    background: rgba(241, 196, 15, 0.1);
    border-color: #f1c40f;
    color: #f1c40f;
}

.alert-error {
    background: rgba(231, 76, 60, 0.1);
    border-color: #e74c3c;
    color: #e74c3c;
}

.alert-info {
    background: rgba(52, 152, 219, 0.1);
    border-color: #3498db;
    color: #3498db;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    border: 3px solid #FFD700;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: #FFD700;
    color: #000;
}

::-moz-selection {
    background: #FFD700;
    color: #000;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFA500;
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    nav, footer, .no-print {
        display: none !important;
    }
    
    .paor-card {
        border: 1px solid #000;
        page-break-inside: avoid;
    }
}

/* Responsive Helpers */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .hide-desktop {
        display: none !important;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease;
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease;
}

.animate-pulse {
    animation: pulse 2s ease infinite;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus Styles */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid #FFD700;
    outline-offset: 2px;
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
}

/* Table Styles */
.table-paor {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.table-paor th,
.table-paor td {
    padding: 12px;
    border: 1px solid #2a2a2a;
    text-align: left;
}

.table-paor th {
    background: #FFD700;
    color: #000;
    font-weight: 700;
}

.table-paor tr:nth-child(even) {
    background: #1a1a1a;
}

.table-paor tr:hover {
    background: #2a2a2a;
}

/* Form Styles */
.form-paor {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    background: #2a2a2a;
    border: 2px solid #3a3a3a;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: #FFD700;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    color: #666;
}

/* Tags */
.tag {
    display: inline-block;
    padding: 4px 12px;
    background: #2a2a2a;
    border: 1px solid #FFD700;
    border-radius: 15px;
    color: #FFD700;
    font-size: 0.85rem;
    margin: 5px;
}

/* Tooltip */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: #FFD700;
    color: #000;
    text-align: center;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}