/* BD333 Casino Website Styles */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #0d543e;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #f6d354;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2rem;
    color: #f6d354;
}

h3 {
    font-size: 1.5rem;
    color: #f6d354;
}

p {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.1rem;
}

a {
    color: #f6d354;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffc800;
}

/* Header Styles */
.header {
    background: linear-gradient(180deg, #006165, #14805e);
    padding: 1rem 0;
    padding-top: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-container {
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-menu a:hover {
    background-color: rgba(255,255,255,0.1);
    color: #f6d354;
}

.nav-menu a.active {
    background-color: rgba(246, 211, 84, 0.2);
    color: #f6d354;
    border: 1px solid rgba(246, 211, 84, 0.3);
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

/* Button Styles */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    text-align: center;
    min-height: 44px;
    line-height: 1.2;
}

.primary-btn {
    background: linear-gradient(180deg,#ffc800,#fef4d3 14.42%,#ffc800 87.02%,#bb9200),linear-gradient(180deg,#fff4e1,#28d9e1);
    color: #000;
    clip-path: inset(0 round 8px);
    text-transform: capitalize;
    border: 1px solid transparent;
    box-shadow: 0 0 10px 0 #ffc880;
    background-clip: padding-box,border-box;
    background-origin: padding-box,border-box;
}

.primary-btn:hover {
    transform: translateY(-2px);
    color: #000;
}

.secondary-btn {
    background: linear-gradient(180deg, #46cfa4, #70dfbc 12.56%, #14805e 33.02%, #14805e 74.38%, #006165), linear-gradient(180deg, #fff4e1, #28d9e1);
    color: #fff4e1;
    clip-path: inset(0 round 8px);
    text-transform: capitalize;
    border: 1px solid transparent;
    background-clip: padding-box,border-box;
}

.secondary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(70, 207, 164, 0.4);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-section {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(0,97,101,0.8), rgba(20,128,94,0.8));
    border-radius: 15px;
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.content-section {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.content-card {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
}

.content-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Page Images */
.page-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.page-image {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-image:hover {
    transform: translateY(-5px);
}

.page-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.page-image h3 {
    color: #f6d354;
    margin-bottom: 0.5rem;
}

.page-image p {
    color: #fff;
    font-size: 0.9rem;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

th {
    background: rgba(246, 211, 84, 0.2);
    color: #f6d354;
    font-weight: 600;
}

tr:hover {
    background: rgba(255,255,255,0.05);
}

/* List Styles */
.content-list {
    text-align: left;
    color: #fff;
    font-size: 1.1rem;
    line-height: 2;
}

.content-list li {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #006165, #14805e);
    color: #fff;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #f6d354;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #fff;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f6d354;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 1rem;
        padding-top: 1rem;
    }
    
    .main-content {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
}

.nav-menu li {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1400px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, #006165, #14805e);
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }
    
    nav.active {
        display: block;
    }

    .nav-menu {
        gap: 0.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .nav-menu a {
        border-radius: 5px;
        text-align: center;
    }
    
    .header-buttons {
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    
    .logo {
        height: 30px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .page-images {
        grid-template-columns: 1fr;
    }
    
    .main-content {
        padding: 1rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .content-section {
        padding: 1.5rem;
    }
    
    .table-container {
        font-size: 0.9rem;
    }
    
    th, td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {

    .logo{
        height: 25px;
    }

    .header-container {
        padding: 0 0.5rem;
        padding-top: 1rem;
    }
    
    .main-content {
        padding: 0.5rem;
    }
    
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .content-section {
        padding: 1rem;
    }
    
    .btn {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.highlight {
    color: #f6d354;
    font-weight: 600;
}

.cta-section {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255,200,0,0.1), rgba(246,211,84,0.1));
    border-radius: 15px;
    margin: 2rem 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* External Link Styles */
.external-link {
    color: #f6d354;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.external-link:hover {
    color: #ffc800;
} 