/* Custom Styles for Aslantürkler Website (Light Theme) */

/* Define custom fonts and colors from the logo */
:root {
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --brand-red: #d81e05; /* Extracted from the logo's triangle */
    --text-dark: #343a40; /* A slightly softer black for text */
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
}

.content-wrapper-light {
    max-width: 700px;
    /* Optional: a subtle shadow to lift the content off the page */
    /* box-shadow: 0px 10px 30px -15px rgba(0,0,0,0.1); */
}

.logo-img {
    max-width: 300px; /* Adjust size as needed */
    height: auto;
}

.main-heading {
    font-family: var(--font-heading);
    color: var(--brand-red);
    font-size: 2.2rem;
    font-weight: 700;
}

.separator {
    width: 80px;
    height: 4px;
    margin: 2rem auto;
    background-color: var(--brand-red);
    opacity: 1;
    border: none;
}

.contact-info p {
    font-size: 1.1rem;
}

.contact-info .fas { /* Font Awesome icons */
    color: var(--brand-red);
}






/* --- Catalog Page (qr.html) Styles --- */

.page-title {
    font-family: var(--font-heading);
    color: var(--text-dark);
}

.catalog-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out; /* We only transition the shadow now */
    text-decoration: none;
}

/* A simpler hover effect */
.catalog-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.catalog-item img {
    width: 100%;
    /* We use aspect-ratio for a modern, responsive approach without fixed height */
    aspect-ratio: 4 / 3;
    object-fit: contain;
}

.catalog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.catalog-item:hover .catalog-overlay {
    opacity: 1;
}

.overlay-content {
    color: #fff;
}
.overlay-content h5 {
    font-family: var(--font-heading);
    margin-bottom: 0.25rem;
}
.overlay-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}
