/* PLM Casino - Theme Styles */
/* Primary: coral | Accent: charcoal gray */

/* Reset and Base */
*, *::before, *::after {
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
}

html {
    scroll-behavior: smooth !important;
}

body {
    font-family: 'Sora', sans-serif !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
    color: #374151 !important;
    background-color: #f9fafb !important;
}

/* Navigation Menu Reset - CRITICAL */
.nav-menu li {
    margin-bottom: 0 !important;
}

.nav-menu,
.nav-menu ul,
nav ul,
footer ul {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

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

/* Header */
header {
    background-color: #374151 !important;
    padding: 1rem 0 !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.header-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1.5rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.logo {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    text-decoration: none !important;
}

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

.logo-text {
    color: #ff7f50 !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
}

/* Desktop Navigation */
.nav-menu {
    display: flex !important;
    align-items: center !important;
    gap: 2rem !important;
    list-style: none !important;
}

.nav-menu li {
    list-style: none !important;
    margin-bottom: 0 !important;
}

.nav-menu a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    transition: color 0.3s ease !important;
}

.nav-menu a:hover {
    color: #ff7f50 !important;
}

.nav-cta {
    background-color: #ff7f50 !important;
    color: #ffffff !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    border: 2px solid #ff7f50 !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background-color: transparent !important;
    color: #ff7f50 !important;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0.5rem !important;
}

.mobile-menu-toggle span {
    display: block !important;
    width: 25px !important;
    height: 3px !important;
    background-color: #ffffff !important;
    margin: 5px 0 !important;
    transition: all 0.3s ease !important;
}

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

    .nav-menu {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background-color: #374151 !important;
        flex-direction: column !important;
        padding: 1rem !important;
        gap: 1rem !important;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-menu li {
        width: 100% !important;
        text-align: center !important;
    }
}

/* Hero Section */
.hero {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative !important;
    min-height: 500px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.9) 0%, rgba(55, 65, 81, 0.7) 100%) !important;
}

.hero-content {
    position: relative !important;
    z-index: 2 !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 4rem 2rem !important;
    text-align: center !important;
}

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

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem !important;
    }
}

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

.hero-btn {
    display: inline-block !important;
    background-color: transparent !important;
    color: #ff7f50 !important;
    border: 2px solid #ff7f50 !important;
    padding: 1rem 2.5rem !important;
    border-radius: 8px !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: all 0.3s ease !important;
}

.hero-btn:hover {
    background-color: #ff7f50 !important;
    color: #ffffff !important;
}

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

/* Sections */
section {
    margin-bottom: 3rem !important;
    padding: 2rem !important;
    background-color: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05) !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #374151 !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}

h2 {
    font-size: 1.75rem !important;
    margin-bottom: 1.25rem !important;
    padding-bottom: 0.75rem !important;
    border-bottom: 3px solid #ff7f50 !important;
}

h3 {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
}

/* Paragraphs */
p {
    margin-bottom: 1.25rem !important;
    font-size: 1.0625rem !important;
    color: #4b5563 !important;
}

/* Content Lists */
.content-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 1.5rem 0 !important;
}

.content-list li {
    position: relative !important;
    padding-left: 1.75rem !important;
    margin-bottom: 0.75rem !important;
    font-size: 1.0625rem !important;
    color: #4b5563 !important;
}

.content-list li::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0.5rem !important;
    width: 8px !important;
    height: 8px !important;
    background-color: #374151 !important;
}

.content-list li::marker {
    display: none !important;
    content: none !important;
}

/* Ordered Lists */
ol.content-list {
    counter-reset: item !important;
}

ol.content-list li {
    counter-increment: item !important;
}

ol.content-list li::before {
    content: counter(item) !important;
    background-color: #ff7f50 !important;
    color: #ffffff !important;
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    top: 0 !important;
}

/* Tables */
.table-container {
    overflow-x: auto !important;
    margin: 1.5rem 0 !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

table {
    width: 100% !important;
    border-collapse: collapse !important;
    min-width: 600px !important;
}

thead {
    background-color: #374151 !important;
}

th {
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 1rem !important;
    text-align: left !important;
    font-size: 1rem !important;
}

td {
    padding: 1rem !important;
    border-bottom: 1px solid #e5e7eb !important;
    font-size: 1rem !important;
    color: #4b5563 !important;
}

tbody tr:hover {
    background-color: #fff7ed !important;
}

tbody tr:nth-child(even) {
    background-color: #f9fafb !important;
}

/* Images */
.img-container {
    margin: 2rem 0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.img-container img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
}

/* Cards */
.card {
    background-color: #ffffff !important;
    border-radius: 12px !important;
    padding: 1.5rem !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid #e5e7eb !important;
    margin-bottom: 1.5rem !important;
}

.card-highlight {
    border-left: 4px solid #ff7f50 !important;
}

/* Buttons */
.btn-outline {
    display: inline-block !important;
    background-color: transparent !important;
    color: #ff7f50 !important;
    border: 2px solid #ff7f50 !important;
    padding: 0.875rem 2rem !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
}

.btn-outline:hover {
    background-color: #ff7f50 !important;
    color: #ffffff !important;
}

/* Icons */
.fa, .fas, .far, .fab {
    color: #ff7f50 !important;
}

.icon-charcoal {
    color: #374151 !important;
}

/* Feature Grid */
.feature-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 1.5rem !important;
    margin: 2rem 0 !important;
}

.feature-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    padding: 1rem !important;
}

.feature-item i {
    font-size: 1.5rem !important;
    color: #ff7f50 !important;
    flex-shrink: 0 !important;
}

/* Footer */
footer {
    background-color: #374151 !important;
    color: #ffffff !important;
    padding: 3rem 0 1.5rem !important;
    margin-top: 3rem !important;
}

.footer-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1.5rem !important;
}

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

.footer-col h4 {
    color: #ff7f50 !important;
    font-size: 1.125rem !important;
    margin-bottom: 1rem !important;
    font-weight: 600 !important;
}

.footer-col ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-col li {
    margin-bottom: 0.5rem !important;
    list-style: none !important;
}

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

.footer-col a {
    color: #d1d5db !important;
    text-decoration: none !important;
    font-size: 1rem !important;
    transition: color 0.3s ease !important;
}

.footer-col a:hover {
    color: #ff7f50 !important;
}

.footer-bottom {
    border-top: 1px solid #4b5563 !important;
    padding-top: 1.5rem !important;
    text-align: center !important;
}

.footer-bottom p {
    color: #9ca3af !important;
    font-size: 0.9375rem !important;
    margin: 0 !important;
}

/* Strong text */
strong {
    color: #374151 !important;
    font-weight: 600 !important;
}

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

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

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

    section {
        padding: 1.5rem !important;
    }

    .hero-content {
        padding: 3rem 1rem !important;
    }
}

/* Utility Classes */
.text-coral {
    color: #ff7f50 !important;
}

.text-charcoal {
    color: #374151 !important;
}

.bg-coral {
    background-color: #ff7f50 !important;
}

.bg-charcoal {
    background-color: #374151 !important;
}

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

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

.text-center {
    text-align: center !important;
}
