/* Custom CSS for Casino Hotels Poland */

:root {
    --primary-gold: #ffc107;
    --dark-gold: #d39e00;
    --casino-dark: #1a1a1a;
    --casino-gray: #2c2c2c;
    --text-light: #f8f9fa;
}

/* Age Verification Modal */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    pointer-events: all;
}

.age-verification-modal {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.5s ease-out;
}

.age-verification-modal .modal-icon {
    color: var(--primary-gold);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.age-verification-modal h2 {
    color: var(--casino-dark);
    margin-bottom: 1rem;
}

.age-verification-modal .button-group {
    margin-top: 2rem;
}

.age-verification-modal .btn {
    margin: 0.5rem;
    min-width: 150px;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Content Blur Effect */
.content-blur {
    filter: blur(10px);
    transition: filter 0.3s ease;
    pointer-events: none;
    user-select: none;
}

.content-unblur {
    filter: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 80vh;
    position: relative;
    overflow: hidden;
    margin-top: -1px; /* Remove gap between navbar and hero */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://pixabay.com/get/gc5d9e2f71ffa64dd68a3d4fc229da1c9e8d1b52ecc4d35e29c6ec682bfde718cdce2d7dcc07777140c1f28bc1061ab8c59ec922b081a29b946e906bd32f22766_1280.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Navigation */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--primary-gold);
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Hotel Cards */
.hotel-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hotel-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.1);
}

.hotel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.hotel-rating {
    color: var(--primary-gold);
}

.hotel-content {
    padding: 1.5rem;
}

.hotel-features .badge {
    font-size: 0.75rem;
}

/* Amenity Cards */
.amenity-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-3px);
}

.amenity-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Reason Items */
.reason-item {
    display: flex;
    align-items: flex-start;
}

.reason-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

/* Hotel Detail Pages */
.hotel-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    display: flex;
    align-items: center;
}

.section-title {
    color: var(--casino-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-gold);
    display: inline-block;
}

.hotel-section {
    margin-bottom: 3rem;
}

.feature-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    height: 100%;
    border-left: 4px solid var(--primary-gold);
}

.feature-box h5 {
    color: var(--casino-dark);
    margin-bottom: 1rem;
}

.feature-box ul {
    margin-bottom: 0;
}

/* Service Cards */
.service-card {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    height: 100%;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h6 {
    color: var(--casino-dark);
    margin-bottom: 1rem;
}

.service-card ul {
    text-align: left;
    margin-bottom: 0;
}

/* Sidebar */
.hotel-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.sidebar-card h5 {
    color: var(--casino-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

/* Room Types */
.room-type {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-gold);
}

.room-type h6 {
    color: var(--casino-dark);
    margin-bottom: 0.5rem;
}

.room-features {
    margin-top: 0.5rem;
}

/* Contact Info */
.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

/* Culture Stats */
.culture-stat {
    padding: 1.5rem;
}

.culture-stat h5 {
    color: var(--casino-dark);
    font-weight: bold;
    margin: 1rem 0 0.5rem 0;
}

/* Activity Cards */
.activity-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-3px);
}

.activity-card h6 {
    color: var(--casino-dark);
    margin-bottom: 0.5rem;
}

/* Location Features */
.location-feature {
    text-align: center;
}

.location-feature img {
    height: 150px;
    width: 100%;
    object-fit: cover;
}

.location-feature h6 {
    color: var(--casino-dark);
    margin-bottom: 0.5rem;
}

/* Package Items */
.package-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.package-item:last-child {
    border-bottom: none;
}

.package-item h6 {
    margin-bottom: 0.5rem;
}

/* Promotion Items */
.promotion-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.promotion-item:last-child {
    border-bottom: none;
}

.promotion-item h6 {
    margin-bottom: 0.25rem;
}

/* Feature Highlights */
.feature-highlight {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.feature-highlight:last-child {
    margin-bottom: 0;
}

/* Attraction Items */
.attraction-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.attraction-item:last-child {
    border-bottom: none;
}

/* Season Info */
.season-info {
    margin-bottom: 1rem;
}

.season-info:last-child {
    margin-bottom: 0;
}

.season-info strong {
    color: var(--casino-dark);
    display: block;
    margin-bottom: 0.25rem;
}

/* Rewards Info */
.rewards-info {
    border: 1px solid #e9ecef;
}

.rewards-info h6 {
    color: var(--casino-dark);
    margin-bottom: 1rem;
}

/* Footer Styling */
footer {
    background: var(--casino-dark) !important;
}

footer h5 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

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

.social-links a {
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-gold) !important;
}

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

.btn-warning:hover {
    background-color: var(--dark-gold);
    border-color: var(--dark-gold);
    color: var(--casino-dark);
    transform: translateY(-2px);
}

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

.btn-outline-warning:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--casino-dark);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }
    
    .hotel-hero {
        height: 40vh;
    }
    
    .hero-overlay .display-4 {
        font-size: 2rem;
    }
    
    .hotel-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .age-verification-modal {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .age-verification-modal .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
        min-width: auto;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-gold);
}

/* Legal Pages Styling */
.legal-section {
    margin-bottom: 2rem;
}

.legal-section h2 {
    color: var(--casino-dark);
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.legal-section h4 {
    color: var(--casino-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-bottom: 1rem;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
}

.contact-details {
    border-left: 4px solid var(--primary-gold);
}

.list-styled {
    padding-left: 0;
}

.list-styled li {
    list-style: none;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.list-styled li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    top: 0;
}

/* About and Contact Pages */
.content-section {
    margin-bottom: 3rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    height: 100%;
    transition: box-shadow 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-item h5 {
    color: var(--casino-dark);
    margin-bottom: 1rem;
}

.fact-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.fact-item:last-child {
    border-bottom: none;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.hours-item {
    margin-bottom: 1rem;
}

.hours-item:last-child {
    margin-bottom: 0;
}

.social-buttons a {
    text-decoration: none;
}

/* Footer Links */
.footer-links a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold) !important;
}

/* Cookie Preferences */
.cookie-preferences {
    border: 1px solid #e9ecef;
}

.cookie-preferences .form-check {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    height: 100%;
}

.cookie-preferences .form-check-label {
    cursor: pointer;
}

/* Responsive adjustments for legal pages */
@media (max-width: 768px) {
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .sidebar-content {
        margin-top: 2rem;
    }
}
