/*
Theme Name: Pick Online Casinos
Theme URI: https://pickonlinecasinos.com/
Author: Developer
Author URI: https://pickonlinecasinos.com/
Description: A custom WordPress theme for showcasing top UK online 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: pickonlinecasinos
Tags: casinos, gambling, uk-casinos
*/

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

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

a:hover {
    color: #004999;
}

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

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff5722;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #e64a19;
    color: #fff;
}

.btn-bonus {
    background-color: #4CAF50;
}

.btn-bonus:hover {
    background-color: #388E3C;
}

/* Header Styles */
.site-header {
    background-color: #1a237e;
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

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

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

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

.site-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.site-description {
    margin: 5px 0 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Navigation */
.main-navigation ul {
    display: flex;
    list-style: none;
}

.main-navigation li {
    margin-left: 30px;
    position: relative;
}

.main-navigation a {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
}

.main-navigation a:hover {
    color: #ff5722;
}

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

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

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

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Casino Listings */
.casino-listings {
    padding: 50px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #1a237e;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ff5722;
}

.casino-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.casino-logo {
    flex: 0 0 200px;
    margin-right: 30px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.casino-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.casino-details {
    flex: 1;
}

.casino-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 10px;
}

.casino-benefits {
    margin-bottom: 15px;
}

.benefits-list {
    list-style: none;
}

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

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

.casino-cta {
    text-align: right;
    margin-left: 30px;
}

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

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

/* FAQ Section */
.faq-section {
    padding: 70px 0;
    background-color: #fff;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    background-color: #f0f4f8;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.faq-question.active {
    background-color: #1a237e;
    color: #fff;
}

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

.faq-answer {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 0 0 4px 4px;
    display: none;
}

.faq-answer.active {
    display: block;
}

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

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

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

.rg-icon {
    margin: 0 15px;
}

.rg-icon img {
    max-height: 80px;
    width: auto;
}

.rg-links {
    margin-top: 30px;
}

.rg-links a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.rg-links a:hover {
    background-color: #d0d0d0;
}

/* Footer */
.site-footer {
    background-color: #1a237e;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-widget {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.footer-widget h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #ff5722;
}

.footer-widget ul {
    list-style: none;
}

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

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-widget ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-30 {
    margin-top: 30px;
}

/* Import responsive styles */
@import url('assets/css/responsive.css');
