/* General Styles */
body {
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    text-align: right;
    margin: 0;
    padding: 0;
    background: #121212; /* Dark modern background */
    color: #fff;
}

/* Header */
header {
    background: #004F2D; /* Kuwaiti green */
    color: #FFD700; /* Gold text */
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo */
.logo img {
    width: 60px;
}

/* Navigation Menu */
nav ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #FFA500; /* Orange hover effect */
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFD700;
    font-size: 24px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: url('casino-background-kuwait.jpg') no-repeat center center/cover;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.cta-button {
    display: inline-block;
    padding: 12px 20px;
    background: #FFD700;
    color: #121212;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

/* Casino List */
.casino-list {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

.casino-card {
    background: #222;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
}

.visit-btn {
    display: inline-block;
    padding: 8px 15px;
    background: #FFD700;
    color: #121212;
    text-decoration: none;
    border-radius: 5px;
}

/* Footer */
/* Footer */
footer {
    background: #004F2D; /* Kuwaiti Green */
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

/* Footer Layout */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: auto;
    flex-wrap: wrap;
}

/* Kuwait Logo */
.footer-logo img {
    width: 60px; /* Adjust logo size */
}

/* Short Description */
.footer-description {
    font-size: 16px;
    max-width: 500px;
    text-align: center;
}

/* Privacy Policy & Terms Links */
.footer-links {
    display: flex;
    gap: 15px;
}

.footer-links a {
    color: #FFD700; /* Gold */
    text-decoration: none;
    font-weight: bold;
}

.footer-links a:hover {
    text-decoration: underline;
}


/* Responsive Menu */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: #004F2D;
        width: 100%;
        text-align: right;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
    }
}



/* Main Content Styling */
main {
    max-width: 900px; /* Keeps content centered and readable */
    margin: 50px auto; /* Centers the content */
    padding: 30px;
    background: #1E1E1E; /* Dark theme for a modern Kuwaiti feel */
    color: #FFFFFF; /* Light text for contrast */
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

/* Headings inside Main */
main h1 {
    font-size: 36px;
    color: #FFD700; /* Gold color inspired by Kuwaiti luxury */
    margin-bottom: 20px;
    text-align: center;
}

main h2 {
    font-size: 28px;
    color: #FFB700; /* Lighter gold for section headings */
    margin-bottom: 15px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 5px;
}

main h3 {
    font-size: 24px;
    color: #FFA500;
    margin-bottom: 12px;
}

main h4 {
    font-size: 22px;
    color: #FFD700;
    margin-bottom: 10px;
}

main h5 {
    font-size: 20px;
    color: #DDC98E;
    margin-bottom: 8px;
}

main h6 {
    font-size: 18px;
    color: #C9B37E;
    margin-bottom: 6px;
}

/* Paragraphs */
main p {
    font-size: 18px;
    line-height: 1.8;
    color: #E0E0E0;
    margin-bottom: 20px;
    text-align: justify;
}

/* Blockquote Styling */
main blockquote {
    font-size: 20px;
    font-style: italic;
    color: #FFD700;
    padding: 15px;
    border-right: 5px solid #FFD700;
    background: #292929;
    margin: 20px 0;
    border-radius: 5px;
}

/* Bullet Lists */
main ul {
    list-style: none;
    padding-right: 0;
    margin-bottom: 20px;
}

main ul li {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 12px;
    padding-right: 30px;
    position: relative;
}

/* Custom Gold Bullet */
main ul li::before {
    content: "◆";
    font-size: 14px;
    color: #FFD700;
    position: absolute;
    right: 0;
    top: 5px;
}

/* Ordered Lists */
main ol {
    padding-right: 20px;
    margin-bottom: 20px;
    counter-reset: list-counter;
}

main ol li {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 10px;
    padding-right: 30px;
    position: relative;
    counter-increment: list-counter;
}

/* Custom Number Styling */
main ol li::before {
    content: counter(list-counter) ".";
    font-size: 18px;
    color: #FFD700;
    font-weight: bold;
    position: absolute;
    right: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    main {
        max-width: 100%;
        padding: 20px;
    }
    
    main h1 {
        font-size: 32px;
    }

    main h2 {
        font-size: 26px;
    }

    main p {
        font-size: 16px;
    }
}
/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background: #1E1E1E; /* Dark modern background */
    color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Heading */
.faq-container h2 {
    font-size: 28px;
    color: #FFD700; /* Gold for luxury */
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 5px;
    text-align: center;
}

/* FAQ Question Styling */
.faq-question {
    font-size: 20px;
    font-weight: bold;
    background: #FFD700; /* Gold background */
    color: #1E1E1E; /* Dark text for contrast */
    padding: 15px;
    border: none;
    width: 100%;
    text-align: right;
    outline: none;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 6px;
    margin-bottom: 10px;
    position: relative;
}

/* FAQ Plus/Minus Icon */
.faq-question::after {
    content: "＋"; /* Default plus icon */
    font-size: 18px;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
}

/* Active FAQ Question */
.faq-question.active {
    background: #4A2F13; /* Dark brown */
    color: #FFD700;
}

.faq-question.active::after {
    content: "－"; /* Change to minus when open */
}

/* FAQ Answer (Hidden by Default) */
.faq-answer {
    display: none; /* Ensures all answers are hidden by default */
    padding: 15px;
    font-size: 18px;
    color: #E0E0E0;
    background: #292929;
    border-right: 4px solid #FFD700; /* Gold accent */
    margin-bottom: 10px;
    border-radius: 5px;
}


/* Smooth Fade-in Animation */
.faq-answer.show {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-container {
        max-width: 100%;
        padding: 20px;
    }

    .faq-question {
        font-size: 18px;
        padding: 12px;
    }

    .faq-answer {
        font-size: 16px;
    }
}

