/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #f97316;
    --orange-dark: #ea580c;
    --black: #000000;
    --gray-dark: #1a1a1a;
    --gray: #f3f4f6;
    --gray-light: #e5e7eb;
    --white: #ffffff;
    --text: #1f2937;
    --text-light: #6b7280;
	--red: #FF0000;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 600;
}

.logo i {
    color: var(--orange);
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--orange);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    height: 100vh;
    background: url(".././logo/ADR-1.JPG") center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--orange);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    max-width: 800px;
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #d1d5db;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--orange);
    color: var(--orange);
}

.btn-outline:hover {
    background: rgba(249, 115, 22, 0.1);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.bg-gray {
    background: var(--gray);
}

.bg-black {
    background: var(--black);
}

.bg-gradient {
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
}



.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.bg-black .section-header h2,
.bg-black .section-subtitle {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* Grid */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}


.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.grid-5 {
    grid-template-columns: repeat(5, minmax(150px, 1fr));
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image-2 {
    height: 100px;
    overflow: hidden;
}




.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.card-image2 img {
    width: 50%;
    height: 50%;
    object-fit: cover;
    transition: transform 0.3s;
}
.responsive {
  width: 100%;
  height: auto;
}

.card:hover .card-image img {
    transform: scale(1,1);
	
}

.card-content {
    padding: 1.5rem;
	
}
 
 .card-content-2 {
    padding: 1.5rem;
	text-align: center;
}
 


.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-light);
}

.card-header h3 {
    font-size: 1.5rem;
}

.bg-orange {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}



/* Badges */
.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    background: var(--gray);
    color: var(--text);
}

.badge-primary {
    background: var(--orange);
    color: var(--white);
}

.badge-secondary {
    background: var(--gray-dark);
    color: var(--white);
}

.badge-outline {
    border: 1px solid var(--gray-light);
    background: transparent;
}

.date {
    font-size: 0.875rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.date-orange {
    color: var(--orange);
}

.link-orange {
    color: var(--orange);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.link-orange:hover {
    color: var(--orange-dark);
}

/* Event Info */
.event-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-light);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.info-item i {
    color: var(--orange);
}

/* Stats */
.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 3rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.stat-icon-blue {
    color: #3b82f6;
}

.stat-icon-green {
    color: #10b981;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
}

.mb-3 {
    margin-bottom: 3rem;
}

/* Table */
.table-responsive {
    overflow-x: auto;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
}

.results-table th,
.results-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-light);
}

.results-table th {
    background: var(--gray);
    font-weight: 600;
}

.results-table .medal {
    font-size: 1.5rem;
    text-align: center;
}

/* Galerie */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    height: 320px;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.875rem;
    color: #d1d5db;
}

/* Team */
.team-card {
    background: #1a1a1a;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(249, 115, 22, 0.2);
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

.team-image {
    height: 256px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-content {
    padding: 1.5rem;
    text-align: center;
}

.team-content h3 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.team-role {
    color: var(--orange);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.team-role2 {
    color: var(--grey-dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}


.team-specialty {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.team-contact {
    color: var(--orange);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.team-contact:hover {
    color: var(--orange-dark);
}

.text-white {
    color: var(--white);
}

/* Forms */
.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-card {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-light);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--orange);
}

.checkbox-group {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    background: #fff5f0;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #fed7aa;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
}

.checkbox-group small {
    display: block;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.pricing-info {
    background: var(--gray);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.pricing-info h4 {
    margin-bottom: 1rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.price {
    color: var(--orange);
    font-weight: 600;
}

.pricing-info small {
    display: block;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--black);
    color: #9ca3af;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--orange);
    font-size: 2rem;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--orange);
}

.footer-contact i {
    margin-right: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}



.social-link {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s;
}

.social-link:hover {
    background: var(--orange);
}

.hours p {
    font-size: 0.875rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.modal-caption {
    padding: 1.5rem;
    text-align: center;
    color: var(--white);
}

.modal-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-caption p {
    color: #d1d5db;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 2rem;
    color: var(--white);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--orange);
}

  .login-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
           /* background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);*/
            padding: 2rem;
        }
        
        .login-card {
            background: white;
            padding: 3rem;
            border-radius: 1rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            max-width: 400px;
            width: 100%;
        }
        
        .login-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .login-logo {
            width: 80px;
            height: 80px;
            background: #f97316;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 2rem;
            color: white;
        }
        
        .login-header h1 {
            font-size: 1.75rem;
            margin-bottom: 0.5rem;
            color: #1a1a1a;
        }
        
        .login-header p {
            color: #6b7280;
        }
        
        .alert-error {
            background: #fee2e2;
            color: #991b1b;
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            margin-bottom: 1.5rem;
            border: 1px solid #fecaca;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #1a1a1a;
        }
        
        .form-group input {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #d1d5db;
            border-radius: 0.5rem;
            font-size: 1rem;
        }
        
        .form-group input:focus {
            outline: none;
            border-color: #f97316;
            box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
        }
        
        .btn-login {
            width: 100%;
            padding: 0.875rem;
            background: #f97316;
            color: white;
            border: none;
            border-radius: 0.5rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn-login:hover {
            background: #ea580c;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
        }
        
        .back-link {
            display: block;
            text-align: center;
            margin-top: 1.5rem;
            color: #6b7280;
            text-decoration: none;
        }
        
        .back-link:hover {
            color: #f97316;
        }
        
        .default-credentials {
            background: #f3f4f6;
            padding: 1rem;
            border-radius: 0.5rem;
            margin-top: 1.5rem;
            font-size: 0.875rem;
            color: #6b7280;
        }
        
        .default-credentials strong {
            color: #1a1a1a;
        }



/* Responsive */
@media (max-width: 668px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .grid-3,
    .grid-4,
    .grid-5	{
        grid-template-columns: 1fr;
    }
    
    .table-responsive {
        overflow-x: scroll;
    }
    
    .results-table {
        min-width: 600px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Success Message */
.success-message {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon i {
    font-size: 3rem;
    color: var(--white);
}

.success-message h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--text-light);
    margin-bottom: 2rem;
}
