/*
Theme Name: Casinos Online España
Theme URI: https://www.casinosonlineespana.co.com/
Author: Your Name
Author URI: https://www.casinosonlineespana.co.com/
Description: Custom WordPress theme for Casinos Online España
Version: 1.0
Text Domain: casinosonlineespana
*/


/* Lato Regular */
@font-face {
    font-family: 'Lato';
    src: url('fonts/Lato-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Lato Light */
@font-face {
    font-family: 'Lato';
    src: url('fonts/Lato-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Lato Bold */
@font-face {
    font-family: 'Lato';
    src: url('fonts/Lato-Bold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Lato Italic */
@font-face {
    font-family: 'Lato';
    src: url('fonts/Lato-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* Lato Black */
@font-face {
    font-family: 'Lato';
    src: url('fonts/Lato-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', Arial, sans-serif;
}

/* General Styles */
body {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: rgba(0, 0, 0, 0.87);
    background: #fff;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}
strong {
    font-weight: 1000;
}

ul {
    padding-left: 15px;
    margin: unset;
}

/* Header */
header {
    background-color: #f4f4f4;
    border-bottom: 1px solid #ddd;
}

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

.header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 30px;
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    width: 250px;
}

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

.logo-text {
    font-weight: 800;
    font-size: 24px;
    line-height: 1.1;
    text-transform: uppercase;
    color: #000;
}

.logo-text span {
    display: block;
}

.logo-flag {
    font-size: 32px;
    margin-right: 10px;
}

/* Hamburger Menu (Hidden on Desktop) */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: #333;
}

/* Nav Styles */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 28px;
}
nav ul li { 
margin-bottom: 1px;
}

nav a {
    color: rgba(0, 0, 0, 0.84);
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 12px;
    /* Space for border */
    border-bottom: 2px solid transparent;
    /* Prevent jump on hover */
    transition: border-color 0.3s ease;
}

nav a:hover {
    color: #000;
    border-bottom: 2px solid #000;
    /* Black underline as per screenshot style */
}

table{
	width: unset !important;
	    margin: 15px 0px 0px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        padding: unset;
    }

    .logo {
        margin-bottom: 0;
        width: auto;
    }

    .logo img {
        width: 250px;
        height: auto;

    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .main-nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        flex-basis: 100%;
        /* Force new line */
    }

    .main-nav.active {
        max-height: 300px;
        /* Adjust as needed */
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px 0;
        background-color: #f4f4f4;
        border-top: 1px solid #ddd;
    }

    main {
        padding: 10px;
    }

    header {
        padding: 10px;
    }

    footer {
        padding: 10px !important;
    }
}

/* Main Content */
main {
    background-color: #F4F4F4;
    padding-top: 30px;
    min-height: 600px;
}

.home-intro h1 {
    text-align: center;
}

h1 {
    font-size: 35px;
    margin: 15px 0;
    line-height: 45px;
	text-align: center;
	font-weight: 800;
}

h2 {
    font-size: 30px;
    line-height: 40px;
    margin: 15px 0;
}

p {
    font-size: 16px;
    line-height: 26px;
    margin: unset;
}

li {
/*     margin-bottom: 10px; */
    font-size: 16px;
    line-height: 36px;
}

.content-list li {
    line-height: 36px;
    margin: unset;
}

.content-list li b {
    font-weight: 1000;
}

.casino-card {
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.first-row {
    border: 3px solid #ffcb3f;
}

.card-left {
    width: 140px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-rate {
    display: flex;
    gap: 30px;
}

.card-table {
    display: flex;
    gap: 30px;
}

.logo-box {
    border-radius: 5px;
}

.logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
	border-radius: 5px;
}

.card-meta {
    font-size: 10px;
}

.date-meta {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 800;
    line-height: 10px;
    margin-left: 4px;
    color: #888888;
}

.stats-meta {
    display: flex;
    gap: 15px;
}
.stats-meta span{
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 800;
    margin-left: 4px;
    color: #888888;
}

.rating-box {
    display: flex;
    align-items: center;
}

.rating-num {
    font-weight: 900;
    color: #000;
    font-size: 14px;
}

.stars {
        margin: 0px 0 0 6px;
}

.stars img{
    width: 88px;
}

.card-center {
    flex-grow: 1;
}

.casino-bonus-title {
    font-family: 'Arial', sans-serif;
    margin-bottom: 20px;
    color: #000;
    margin-top: 0;
	font-size: 18px;
	line-height: 27px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-left: 15px;
}

.features-list li {
    font-size: 14px;
    color: #333;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: unset !important;
}

.features-list li i {
    font-size: 12px;
    color: #555;
}

.card-right {
    flex-shrink: 0;
}

.play-btn {
    background: #4ab97e;
    color: #fff;
    padding: 0px 40px;
	line-height: 44px;
    border-radius: 30px;
    text-decoration: underline;
    font-weight: 800;
    font-size: 16px;
    display: inline-block;
    transition: background 0.2s;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(74, 185, 126, 0.2);
}

.play-btn:hover {
    background: #3e9e6b;
    color: #fff;
    text-decoration: none;
}

.footer-left {
    display: flex;
    gap: 20px;
}

.casino-action-desktop {
    width: 20%;
}

@media (max-width: 768px) {
    .casino-card {
        display: grid;
        grid-template-areas:
            "logo rating"
            "title title"
            "button button"
            "features features"
            "stats date";
        grid-template-columns: 1fr auto;
        gap: 20px;
        padding: 20px;
        background: #F5F6F6;
        text-align: left;
    }

    .card-table,
    .card-rate,
    .card-left {
        display: contents;
    }

    .logo-box {
        grid-area: logo;
        background: #000;
        padding: 10px;
        border-radius: 8px;
        width: 120px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-box img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .rating-box {
        grid-area: rating;
        display: flex;
        align-items: center;
        gap: 10px;
        justify-self: end;
        margin-top: 10px;
    }

    .casino-bonus-title {
        grid-area: title;
        font-size: 20px;
        margin: 0;
        line-height: 1.3;
        color: #000;
        text-align: left;
		width: 170%;
    }

    .card-right {
        grid-area: button;
    }

    .play-btn {
        width: 100%;
        padding: 12px;
        box-sizing: border-box;
        text-decoration: none;
        text-align: center;
        border-radius: 30px;
    }

    .features-list {
        grid-area: features;
        margin: 0;
        padding: 0;
    }

    .features-list li {
        justify-content: flex-start;
        font-size: 14px;
        text-align: left;
		width: 170%;
    }

    .stats-meta {
        grid-area: stats;
        display: flex;
        gap: 15px;
        color: #888;
        font-size: 14px;
    }

    .card-meta {
        grid-area: date;
        justify-self: end;
        color: #888;
        font-size: 14px;
    }
}

.review-section {
    margin-top: 24px;
}

/* .review-section p {
    margin-bottom: 20px;
} */

.top-7-list {
    margin-bottom: 30px;
        padding-left: 15px;
}

.top-7-list li {
    line-height: 28px;
}

.review-section h2 {
    font-size: 30px;
    line-height: 40px;
    margin: 15px 0;
}

.feature-table-box {
    border: 1px solid #000;
    width: fit-content;
    min-width: 300px;
    margin-top: 15px;
}

.feature-title {
    font-weight: 800;
    padding: 10px 15px;
    border-bottom: 1px solid #000;
	    text-align: left;
}

.feature-list {
    padding: 15px 15px 15px 35px !important;
    margin: 0 !important;
}

.feature-list li {
    line-height: 28px !important;
    list-style-type: disc !important;
}

.ranking-table {
    width: fit-content;
    min-width: 400px;
    border-collapse: collapse;
    margin: 20px 0 30px 0;
/*     border: 2px solid #000; */
}

.ranking-table th,
.ranking-table td {
    border: 1px solid #000;
    padding: 10px 8px;
    text-align: left;
    font-size: 16px;
}

.ranking-table thead th {
    font-weight: 700;
}

.ranking-table thead tr:first-child th {
    text-align: left;
    font-size: 16px;
}

.detailed-review-list {
    margin-top: 20px;
}

.detailed-review-list h3 {
    font-size: 16px;
    font-weight: 1000;
    margin: 20px 0 10px 0;
}
.gaming-font h3{
	font-size: 25px;
    line-height: 35px;
    margin: 15px 0;
	font-weight: 1000;
}

.detailed-review-list ul {
    list-style-type: disc !important;
    padding-left: 35px !important;
    margin-bottom: 20px !important;
}

.detailed-review-list li {
    line-height: 24px !important;
    margin-bottom: 10px !important;
    font-size: 16px !important;
}

.games-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    border: 1px solid #ddd;
}

.games-table th,
.games-table td {
    padding: 12px 15px;
    border: 1px solid;
    text-align: left;
    font-size: 16px;
}

.games-table th {
    font-weight: 700;
}

.steps-list {
    margin-top: 20px;
}

.steps-list p {
        font-size: 16px;
    line-height: 36px;

}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border: 1px solid #000;
}

.comparison-table th,
.comparison-table td {
    border: 1px solid #000;
    padding: 12px 15px;
    text-align: center;
    font-size: 14px;
}

.comparison-table th {
    font-weight: 700;
}

.faq-section {
    margin-top: 20px;
}

.faq-section h3 {
    font-size: 25px;
    font-weight: 700;
    line-height: 35px;
    margin: 15px 0;
}

.faq-section p {
    font-size: 16px;
    line-height: 26px;
    /* margin-bottom: 20px; */
}
/* ================================
   Contact Form 7 – Custom Styling
================================ */

.wpcf7 {
    margin-top: 25px;
    padding-bottom: 25px;
}

/* Labels */
.wpcf7 label {
    display: block;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #000;
}

/* Required asterisk */
.wpcf7 .required,
.wpcf7 span.required {
    color: #d32f2f;
}

/* Inputs & textarea */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border: 1px solid #bdbdbd;
    border-radius: 4px;
    outline: none;
    margin-top: 6px;
    margin-bottom: 20px;
    box-sizing: border-box;
    background: #fff;
}

/* Focus state (blue border like screenshot) */
.wpcf7 input:focus,
.wpcf7 textarea:focus {
    border-color: #1976d2;
    box-shadow: 0 0 0 1px #1976d2;
}

/* Textarea height */
.wpcf7 textarea {
    min-height: 120px;
    resize: vertical;
}

/* Submit button */
.wpcf7 input[type="submit"] {
    background-color: #066aab;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 17px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

/* Hover */
.wpcf7 input[type="submit"]:hover {
    background-color: #155fa0;
}

/* Validation error */
.wpcf7-not-valid {
    border-color: #d32f2f !important;
}

/* Error message text */
.wpcf7-not-valid-tip {
    font-size: 12px;
    color: #d32f2f;
    margin-top: -15px;
    margin-bottom: 15px;
}

/* Success message */
.wpcf7-response-output {
    border: none;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 12px 15px;
    margin-top: 20px;
    font-size: 14px;
    border-radius: 4px;
}

/* Footer */
footer {
    background-color: #e0e0e0;
    padding: 30px 0;
}

.contact-footer a{
	color: #ba7906;
    text-decoration: underline;
}
.casino-list li{
        line-height: 36px;
            padding-bottom: 2px !important;
}
.vega-img img{
        background: #9C2602;
    border-radius: 5px;
}
.lizaro-img img{
    background: #3D2318;
    border-radius: 5px;
}
.robocat-img img{
    border-radius: 5px;
}
.first-casino {
    border: 3px solid #ffcb3f !important;
}
b{
	font-weight: 800;
}