/* Google Fonts - Open Sans */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

/* Material Icons */
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px !important;
    line-height: 1.8;
    color: #333;
    background-color: #ffffff;
}

/* Bootstrap Navbar Fixes - IMPORTANT */
.navbar-nav {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

.nav-item {
    margin-bottom: 0 !important;
}

/* Remove list markers from navbar and footer */
.navbar ul,
.navbar ol,
footer ul,
footer ol {
    list-style: none !important;
}

.navbar ul li:before,
.navbar ul li:after,
.navbar ol li:before,
.navbar ol li:after,
footer ul li:before,
footer ul li:after,
footer ol li:before,
footer ol li:after {
    display: none !important;
    content: none !important;
}

/* Brand and Logo */
.navbar-brand {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    width: 40px;
    height: 40px;
    box-shadow: none !important;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
    padding: 1rem 0 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ffd700 !important;
}

.navbar-toggler {
    border-color: rgba(255, 215, 0, 0.3) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 215, 0, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* CTA Buttons in Navbar */
.btn-cta {
    background-color: transparent !important;
    color: #ffd700 !important;
    border: 2px solid #ffd700 !important;
    padding: 0.5rem 1.5rem !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    transition: all 0.3s ease !important;
    margin-left: 0.5rem !important;
}

.btn-cta:hover {
    background-color: #ffd700 !important;
    color: #1a1a1a !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%) !important;
    color: #ffffff !important;
    padding: 80px 0 !important;
    margin-bottom: 0 !important;
}

.hero-section h1 {
    font-size: 48px !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
}

.hero-section p {
    font-size: 20px !important;
    margin-bottom: 20px !important;
    color: #ffffff !important;
    line-height: 1.8 !important;
}

.hero-section .btn-hero {
    background-color: transparent !important;
    color: #ffd700 !important;
    border: 3px solid #ffd700 !important;
    padding: 12px 40px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-decoration: none !important;
    margin-top: 20px !important;
}

.hero-section .btn-hero:hover {
    background-color: #ffd700 !important;
    color: #1a1a1a !important;
    transform: translateY(-3px);
}

.hero-section img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Sections */
section {
    padding: 60px 0;
}

section:nth-child(even) {
    background-color: #f8f9fa;
}

/* Headings */
h1 {
    font-size: 42px !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
    color: #1a1a1a !important;
    line-height: 1.3 !important;
}

h2 {
    font-size: 36px !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
    margin-top: 30px !important;
    color: #1a1a1a !important;
    line-height: 1.3 !important;
}

h3 {
    font-size: 28px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
    margin-top: 25px !important;
    color: #2d2d2d !important;
    line-height: 1.4 !important;
}

/* Paragraphs */
p {
    font-size: 18px !important;
    line-height: 1.8 !important;
    margin-bottom: 20px !important;
    color: #333 !important;
}

/* Lists - Content Lists with Gold Markers */
ul, ol {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

ul li, ol li {
    font-size: 18px !important;
    line-height: 1.8 !important;
    margin-bottom: 12px;
    padding-left: 35px;
    position: relative;
    color: #333;
}

ul li:before {
    content: '\E5CC';
    font-family: 'Material Icons';
    position: absolute;
    left: 0;
    top: 0;
    color: #ffd700;
    font-size: 20px;
    font-weight: bold;
}

ol {
    counter-reset: item;
}

ol li {
    counter-increment: item;
}

ol li:before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #ffd700;
    color: #1a1a1a;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    min-width: 600px;
}

thead {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

thead th {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    padding: 15px;
    text-align: left;
    border: none;
}

tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
}

tbody tr:hover {
    background-color: #f8f9fa;
}

tbody td {
    padding: 15px;
    font-size: 17px !important;
    color: #333;
}

/* Cards */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-header {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 22px !important;
    padding: 20px;
    border-bottom: 3px solid #ffd700;
}

.card-body {
    padding: 25px;
    font-size: 18px !important;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

picture {
    display: block;
    margin: 30px 0;
}

/* Icon Styles */
.material-icons {
    color: #ffd700;
    font-size: 24px;
    vertical-align: middle;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff !important;
    padding: 60px 0 30px;
    margin-top: 60px;
}

footer h5 {
    color: #ffd700 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
}

footer p,
footer a {
    color: #ffffff !important;
    font-size: 17px !important;
    line-height: 1.8 !important;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffd700 !important;
}

footer ul {
    list-style: none !important;
    padding-left: 0 !important;
}

footer ul li {
    margin-bottom: 10px;
    padding-left: 0 !important;
}

footer ul li:before {
    display: none !important;
    content: none !important;
}

footer .footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

footer .footer-bottom p {
    margin: 0;
    color: #ffffff !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 36px !important;
    }

    .hero-section p {
        font-size: 18px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    h2 {
        font-size: 28px !important;
    }

    h3 {
        font-size: 24px !important;
    }

    .navbar-brand {
        font-size: 24px !important;
    }

    .btn-cta {
        margin-left: 0 !important;
        margin-top: 10px !important;
        width: 100%;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 16px !important;
    }

    p, ul li, ol li, tbody td {
        font-size: 16px !important;
    }

    .hero-section {
        padding: 50px 0 !important;
    }

    .hero-section h1 {
        font-size: 28px !important;
    }

    h1 {
        font-size: 26px !important;
    }

    h2 {
        font-size: 24px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    section {
        padding: 40px 0;
    }
}

/* Utility Classes */
.text-gold {
    color: #ffd700 !important;
}

.bg-gold {
    background-color: #ffd700 !important;
}

.border-gold {
    border-color: #ffd700 !important;
}
