/* Define custom color and design variables for easy updates */
:root {
    --cassiopeia-color-primary: #00000; /* Primary color */
    --color-primary: var(--cassiopeia-color-primary); 
    --color-secondary: #3d3e37; /* Indigo */
    --color-light: #f8f9fa; /* Light background */
    --color-dark: #212529; /* Dark text */
    --color-link: #f90d0d; /* Link color */
    --color-link-hover: #ffab0c; /* Link hover */

    /* Banner settings */
    --banner-background: #0e8dc2; /* Banner background */
    --banner-text-color: #ffffff; /* Banner text */

    /* Font settings */
    --font-family: 'Arial', sans-serif;
    --font-size-base: 16px;
}

/* Header gradient background */
.container-header {
    z-index: 10;
    background: linear-gradient(140deg, #6b8bb3 0%, #00824d 100%);
    position: relative;
    box-shadow: inset 0 5px 5px rgba(0, 0, 0, 0.08);
}

/* Banner styling */
.container-banner {
    background: linear-gradient(#c03a3a, #f4cd45 0%, #c03a3a 40%, #6b8bb3 100%);
    color: var(--banner-text-color);
    text-align: center;
    padding: 1em;
}

.container-banner .banner-overlay .overlay {
    background-color: transparent;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 1em;
    color: var(--banner-text-color);
}

/* Body styling */
body {
    background-color: var(--color-light);
    color: var(--color-dark);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
}

/* Link styling */
a {
    color: var(--color-link);
    text-decoration: none;
}

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

/* Button styling */
.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

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

/* Heading styles */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-primary);
    font-family: var(--font-family);
}

/* Gallery styles */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    padding: 10px;
}

.gallery-item {
    overflow: hidden;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* Front Image (Main Top) Styling */
.main-top img {
    width: 100%;
    height: auto;
    object-fit: cover;
    padding: 0;
    margin: 0;
    max-height: 600px;
}

.main-top {
    padding: 0;
    margin: 0;
    height: auto;
    background-size: cover;
    background-position: center;
}

.main-top .mod-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Adjust height as needed */
}

/* Ignite Gallery Fix for Mobile */
.ignite-description {
    white-space: normal;
    word-wrap: break-word;
    overflow: visible;
    text-overflow: ellipsis;
    max-width: 100%;
    font-size: 14px;
    padding: 10px;
}

.ignite-image-container {
    width: 100%;
    height: auto;
    overflow: hidden;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .ignite-description {
        font-size: 12px;
        line-height: 1.4;
    }
}
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Alegreya:wght@100..900&display=swap');

/* Global Font Style */
body {
    font-family: "Alegreya", sans-serif; /* Use Alegreya as the default font */
    font-weight: 300; /* Slim weight for body text */
    font-style: normal;
}

/* Heading Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: "Alegreya", sans-serif; /* Consistent font for headings */
    font-weight: 700; /* Bold weight for headings */
}

/* Paragraph Styles */
p {
    font-family: "Alegreya", sans-serif; /* Use the same font for paragraphs */
    font-weight: 400; /* Regular weight for readability */
}

/* Custom Class Example */
.roboto-condensed-highlight {
    font-family: "Alegreya", sans-serif;
    font-weight: 600; /* Semi-bold for emphasis */
    font-style: italic; /* Italics for added style */
}

/* Optional: Additional Styles for Specific Elements */
.navbar, .footer {
    font-family: "Alegreya", sans-serif;
    font-weight: 500; /* Medium weight for navigation and footer text */
}
