:root {
--primary-dark-blue: #002a55;
--secondary-dark-blue: #003a75;
--accent-red: #e74c3c;
--accent-yellow: #f39c12;
--accent-green: #27ae60;
--accent-purple: #9b59b6;
--accent-orange: #e67e22;
--light-bg: #f8f9fa;
--dark-text: #2c3e50;
--light-text: #ffffff;
--border-radius: 10px;
--shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
--shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
--transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
--gradient-primary: linear-gradient(135deg, var(--primary-dark-blue), var(--secondary-dark-blue));
--text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
background: linear-gradient(135deg, #e8f4ff, #f5f7fa);
color: var(--dark-text);
line-height: 1.6;
min-height: 100vh;
display: flex;
flex-direction: column;
font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
overflow-x: hidden;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
flex: 1;
position: relative;
z-index: 1;
}
/* Header styles */
.header {
background: var(--gradient-primary);
color: var(--light-text);
padding: 15px 0;
text-align: center;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
transition: box-shadow 0.3s ease;
}
.header.scrolled {
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.logo-container {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
margin-bottom: 15px;
flex-wrap: wrap;
}
.logo-left {
max-width: 120px;
flex: 0 0 auto;
}
.logo-img {
width: 100%;
height: auto;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
border: 2px solid rgba(255,255,255,0.3);
transition: var(--transition);
object-fit: contain;
}
.logo-img:hover {
transform: scale(1.05);
box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.logo-right {
text-align: left;
flex: 1;
min-width: 300px;
}
.official-name {
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 5px;
letter-spacing: 0.5px;
font-family: 'Montserrat', sans-serif;
}
.commission-name {
font-size: 1.5rem;
font-weight: 700;
color: var(--accent-yellow);
text-shadow: var(--text-shadow);
font-family: 'Montserrat', sans-serif;
}
/* Mobile menu button */
.menu-toggle {
display: none;
background: none;
border: none;
color: var(--light-text);
font-size: 1.8rem;
cursor: pointer;
padding: 10px;
z-index: 1001;
position: fixed;
right: 20px;
top: 15px;
transition: var(--transition);
}
.menu-toggle:hover {
color: var(--accent-yellow);
}
/* Mobile menu */
.mobile-menu {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
background: var(--gradient-primary);
padding: 15px;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
z-index: 999;
}
.mobile-nav ul {
list-style: none;
padding: 0;
margin: 0;
}
.mobile-nav ul li {
margin: 8px 0;
}
.mobile-nav ul li a {
color: var(--light-text);
text-decoration: none;
font-size: 1.2rem;
display: block;
padding: 10px 15px;
border-radius: 5px;
transition: var(--transition);
font-weight: 500;
text-align: center;
}
.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
background: rgba(255,255,255,0.2);
color: var(--accent-yellow);
transform: translateX(5px);
}
/* Navigation styles */
.main-nav ul {
display: flex;
justify-content: center;
list-style: none;
gap: 5px;
flex-wrap: wrap;
margin-top: 10px;
}
.main-nav ul li {
margin: 5px;
}
.nav-link {
display: block;
padding: 10px 15px;
color: var(--light-text);
text-decoration: none;
font-weight: 500;
border-radius: 8px;
transition: var(--transition);
position: relative;
overflow: hidden;
font-size: 1rem;
text-align: center;
}
.nav-link::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: rgba(255,255,255,0.2);
z-index: -1;
transition: var(--transition);
}
.nav-link:hover::before,
.nav-link.active::before {
left: 0;
}
.nav-link:hover,
.nav-link.active {
color: var(--accent-yellow);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
/* Content styles */
.content {
margin: 30px 0;
flex: 1;
z-index: 2;
position: relative;
}
.page-title {
font-size: 2.2rem;
color: var(--primary-dark-blue);
text-align: center;
margin: 20px 0;
position: relative;
padding-bottom: 15px;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
}
.page-title::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: var(--accent-yellow);
border-radius: 2px;
}
.section-title {
font-size: 1.8rem;
color: var(--primary-dark-blue);
margin: 30px 0 20px;
padding-bottom: 10px;
border-bottom: 3px solid var(--accent-yellow);
position: relative;
font-family: 'Montserrat', sans-serif;
}
/* Hero section with motorcycle theme */
.hero-section {
text-align: center;
padding: 60px 20px;
margin: 30px 0;
border-radius: var(--border-radius);
color: var(--light-text);
position: relative;
overflow: hidden;
box-shadow: var(--shadow);
min-height: 300px;
display: flex;
align-items: center;
justify-content: center;
}
.hero-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
linear-gradient(rgba(0, 42, 85, 0.85), rgba(0, 42, 85, 0.85)),
url('images/tracks-bg.jpg') center/cover no-repeat;
z-index: 0;
}
.hero-overlay {
background: rgba(0, 42, 85, 0.85);
padding: 40px;
border-radius: var(--border-radius);
max-width: 800px;
margin: 0 auto;
position: relative;
z-index: 1;
border: 2px solid rgba(243, 156, 18, 0.5);
box-shadow: 0 0 30px rgba(243, 156, 18, 0.3);
}
.hero-title {
font-size: 2.8rem;
margin-bottom: 20px;
text-shadow: var(--text-shadow);
font-family: 'Montserrat', sans-serif;
font-weight: 700;
background: linear-gradient(to right, #fff, var(--accent-yellow));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero-subtitle {
font-size: 1.4rem;
margin-bottom: 30px;
opacity: 0.9;
font-weight: 300;
}
.hero-btn {
display: inline-block;
background: var(--accent-yellow);
color: var(--primary-dark-blue);
padding: 12px 30px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: var(--transition);
border: 2px solid var(--accent-yellow);
}
.hero-btn:hover {
background: transparent;
color: var(--accent-yellow);
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}
/* Quick links cards with motorcycle icons */
.quick-links {
margin: 40px 0;
}
.cards-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
margin-top: 20px;
}
.card {
background: var(--light-text);
border-radius: var(--border-radius);
padding: 30px;
text-align: center;
box-shadow: var(--shadow);
transition: var(--transition);
position: relative;
overflow: hidden;
border: 2px solid transparent;
}
.card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(0,0,0,0.1), rgba(0,0,0,0));
z-index: 1;
opacity: 0;
transition: var(--transition);
}
.card:hover::before {
opacity: 1;
}
.card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.card-icon {
font-size: 3.5rem;
margin-bottom: 15px;
color: var(--primary-dark-blue);
transition: var(--transition);
}
.card-icon.motorcycle::before {
content: '🏍️';
font-size: 3.5rem;
}
.card-icon.calendar::before {
content: '🏁';
font-size: 3.5rem;
}
.card-icon.documents::before {
content: '📋';
font-size: 3.5rem;
}
.card-icon.structure::before {
content: '👥';
font-size: 3.5rem;
}
.card:hover .card-icon {
transform: scale(1.1) rotate(5deg);
color: var(--accent-yellow);
}
.card-title {
font-size: 1.4rem;
margin-bottom: 12px;
color: var(--primary-dark-blue);
font-family: 'Montserrat', sans-serif;
font-weight: 600;
}
.card-description {
color: var(--dark-text);
margin-bottom: 20px;
min-height: 60px;
line-height: 1.6;
}
.card-link {
display: inline-block;
color: var(--light-text);
background: var(--primary-dark-blue);
padding: 8px 16px;
border-radius: 6px;
text-decoration: none;
font-weight: 500;
transition: var(--transition);
position: relative;
z-index: 2;
}
.card-link:hover {
background: var(--secondary-dark-blue);
transform: translateX(5px);
}
/* News section */
.news-section {
margin: 40px 0;
}
.news-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
margin-top: 20px;
}
.news-card {
background: var(--light-text);
border-radius: 12px;
padding: 25px;
box-shadow: var(--shadow);
transition: var(--transition);
border-left: 4px solid var(--primary-dark-blue);
position: relative;
overflow: hidden;
}
.news-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
linear-gradient(135deg, rgba(0,42,85,0.05), transparent),
url('images/cones-pattern.png') center/cover no-repeat;
z-index: 0;
opacity: 0;
transition: var(--transition);
}
.news-card:hover::before {
opacity: 0.2;
}
.news-card:hover {
transform: translateX(5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.news-date {
color: var(--accent-red);
font-weight: 600;
margin-bottom: 10px;
font-size: 0.95rem;
display: block;
background: rgba(231, 76, 60, 0.1);
padding: 3px 8px;
border-radius: 12px;
display: inline-block;
}
.news-title {
font-size: 1.4rem;
color: var(--primary-dark-blue);
margin-bottom: 12px;
font-family: 'Montserrat', sans-serif;
font-weight: 600;
}
.news-excerpt {
color: var(--dark-text);
margin-bottom: 15px;
line-height: 1.6;
min-height: 80px;
}
.news-link {
color: var(--primary-dark-blue);
text-decoration: none;
font-weight: 500;
display: inline-flex;
align-items: center;
gap: 5px;
position: relative;
z-index: 1;
}
.news-link:hover {
text-decoration: underline;
color: var(--accent-red);
}
.news-link i {
transition: var(--transition);
}
.news-link:hover i {
transform: translateX(3px);
}
/* About section with motorcycle background */
.about-section {
padding: 60px 20px;
margin: 40px 0;
border-radius: var(--border-radius);
color: var(--light-text);
position: relative;
overflow: hidden;
box-shadow: var(--shadow);
min-height: 400px;
display: flex;
align-items: center;
justify-content: center;
}
.about-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
linear-gradient(rgba(0, 42, 85, 0.85), rgba(0, 42, 85, 0.85)),
url('images/motorcycle-bg.jpg') center/cover no-repeat;
z-index: 0;
}
.about-overlay {
background: rgba(0, 42, 85, 0.85);
padding: 40px;
border-radius: var(--border-radius);
max-width: 800px;
margin: 0 auto;
position: relative;
z-index: 1;
animation: fadeInUp 1s ease 0.2s both;
}
.about-content {
max-width: 700px;
margin: 0 auto;
text-align: center;
}
.about-content p {
margin-bottom: 20px;
font-size: 1.1rem;
line-height: 1.7;
position: relative;
z-index: 1;
}
.about-btn {
display: inline-block;
background: var(--accent-yellow);
color: var(--primary-dark-blue);
padding: 12px 30px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: var(--transition);
margin-top: 20px;
border: 2px solid var(--accent-yellow);
position: relative;
z-index: 1;
}
.about-btn:hover {
background: transparent;
color: var(--accent-yellow);
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}
/* Footer styles */
.footer {
background: linear-gradient(135deg, var(--primary-dark-blue), #0a1e35);
color: var(--light-text);
padding: 40px 0;
margin-top: 50px;
position: relative;
overflow: hidden;
}
.footer::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background:
radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0) 70%),
url('images/cones-pattern.png') center/cover no-repeat;
z-index: 0;
}
.footer-content {
position: relative;
z-index: 1;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.footer-logos {
display: flex;
justify-content: center;
gap: 50px;
margin-bottom: 25px;
flex-wrap: wrap;
}
.footer-logos img {
max-width: 120px;
height: auto;
transition: var(--transition);
filter: brightness(0) invert(1);
border: 2px solid rgba(255,255,255,0.3);
padding: 5px;
border-radius: 8px;
}
.footer-logos img:hover {
transform: scale(1.05);
filter: brightness(0) invert(0.8);
border-color: var(--accent-yellow);
box-shadow: 0 0 15px rgba(243, 156, 18, 0.5);
}
.footer-links {
display: flex;
justify-content: center;
gap: 30px;
margin: 20px 0;
flex-wrap: wrap;
}
.document-link {
color: var(--accent-yellow);
text-decoration: none;
font-weight: 500;
display: flex;
align-items: center;
gap: 8px;
transition: var(--transition);
}
.document-link:hover {
color: var(--light-text);
text-shadow: 0 0 10px rgba(255,255,255,0.5);
}
.footer-contacts {
text-align: center;
margin: 20px 0;
}
.footer-contacts p {
margin: 8px 0;
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
font-size: 1.1rem;
transition: all 0.3s ease;
}
.footer-contacts p:hover {
color: var(--accent-yellow);
transform: translateX(5px);
}
.footer-contacts i {
color: var(--accent-yellow);
font-size: 1.1rem;
transition: all 0.3s ease;
}
.footer-contacts i:hover {
transform: scale(1.2);
color: var(--light-text);
}
.copyright {
text-align: center;
margin-top: 20px;
padding-top: 15px;
border-top: 1px solid rgba(255,255,255,0.1);
font-size: 0.95rem;
opacity: 0.9;
}
.powered-by {
font-size: 0.85rem;
color: var(--accent-yellow);
margin-top: 5px;
font-style: italic;
letter-spacing: 1px;
}
/* Animations */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes parallax {
from { transform: translateY(0); }
to { transform: translateY(-10px); }
}
/* Parallax effect */
.parallax {
background-attachment: fixed;
background-size: cover;
background-position: center;
position: relative;
overflow: hidden;
}
.parallax::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(rgba(0, 42, 85, 0.85), rgba(0, 42, 85, 0.7));
z-index: 1;
}
/* Mission section */
.mission-section {
margin: 40px 0;
}
.mission-content {
background: rgba(255, 255, 255, 0.9);
border-radius: 12px;
padding: 30px;
box-shadow: var(--shadow);
line-height: 1.8;
margin-top: 20px;
position: relative;
z-index: 1;
}
.mission-content p {
margin-bottom: 15px;
font-size: 1.1rem;
}
/* Timeline section */
.history-section {
margin: 40px 0;
}
.timeline {
position: relative;
margin: 30px 0;
padding-left: 40px;
}
.timeline::before {
content: '';
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 4px;
background: var(--primary-dark-blue);
border-radius: 2px;
}
.timeline-item {
margin-bottom: 30px;
position: relative;
padding-left: 30px;
}
.timeline-item::before {
content: '';
position: absolute;
left: -10px;
top: 5px;
width: 16px;
height: 16px;
border-radius: 50%;
background: var(--accent-yellow);
border: 3px solid var(--primary-dark-blue);
}
.timeline-year {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-dark-blue);
margin-bottom: 10px;
font-family: 'Montserrat', sans-serif;
}
.timeline-content {
background: rgba(255, 255, 255, 0.9);
border-radius: 8px;
padding: 15px;
border-left: 3px solid var(--accent-yellow);
transition: var(--transition);
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
position: relative;
z-index: 1;
}
.timeline-content:hover {
background: rgba(255, 255, 255, 1);
transform: translateX(5px);
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
/* Goals section */
.goals-section {
margin: 40px 0;
}
.goals-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
margin-top: 20px;
}
.goal-card {
background: var(--light-text);
border-radius: 12px;
padding: 25px;
text-align: center;
box-shadow: var(--shadow);
transition: var(--transition);
border-top: 4px solid var(--accent-yellow);
position: relative;
overflow: hidden;
}
.goal-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('images/cones-pattern.png') center/cover no-repeat;
opacity: 0.05;
z-index: 0;
}
.goal-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.goal-icon {
font-size: 3.5rem;
color: var(--primary-dark-blue);
margin-bottom: 15px;
position: relative;
z-index: 1;
}
.goal-icon::before {
content: '🎯';
font-size: 3.5rem;
}
.goal-title {
font-size: 1.5rem;
color: var(--primary-dark-blue);
margin-bottom: 12px;
font-family: 'Montserrat', sans-serif;
font-weight: 600;
position: relative;
z-index: 1;
}
.goal-description {
color: var(--dark-text);
line-height: 1.6;
position: relative;
z-index: 1;
}
/* Values section */
.values-section {
margin: 40px 0;
}
.values-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 25px;
margin-top: 20px;
}
.value-item {
text-align: center;
padding: 20px;
transition: var(--transition);
position: relative;
}
.value-item:hover {
transform: translateY(-5px);
}
.value-item i {
font-size: 2.8rem;
color: var(--primary-dark-blue);
margin-bottom: 15px;
display: block;
}
.value-item h3 {
font-size: 1.3rem;
color: var(--primary-dark-blue);
margin-bottom: 10px;
font-family: 'Montserrat', sans-serif;
font-weight: 600;
}
.value-item p {
color: var(--dark-text);
line-height: 1.6;
}
/* Quote section */
.quote-section {
margin: 40px 0;
text-align: center;
}
.quote-container {
background: rgba(0, 42, 85, 0.05);
border-radius: 12px;
padding: 30px;
border-left: 4px solid var(--accent-yellow);
margin: 0 auto;
max-width: 800px;
box-shadow: var(--shadow);
position: relative;
}
.quote-text {
font-size: 1.3rem;
font-style: italic;
color: var(--primary-dark-blue);
line-height: 1.8;
margin-bottom: 20px;
position: relative;
}
.quote-text::before,
.quote-text::after {
content: '"';
font-size: 3rem;
color: var(--accent-yellow);
position: absolute;
opacity: 0.7;
font-family: Georgia, serif;
}
.quote-text::before {
top: -20px;
left: -15px;
}
.quote-text::after {
bottom: -40px;
right: -15px;
}
.quote-author {
text-align: right;
font-weight: 700;
color: var(--primary-dark-blue);
margin-top: 15px;
font-style: normal;
font-family: 'Montserrat', sans-serif;
}
/* Leadership section */
.leadership-section {
margin: 40px 0;
}
.leadership-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 30px;
}
.leader-card {
display: flex;
gap: 20px;
padding: 20px;
border-radius: 15px;
background: var(--light-text);
box-shadow: var(--shadow);
transition: var(--transition);
position: relative;
overflow: hidden;
}
.leader-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(0,42,85,0.03), transparent);
z-index: 0;
}
.leader-card:hover {
transform: translateX(5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.leader-blue { border-left: 4px solid var(--primary-dark-blue); }
.leader-red { border-left: 4px solid var(--accent-red); }
.leader-yellow { border-left: 4px solid var(--accent-yellow); }
.leader-icon {
flex-shrink: 0;
width: 100px;
height: 100px;
border-radius: 50%;
background: var(--gradient-primary);
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 3px 10px rgba(0,0,0,0.1);
position: relative;
z-index: 1;
}
.leader-icon::before {
content: '👤';
font-size: 2.8rem;
color: var(--light-text);
}
.leader-icon i {
font-size: 2.8rem;
color: var(--light-text);
}
.leader-info {
flex: 1;
position: relative;
z-index: 1;
}
.leader-name {
font-size: 1.6rem;
font-weight: 700;
color: var(--primary-dark-blue);
margin-bottom: 5px;
font-family: 'Montserrat', sans-serif;
}
.leader-position {
font-size: 1.2rem;
font-weight: 600;
color: var(--accent-red);
margin-bottom: 5px;
font-family: 'Montserrat', sans-serif;
}
.leader-region {
color: var(--dark-text);
margin-bottom: 10px;
}
.leader-contact {
color: var(--dark-text);
}
.leader-contact i {
color: var(--primary-dark-blue);
margin-right: 5px;
}
/* Regions section */
.regions-section {
margin: 40px 0;
}
.regions-table-container {
overflow-x: auto;
margin-top: 20px;
border-radius: 10px;
box-shadow: var(--shadow);
}
.regions-table {
width: 100%;
border-collapse: collapse;
min-width: 600px;
}
.regions-table th,
.regions-table td {
padding: 15px;
text-align: left;
border: 1px solid rgba(0,0,0,0.1);
}
.regions-table th {
background-color: rgba(0, 42, 85, 0.05);
font-weight: 600;
color: var(--primary-dark-blue);
font-family: 'Montserrat', sans-serif;
}
