/* Custom CSS for Seguridadofficialcasinositeco */

:root {
    --dark-bg: #1a1a1a;
    --dark-card: #2c2c2c;
    --gold-color: #FFD700;
    --red-color: #DC3545;
    --light-text: #f0f0f0;
    --muted-text: #a0a0a0;
    --primary-btn-bg: var(--gold-color);
    --primary-btn-hover-bg: #e6c200;
    --secondary-btn-bg: #4a4a4a;
    --secondary-btn-hover-bg: #5a5a5a;
    --success-btn-bg: #28a745;
    --success-btn-hover-bg: #218838;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--light-text);
    font-weight: 600;
}

a {
    color: var(--gold-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--red-color);
}

.text-gold {
    color: var(--gold-color) !important;
}

.text-red {
    color: var(--red-color) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-btn-bg);
    border-color: var(--primary-btn-bg);
    color: var(--dark-bg);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-btn-hover-bg);
    border-color: var(--primary-btn-hover-bg);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-outline-gold {
    color: var(--gold-color);
    border-color: var(--gold-color);
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover, .btn-outline-gold.active {
    color: var(--dark-bg);
    background-color: var(--gold-color);
    border-color: var(--gold-color);
}

.btn-success {
    background-color: var(--success-btn-bg);
    border-color: var(--success-btn-bg);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: var(--success-btn-hover-bg);
    border-color: var(--success-btn-hover-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Header */
header {
    background-color: rgba(0, 0, 0, 0.8);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

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

.nav-link {
    padding: 0.5rem 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--gold-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('photos/uploads/casino-background_8.jpg') no-repeat center center/cover;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Adjust for fixed header */
}

.hero-section h1 {
    color: var(--gold-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    color: var(--light-text);
}

/* Casino Rating List */
.casino-rating-list {
    background-color: var(--dark-bg);
}

.casino-card {
    background-color: var(--dark-card);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.casino-logo {
    max-width: 150px;
    height: auto;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.casino-card .card-body {
    padding: 1.5rem;
}

.casino-card .rating .bi-star-fill, .casino-card .rating .bi-star-half {
    color: var(--gold-color);
}

.casino-card .rating .bi-star {
    color: var(--muted-text);
}

/* Exclusive Bonuses */
.exclusive-bonuses {
    background-color: var(--dark-card);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.carousel-item img {
    max-height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.8));
}

.carousel-indicators [data-bs-target] {
    background-color: var(--gold-color);
    opacity: 0.7;
}

.carousel-indicators .active {
    opacity: 1;
}

/* User Reviews Section */
.user-reviews-section {
    background-color: var(--dark-bg);
}

.review-form-card, .review-card {
    background-color: var(--dark-card);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
}

.review-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.rating-stars .star-icon {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--muted-text);
    transition: color 0.2s ease;
}

.rating-stars .star-icon.selected, .rating-stars .star-icon:hover {
    color: var(--gold-color);
}

.form-control {
    background-color: #3a3a3a;
    border: 1px solid #555;
    color: var(--light-text);
}

.form-control::placeholder {
    color: var(--muted-text);
}

.form-control:focus {
    color: var(--light-text) !important;
    background-color: #4a4a4a;
    border-color: var(--gold-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}

.invalid-feedback {
    color: var(--red-color);
}

/* Informative Articles */
.informative-articles {
    background-color: var(--dark-bg);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.article-card {
    background-color: var(--dark-card);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.article-card img {
    height: 200px;
    object-fit: cover;
}

.article-card .badge {
    background-color: var(--secondary-btn-bg);
    color: var(--light-text);
}

/* Contact Section */
.contact-section {
    background-color: var(--dark-card);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-card {
    background-color: var(--dark-bg);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: var(--gold-color);
}

/* Disclaimer Block */
.disclaimer-block {
    background-color: #330000; /* Dark red background */
    border-top: 3px solid var(--red-color);
    border-bottom: 3px solid var(--red-color);
    padding: 2rem 0;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.disclaimer-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 215, 0, 0.05),
        rgba(255, 215, 0, 0.05) 10px,
        transparent 10px,
        transparent 20px
    );
    opacity: 0.1;
    z-index: 0;
}

.disclaimer-block .container {
    position: relative;
    z-index: 1;
}

.disclaimer-icon {
    font-size: 3rem;
    color: var(--gold-color);
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    from { transform: scale(1); opacity: 1; }
    to { transform: scale(1.05); opacity: 0.8; }
}

.disclaimer-title {
    color: var(--gold-color);
    font-weight: 700;
}

.disclaimer-block p {
    color: var(--light-text);
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: #0d0d0d;
    color: var(--light-text);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-logo {
    height: 60px;
}

.footer-link {
    word-break: break-all;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--gold-color) !important;
}

.social-icons a {
    font-size: 1.5rem;
}

.footer-logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Space between logos */
    padding: 15px 0;
}

.footer-org-logo {
    width: 100%;
    max-width: 120px; /* Adjusted based on 4 images */
    height: auto;
    display: block;
    filter: none; /* Ensure no grayscale */
}

.age-restriction-logo {
    max-width: 60px;
    height: auto;
}

.carousel-indicators {
    bottom: -48px !important;
}

/* Cookie Consent Modal Styles */
.cookie-modal-content {
    background-color: var(--dark-card);
    color: var(--light-text);
    border: 1px solid var(--gold-color);
    border-radius: 10px;
}

.cookie-modal-content .modal-header {
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.cookie-modal-content .modal-footer {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.cookie-modal-content .form-check-input:checked {
    background-color: var(--gold-color);
    border-color: var(--gold-color);
}

.cookie-modal-content .btn-primary {
    background-color: var(--gold-color);
    border-color: var(--gold-color);
    color: var(--dark-bg);
}

.cookie-modal-content .btn-primary:hover {
    background-color: var(--primary-btn-hover-bg);
    border-color: var(--primary-btn-hover-bg);
}

.cookie-modal-content .btn-secondary {
    background-color: var(--secondary-btn-bg);
    border-color: var(--secondary-btn-bg);
}

.cookie-modal-content .btn-secondary:hover {
    background-color: var(--secondary-btn-hover-bg);
    border-color: var(--secondary-btn-hover-bg);
}

.cookie-modal-content .btn-outline-light {
    color: var(--light-text);
    border-color: var(--light-text);
}

.cookie-modal-content .btn-outline-light:hover {
    color: var(--dark-bg);
    background-color: var(--light-text);
    border-color: var(--light-text);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section .row {
        flex-direction: column-reverse; /* Image above text on small screens */
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .casino-card .row {
        flex-direction: column;
    }

    .casino-card .col-md-3, .casino-card .col-md-9 {
        text-align: center !important;
    }

    .casino-logo {
        margin-bottom: 1rem;
    }

    .carousel-item .row {
        flex-direction: column;
    }

    .carousel-item img {
        margin-bottom: 1rem;
    }

    .footer-logos-container {
        gap: 10px;
    }

    .footer-org-logo {
        max-width: 100px;
    }

    .age-restriction-logo {
        max-width: 50px;
    }
}/* Section specific styles for .trustPillarUnit */
.trustPillarUnit {
    padding-top: 4rem;    /* Top padding for the section */
    padding-bottom: 4rem; /* Bottom padding for the section */
    /* Assuming content within will be constrained by a Bootstrap .container or similar.
       If not, consider adding max-width and margin: auto; for content centering. */
}

/* Heading styles within .trustPillarUnit */
.trustPillarUnit h1 {
    font-size: 2.2rem;     /* Font size for H1 */
    margin-bottom: 1.2rem; /* Bottom margin */
    line-height: 1.2;      /* Line height for better readability */
    font-weight: 700;      /* Bold font weight */
}

.trustPillarUnit h2 {
    font-size: 1.9rem;     /* Font size for H2 */
    margin-bottom: 1.1rem; /* Bottom margin */
    line-height: 1.3;      /* Line height */
    font-weight: 600;      /* Semi-bold font weight */
}

.trustPillarUnit h3 {
    font-size: 1.6rem;     /* Font size for H3 */
    margin-bottom: 1rem;   /* Bottom margin */
    line-height: 1.4;      /* Line height */
    font-weight: 600;      /* Semi-bold font weight */
}

.trustPillarUnit h4 {
    font-size: 1.3rem;     /* Font size for H4 */
    margin-bottom: 0.9rem; /* Bottom margin */
    line-height: 1.5;      /* Line height */
    font-weight: 500;      /* Medium font weight */
}

.trustPillarUnit h5 {
    font-size: 1.1rem;     /* Font size for H5 */
    margin-bottom: 0.8rem; /* Bottom margin */
    line-height: 1.6;      /* Line height */
    font-weight: 500;      /* Medium font weight */
}

/* Paragraph styles within .trustPillarUnit */
.trustPillarUnit p {
    font-size: 1.1rem;     /* Font size for paragraphs */
    margin-bottom: 1.5rem; /* Bottom margin for paragraphs */
    line-height: 1.8;      /* Line height for enhanced readability */
}

/* Unordered list styles within .trustPillarUnit */
.trustPillarUnit ul {
    list-style-type: disc; /* Default disc bullet points */
    margin-bottom: 1.5rem; /* Bottom margin for the entire list */
    padding-left: 25px;    /* Left padding for indentation of list items */
}

/* List item styles within .trustPillarUnit */
.trustPillarUnit li {
    font-size: 1.1rem;     /* Font size for individual list items */
    margin-bottom: 0.7rem; /* Bottom margin for spacing between list items */
    line-height: 1.6;      /* Line height for list items */
}
