/*
Theme Name: Casino Hub
Theme URI:  http://example.com/casino-hub
Author:      Your Name
Author URI:  http://example.com
Description: WordPress theme for casino information, entertainment, and gaming guides.
Version:     1.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: casino-hub
Tags:        casino, gaming, entertainment, responsive, gradient, translation-ready
*/

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

.logo a img{
    max-height: 70px;
}

.login-buttons a{
    margin-right: 20px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

header {
    background: #1a3a52;
    color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

header .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}


header .container .logo strong{
    color: #fff;
}

header .container .logo a{
    text-decoration: none;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #4facfe;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

nav {
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {

    .login-buttons{
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: #1a3a52;
        z-index: 1000;
        padding: 80px 20px 20px;
        box-shadow: -2px 0 5px rgba(0,0,0,0.3);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
    }

    nav li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 0px;
    }

    nav a {
        font-size: 1.1em;
        display: block;
        padding: 10px 0;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a3a52 0%, #c65d66 50%, #6b3fa0 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: right;
    position: relative;
    overflow: hidden;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero .hero-image {
    flex: 1;
    min-height: 250px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.hero .hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 0.95em;
    line-height: 1.6;
    max-width: 500px;
}

/* Three Feature Boxes */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px;
    background: #f5f5f5;
}

.feature-box {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
}

.feature-box img {
    width: 50px;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 0.95em;
    margin: 10px 0;
}

.feature-box p {
    font-size: 0.9em;
    color: #666;
}

/* Responsible Play Section */
.responsible-play {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.responsible-play h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.responsible-play > p {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 30px;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.column h4 {
    font-size: 1em;
    margin-top: 0;
}

.column ul {
    padding-left: 20px;
}

.column li {
    margin: 10px 0;
    font-size: 0.9em;
}

/* Video Section */
.video-section {
    margin: 60px 0;
    text-align: center;
}

.video-wrapper {
    /* max-width: 600px; */
    margin: 30px auto;
    /* background: #000; */
    /* border-radius: 8px; */
    overflow: hidden;
}

.video-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Regulatory Section */
.regulatory {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.regulatory h2 {
    grid-column: 1 / -1;
    font-size: 1.8em;
}

.regulatory .content {
    font-size: 0.9em;
    line-height: 1.8;
}

.regulatory .pledge {
    background: #fff3f5;
    border-left: 4px solid #c65d66;
    padding: 20px;
    margin: 20px 0;
}

.regulatory .pledge strong {
    color: #c65d66;
}

/* Dark Section */
.dark-section {
    background: linear-gradient(135deg, #1a3a52, #3d2645);
    color: #fff;
    padding: 80px 20px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.dark-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: url('data:image/svg+xml,<svg viewBox="0 0 1200 100" xmlns="http://www.w3.org/2000/svg"><path d="M0,50 Q300,0 600,50 T1200,50 L1200,100 L0,100 Z" fill="white"/></svg>');
    background-size: cover;
}

.dark-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.dark-section h2 {
    grid-column: 1 / -1;
    font-size: 2em;
}

.dark-section ul {
    list-style: none;
    padding: 0;
}

.dark-section li {
    margin: 15px 0;
    padding-left: 20px;
    position: relative;
}

.dark-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b6b;
}

/* Employee Section */
.employee-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.employee-section img {
    width: 100%;
    border-radius: 8px;
}

.employee-section h2 {
    font-size: 1.8em;
    margin-top: 0;
}

.employee-section p {
    font-size: 0.9em;
    line-height: 1.8;
    color: #666;
}

/* More to Explore */
.more-explore {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.more-explore h2 {
    font-size: 1.8em;
    margin-bottom: 40px;
}

.explore-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.explore-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s;
}

.explore-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.explore-card h4 {
    margin-top: 0;
    font-size: 1.1em;
}

.explore-card p {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
}

.explore-card .learn-more {
    color: #c65d66;
    font-weight: bold;
    text-decoration: none;
}

/* Pagination */
.pagination {
    text-align: center;
    padding: 30px 0;
}

.pagination span {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 0 5px;
    line-height: 30px;
    border-radius: 50%;
}

.pagination .active {
    background: #c65d66;
    color: #fff;
}

.pagination a {
    color: #ccc;
    text-decoration: none;
}

/* Footer */
footer {
    background: #1a3a52;
    color: #fff;
    padding: 60px 20px 30px;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-top: 0;
    font-size: 1em;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9em;
}

.footer-section a:hover {
    color: #4facfe;
}

.newsletter-form {
    margin: 20px 0;
}

.newsletter-form input {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: none;
    border-radius: 3px;
}

.newsletter-form button {
    background: #c65d66;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-weight: bold;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9em;
}

.social-links {
    text-align: center;
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 0 10px;
    line-height: 30px;
}

.video-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.video-wrapper img {
  width: 100%;
  height: auto;
  max-width: 800px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .two-column {
        grid-template-columns: 1fr;
    }
    
    .regulatory {
        grid-template-columns: 1fr;
    }
    
    .dark-section .container {
        grid-template-columns: 1fr;
        padding-bottom: 80px;
    }
    
    .employee-section {
        grid-template-columns: 1fr;
    }
}
