/* Import Prompt font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Prompt', sans-serif !important;
    color: #000000;
    background-color: #ffffff;
    line-height: 1.6;
    font-size: 18px !important;
}

/* Navigation Styles */
.navbar {
    background-color: #000000;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: gold;
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-logo {
    width: 40px;
    height: 40px;
}

.navbar-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none !important;
}

.navbar-menu::before,
.navbar-menu::after {
    display: none !important;
}

.navbar-menu li {
    list-style: none !important;
}

.navbar-menu li::before,
.navbar-menu li::after,
.navbar-menu li::marker {
    display: none !important;
    content: none !important;
}

.navbar-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.navbar-menu a:hover {
    color: gold;
}

.cta-button {
    background-color: gold !important;
    color: #000000 !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: background-color 0.3s !important;
    white-space: nowrap !important;
    display: inline-block !important;
    border: none !important;
    cursor: pointer !important;
}

.cta-button:hover {
    background-color: #d4af37 !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: gold;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .navbar-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-container {
        flex-wrap: wrap;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 4rem 2rem !important;
    min-height: 500px !important;
}

.hero-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    align-items: center !important;
}

.hero-content h1 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #000000 !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
}

.hero-content p {
    font-size: 1.125rem !important;
    color: #333333 !important;
    margin-bottom: 2rem !important;
    line-height: 1.6 !important;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr !important;
    }

    .hero-content h1 {
        font-size: 2rem !important;
    }
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

section {
    margin-bottom: 4rem;
}

h2 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #000000 !important;
    margin-bottom: 1.5rem !important;
    margin-top: 2rem !important;
    border-left: 4px solid gold;
    padding-left: 1rem !important;
}

h3 {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #000000 !important;
    margin-bottom: 1rem !important;
    margin-top: 1.5rem !important;
}

p {
    font-size: 18px !important;
    line-height: 1.8 !important;
    margin-bottom: 1.25rem !important;
    color: #000000 !important;
}

/* Lists Styling */
ul, ol {
    margin: 1.5rem 0 !important;
    padding-left: 0 !important;
    list-style: none !important;
}

ul li, ol li {
    position: relative;
    padding-left: 2rem !important;
    margin-bottom: 1rem !important;
    font-size: 18px !important;
    line-height: 1.6 !important;
    list-style: none !important;
}

ul li::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 0.5rem !important;
    width: 0 !important;
    height: 0 !important;
    border-top: 6px solid transparent !important;
    border-bottom: 6px solid transparent !important;
    border-left: 10px solid gold !important;
}

ul li::marker,
ol li::marker {
    display: none !important;
    content: none !important;
}

ol {
    counter-reset: item;
}

ol li::before {
    content: counter(item) !important;
    counter-increment: item !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    color: gold !important;
    font-weight: 700 !important;
    font-size: 18px !important;
}

/* Cards */
.card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}

.card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

picture {
    display: block;
    margin: 2rem 0;
}

/* Table Styling */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

thead {
    background-color: #000000;
}

thead th {
    color: gold;
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    font-size: 16px;
}

tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

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

tbody td {
    padding: 1rem;
    font-size: 16px;
    color: #000000;
}

/* Footer */
footer {
    background-color: #000000;
    color: #ffffff;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: gold !important;
    margin-bottom: 1rem !important;
    font-size: 1.25rem !important;
}

.footer-links {
    list-style: none !important;
    padding: 0 !important;
}

.footer-links::before,
.footer-links::after {
    display: none !important;
}

.footer-links li {
    list-style: none !important;
    margin-bottom: 0.5rem !important;
    padding-left: 0 !important;
}

.footer-links li::before,
.footer-links li::after,
.footer-links li::marker {
    display: none !important;
    content: none !important;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: gold;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #cccccc;
    font-size: 14px;
}

/* Icon Styling */
.material-icons {
    color: gold;
    vertical-align: middle;
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 16px !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    h3 {
        font-size: 1.25rem !important;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    main {
        padding: 2rem 1rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

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