/* Custom styles for ΔΩΔΕΚΑΝΗΣΟΣ website */

/* Colors */
:root {
    --primary-color: #9e1b32; /* Byzantine red */
    --secondary-color: #bf9b30; /* Gold */
    --dark-color: #333;
    --light-color: #f8f9fa;
    --accent-color: #5d8aa8; /* Byzantine blue */
}

.byzantine-font a {
    color: #ffffff!important;
    text-decoration: unset!important;
}

/* Override Bootstrap primary color */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #7e1628;
    border-color: #7e1628;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

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

/* Typography */
body {
    font-family: 'Noto Serif', serif;
    color: var(--dark-color);
    background-color: #f5f5f5;
}

.byzantine-font {
    font-family: 'Noto Serif', serif;
    font-weight: 700;
}

/* Header */
.header-cross {
    font-size: 3rem;
    display: inline-block;
    color: var(--secondary-color);
}

/* Sidebar */
.sidebar {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.nav-link {
    color: var(--dark-color);
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.nav-link.active {
    background-color: var(--primary-color);
    color: white;
}

/* Ornamental designs */
.ornament-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
    width: 100%;
    margin: 1rem 0;
    position: relative;
}

.ornament-divider::before, .ornament-divider::after {
    content: "";
    color: var(--secondary-color);
    position: absolute;
    top: -12px;
    font-size: 1.2rem;
}

.ornament-divider::before {
    left: calc(50% - 15px);
}

.ornament-divider::after {
    right: calc(50% - 15px);
}

.ornament-divider-small {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
    width: 50%;
    margin: 0.5rem 0;
    position: relative;
}

/* Issue Cards */
.issue-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.pdf-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Year title in all_issues.php */
.year-title {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.year-title span {
    display: inline-block;
    position: relative;
    padding: 0 1rem;
    background-color: white;
}

.year-title:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    top: 50%;
    left: 0;
}

/* PDF Viewer */
.pdf-container {
    min-height: 600px;
    display: flex;
    justify-content: center;
    background-color: #f5f5f5;
    padding: 1rem;
}

canvas#pdf-viewer {
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    background-color: white;
}

/* Contact page */
.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-info {
    height: 100%;
}

/* About page */
.about-section h3 {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-cross {
        font-size: 2rem;
    }
    
    .pdf-container {
        min-height: 400px;
    }
}

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