/*
Theme Name: OnlineCasinosHouse
Theme URI: https://onlinecasinoshouse.com/
Author: Developer
Author URI: https://onlinecasinoshouse.com/
Description: A custom WordPress theme for OnlineCasinosHouse showcasing top UK casinos.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: onlinecasinoshouse
Tags: casino, gambling, responsive, modern
*/

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

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    background-color: #121212;
    overflow-x: hidden;
}

a {
    color: #e6c649;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #f1d466;
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #e6c649;
    color: #121212;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: #f1d466;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-secondary {
    background-color: #b92c35;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #d93440;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #ffffff;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

/* Casino Theme Colors */
.gold-text {
    color: #e6c649;
}

.red-text {
    color: #b92c35;
}

.bg-dark {
    background-color: #1e1e1e;
}

.bg-darker {
    background-color: #121212;
}

.bg-gold {
    background-color: #e6c649;
    color: #121212;
}

.bg-red {
    background-color: #b92c35;
    color: #ffffff;
}

/* Header Styles */
.site-header {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-logo {
    max-width: 180px;
    height: auto;
}

.site-navigation {
    display: flex;
    align-items: center;
}

.main-menu {
    list-style: none;
    display: flex;
}

.main-menu li {
    margin-left: 25px;
    position: relative;
}

.main-menu a {
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    padding: 5px 0;
    position: relative;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e6c649;
    transition: width 0.3s ease;
}

.main-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Banner */
.hero-banner {
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 65px;
    text-align: center;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #e6c649;
    margin-bottom: 30px;
}

/* Casino Listings Section */
.casino-listings {
    padding: 80px 0;
    background-color: #1e1e1e;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #e6c649;
    margin: 15px auto 0;
}

.casino-item {
    display: flex;
    flex-wrap: wrap;
    background-color: #242424;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.casino-item:hover {
    transform: translateY(-5px);
}

.casino-logo-container {
    width: 25%;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
}

.casino-logo {
    max-width: 100%;
    max-height: 120px;
}

.casino-details {
    width: 50%;
    padding: 30px;
}

.casino-title {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: #e6c649;
}

.benefits-list {
    list-style: none;
    margin-bottom: 20px;
}

.benefits-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e6c649;
    font-weight: bold;
}

.casino-cta {
    width: 25%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #2a2a2a;
}

.bonus-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.casino-btn {
    width: 100%;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #121212;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #1e1e1e;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    background-color: #2a2a2a;
    padding: 15px 20px;
    cursor: pointer;
    position: relative;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #e6c649;
}

.faq-question.active::after {
    content: '−';
}

.faq-answer {
    background-color: #242424;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer-inner {
    padding: 20px;
}

.faq-question.active + .faq-answer {
    max-height: 1000px;
    padding: 20px;
}

/* Responsible Gambling Section */
.responsible-gambling {
    padding: 80px 0;
    background-color: #121212;
    text-align: center;
}

.responsible-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.gambling-icon {
    max-width: 100px;
}

.gambling-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.gambling-links a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2a2a2a;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.gambling-links a:hover {
    background-color: #e6c649;
    color: #121212;
    text-decoration: none;
}

.age-restriction {
    font-size: 2.5rem;
    font-weight: 900;
    color: #b92c35;
    margin: 20px 0;
    display: inline-block;
    border: 3px solid #b92c35;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 74px;
    text-align: center;
}

/* Footer */
.site-footer {
    background-color: #121212;
    padding: 50px 0 20px;
    border-top: 1px solid #2a2a2a;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column {
    width: 30%;
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #e6c649;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: #e6c649;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2a2a2a;
}

.copyright {
    font-size: 0.9rem;
    color: #999999;
}

/* Page Templates */
.page-header {
    background-color: #1e1e1e;
    padding: 120px 0 60px;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.page-content {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .casino-logo-container {
        width: 30%;
    }
    
    .casino-details {
        width: 70%;
    }
    
    .casino-cta {
        width: 100%;
    }
    
    .footer-column {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #121212;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .main-menu.active {
        max-height: 300px;
    }
    
    .main-menu li {
        margin: 0;
        text-align: center;
    }
    
    .main-menu a {
        display: block;
        padding: 15px;
    }
    
    .casino-logo-container {
        width: 100%;
        padding: 20px;
    }
    
    .casino-details {
        width: 100%;
    }
    
    .footer-column {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .casino-title {
        font-size: 1.5rem;
    }
    
    .responsible-icons {
        flex-direction: column;
        align-items: center;
    }
}
