/* Modal and Cookie Consent Styles */

/* Age Verification Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #2c1620;
    margin: 10% auto;
    padding: 0;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.4s ease;
}

.modal-header {
    background-color: #ff3b5c;
    padding: 15px 20px;
    border-radius: 10px 10px 0 0;
}

.modal-header h2 {
    margin: 0;
    color: white;
    font-size: 1.5rem;
    text-align: center;
}

.modal-body {
    padding: 20px;
    color: #fff;
}

.modal-body p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.modal-body a {
    color: #ff3b5c;
    text-decoration: none;
}

.modal-body a:hover {
    text-decoration: underline;
}

.modal-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn-primary, .btn-secondary {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: #4CAF50;
    color: white;
    flex-grow: 1;
    margin-left: 10px;
}

.btn-secondary {
    background-color: #f44336;
    color: white;
    flex-grow: 1;
    margin-right: 10px;
}

.btn-primary:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

.btn-secondary:hover {
    background-color: #d32f2f;
    transform: translateY(-2px);
}

/* Cookie Consent Banner */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(28, 11, 20, 0.95);
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: slideUp 0.5s ease;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cookie-content p {
    color: #fff;
    margin: 0;
    padding: 10px 0;
    flex: 1;
    min-width: 200px;
}

.cookie-content a {
    color: #ff3b5c;
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.btn-cookie {
    background-color: #ff3b5c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-left: 20px;
}

.btn-cookie:hover {
    background-color: #e0354f;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 15% auto;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .btn-secondary {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .btn-primary {
        margin-left: 0;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .btn-cookie {
        margin: 10px 0 0 0;
        width: 100%;
    }
} 