/**
 * KOVAL Distillery - Main Stylesheet
 * Clean, minimal CSS without UIkit dependency
 */

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    --koval-black: #0f0f0f;
    --koval-gray: rgb(45, 46, 51);
    --koval-text: rgb(108, 109, 116);
    --koval-muted: rgb(153, 153, 153);
    --koval-light: #f7f7f7;
    --koval-border: #e5e5e5;
    --koval-teal: rgb(21, 77, 91);
    --koval-gold: #d4a574;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'PT Serif', Georgia, serif;
    font-size: 16px;
    line-height: 26px;
    color: var(--koval-text);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--koval-teal);
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 30px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.3;
    color: var(--koval-gray);
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

/* List with dividers (like uk-list-divider) */
.list-divider > li {
    padding: 10px 0;
    border-bottom: 1px solid var(--koval-border);
}

.list-divider > li:first-child {
    padding-top: 0;
}

.list-divider > li:last-child {
    border-bottom: none;
}

/* Partner cards */
.partner-card {
    text-align: center;
    margin-bottom: 60px;
}

.partner-card img {
    max-width: 200px;
    max-height: 200px;
    margin-bottom: 15px;
}

.partner-card strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    margin-bottom: 10px;
}

.partner-card p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--koval-muted);
}

/* Recipe cards */
.recipe-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.recipe-card {
    max-width: 350px;
    text-align: center;
}

.recipe-card img {
    width: 350px;
    height: auto;
    margin-bottom: 15px;
}

.recipe-card strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--koval-gray);
}

.recipe-card p {
    margin-bottom: 10px;
    font-size: 14px;
}

.recipe-card em {
    display: block;
    margin-top: 15px;
    font-size: 13px;
    color: var(--koval-muted);
}

/* Utility classes */
.text-center {
    text-align: center;
}

/* Contact page - inquiry cards */
.contact-info-center {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info-center p {
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    color: var(--koval-gray);
    text-decoration: none;
    display: inline-block;
}

.social-icons img {
    width: 20px;
    height: 20px;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.social-icons a:hover img {
    opacity: 1;
}

.inquiry-heading {
    text-align: center;
    font-size: 16px;
    margin-bottom: 25px;
}

.inquiry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .inquiry-grid {
        grid-template-columns: 1fr;
    }
}

.inquiry-card-wrapper {
    display: contents;
}

.inquiry-card {
    display: block;
    border: 1px solid #e5e5e5;
    padding: 25px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.inquiry-card:hover,
.inquiry-card.active {
    border-color: var(--koval-gray);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.inquiry-card strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--koval-gray);
}

.inquiry-card p {
    margin: 0;
    font-size: 14px;
    color: var(--koval-muted);
}

.inquiry-form {
    display: none;
    grid-column: 1 / -1;
    padding: 30px;
    border: 1px solid #e5e5e5;
    border-top: none;
    margin-top: -20px;
    margin-bottom: 20px;
}

.inquiry-form.active {
    display: block;
}

/* Contact form */
.contact-form-section {
    max-width: 600px;
    margin: 40px auto 0;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    flex: 1;
}

.contact-form .form-group.full-width {
    flex: 1 1 100%;
}

.contact-form label {
    display: block;
    font-size: 12px;
    color: var(--koval-muted);
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    font-family: inherit;
    font-size: 14px;
    background: transparent;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--koval-gray);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.contact-form .checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.contact-form .checkbox-label span {
    font-size: 14px;
}

.contact-form .checkbox-label small {
    color: var(--koval-muted);
}

.contact-form .btn {
    background: var(--koval-gray);
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form .btn:hover {
    background: #333;
}

p {
    margin: 0 0 1.25em 0;
}

/* ==========================================================================
   Layout - Container
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (min-width: 640px) {
    .container {
        padding: 0;
    }
}

@media (min-width: 960px) {
    .container {
        padding: 0;
    }
}

.container-small {
    max-width: 900px;
}

/* ==========================================================================
   Layout - Section
   ========================================================================== */
.section {
    display: flow-root;
    box-sizing: border-box;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* ==========================================================================
   Layout - Grid (Flexbox)
   ========================================================================== */
.grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -30px;
}

.grid > * {
    padding-left: 30px;
    width: 100%;
}

.grid img {
    max-width: 100%;
    height: auto;
}

.grid-large {
    margin-left: -40px;
}

.grid-large > * {
    padding-left: 40px;
}

/* Column widths */
.col-1-2 { width: 50%; }
.col-1-3 { width: 33.333%; }
.col-2-3 { width: 66.666%; }
.col-1-4 { width: 25%; }
.col-3-4 { width: 75%; }

/* Responsive - stack on mobile */
@media (max-width: 959px) {
    .col-1-2, .col-1-3, .col-2-3, .col-1-4, .col-3-4 {
        width: 100%;
    }
    .grid > * + * {
        margin-top: 30px;
    }
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header.sticky {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.navbar {
    display: flex;
    align-items: center;
    min-height: 80px;
}

.logo img {
    height: 27px;
    width: auto;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
    display: flex;
    align-items: center;
    margin-left: 270px;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--koval-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 0;
    display: block;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--koval-teal);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 15px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1001;
}

.nav-item:hover .dropdown,
.dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--koval-gray);
    padding: 8px 20px;
    display: block;
    transition: background 0.15s ease;
}

.dropdown-link:hover {
    color: var(--koval-teal);
    background: rgba(21, 77, 91, 0.05);
}

/* ==========================================================================
   Mobile Header
   ========================================================================== */
.header-mobile {
    display: none;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.mobile-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.mobile-logo img {
    height: 24px;
}

.mobile-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 24px;
    position: relative;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--koval-gray);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-toggle span:nth-child(3) { bottom: 0; }

/* Mobile menu open state */
.mobile-toggle.open span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.mobile-toggle.open span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.open span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Mobile Menu (Offcanvas) */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 1002;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 60px 20px 20px;
}

.mobile-menu.open {
    right: 0;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--koval-gray);
    padding: 15px 0;
    display: block;
    border-bottom: 1px solid var(--koval-border);
}

.mobile-nav-link:hover {
    color: var(--koval-teal);
}

@media (max-width: 959px) {
    .header {
        display: none;
    }
    .header-mobile {
        display: block;
    }
    .nav {
        margin-left: 0;
    }
}

/* ==========================================================================
   Typography
   ========================================================================== */

/* Page titles */
.page-title {
    font-size: 32px;
    margin-bottom: 15px;
}

@media (max-width: 959px) {
    .page-title {
        font-size: 26px;
    }
}

/* Page descriptions */
.page-description {
    font-size: 16px;
    line-height: 26px;
    max-width: 600px;
}

/* Main content area */
.page-content {
    font-size: 16px;
    line-height: 26px;
}

.page-content h2 {
    font-size: 24px;
    margin-top: 2.5em;
    margin-bottom: 1em;
}

.page-content h3 {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-content strong {
    color: var(--koval-gray);
}

.page-content a {
    color: var(--koval-teal);
    text-decoration: underline;
}

.page-content a:hover {
    color: var(--koval-gray);
}

.page-content ul, .page-content ol {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
    list-style: disc;
}

.page-content ol {
    list-style: decimal;
}

.page-content li {
    margin-bottom: 0.5em;
}

.page-content blockquote {
    border-left: 3px solid var(--koval-teal);
    padding-left: 1.5em;
    margin: 2em 0;
    font-style: italic;
}

/* Section title */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--koval-border);
}

/* ==========================================================================
   Media Row (image + text side by side)
   ========================================================================== */
.media-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.media-row img {
    flex-shrink: 0;
    max-width: 280px;
    height: auto;
}

.media-row p {
    margin: 0;
}

.media-row:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .media-row {
        flex-direction: column;
        gap: 20px;
    }
    .media-row img {
        max-width: 100%;
    }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 15px 30px;
    display: inline-block;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--koval-teal);
    color: #fff;
}

.btn-primary:hover {
    background: var(--koval-gray);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: var(--koval-gray);
    border: 1px solid var(--koval-border);
}

.btn-secondary:hover {
    border-color: var(--koval-teal);
    color: var(--koval-teal);
}

/* Link with underline */
.link-underline {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--koval-teal);
    border-bottom: 1px solid var(--koval-teal);
    padding-bottom: 2px;
}

.link-underline:hover {
    color: var(--koval-gray);
    border-bottom-color: var(--koval-gray);
}

/* ==========================================================================
   Product Cards
   ========================================================================== */
.product-card {
    background: #fff;
    transition: transform 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card-image {
    display: block;
    overflow: hidden;
    background: #f8f8f8;
    padding: 20px;
    text-align: center;
}

.product-card-image img {
    max-height: 300px;
    width: auto;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-body {
    padding: 20px 0;
}

.product-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-card-title a {
    color: var(--koval-gray);
}

.product-card-title a:hover {
    color: var(--koval-teal);
}

.product-card-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-card-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--koval-teal);
    border-bottom: 1px solid var(--koval-teal);
    padding-bottom: 2px;
}

.product-card-link:hover {
    color: var(--koval-gray);
    border-bottom-color: var(--koval-gray);
}

/* ==========================================================================
   Product Detail
   ========================================================================== */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.product-title-col {
    text-align: left;
}

.product-title-large {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.product-image-col {
    display: flex;
    justify-content: center;
}

.product-image-col .product-image {
    max-width: 100%;
    height: auto;
}

.product-content-col {
    padding-left: 20px;
}

@media (max-width: 959px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-title-col {
        text-align: center;
    }

    .product-title-large {
        font-size: 32px;
    }

    .product-content-col {
        padding-left: 0;
    }
}

.product-image {
    position: sticky;
    top: 100px;
    max-height: 600px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

@media (max-width: 959px) {
    .product-image {
        position: static;
        margin-bottom: 30px;
    }
}

.product-proof {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--koval-teal);
    margin-bottom: 30px;
}

/* Awards */
.awards-list {
    list-style: none;
}

.award-item {
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

/* Press */
.press-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.press-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--koval-muted);
}

/* ==========================================================================
   Error Page (404)
   ========================================================================== */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error-code {
    font-family: 'Montserrat', sans-serif;
    font-size: 120px;
    font-weight: 700;
    color: #e5e5e5;
    line-height: 1;
    margin: 0;
}

.error-title {
    font-size: 32px;
    margin: 20px 0;
}

.error-message {
    margin-bottom: 40px;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .error-code {
        font-size: 80px;
    }
    .error-title {
        font-size: 24px;
    }
    .error-actions {
        flex-direction: column;
    }
}

/* ==========================================================================
   Forms
   ========================================================================== */
.form-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--koval-gray);
    display: block;
    margin-bottom: 8px;
}

.form-label .required {
    color: var(--koval-teal);
}

.form-input {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 16px;
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid var(--koval-border);
    border-radius: 0;
    background: transparent;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    border-bottom-color: var(--koval-gray);
    outline: none;
}

textarea.form-input {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--koval-teal);
    color: #fff;
    border: none;
    padding: 15px 40px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.form-submit:hover {
    background: var(--koval-gray);
}

.form-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.form-message {
    padding: 15px 20px;
    margin-top: 20px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    padding: 40px 0;
}

.footer .container {
    padding: 0 40px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--koval-text);
}

.footer-nav-link:hover {
    color: var(--koval-teal);
}

.footer-divider {
    color: var(--koval-border);
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-social a {
    color: var(--koval-muted);
}

.footer-social a:hover {
    color: var(--koval-text);
}

.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: var(--koval-muted);
}

@media (max-width: 959px) {
    .footer {
        padding: 40px 0;
    }
    .footer .container {
        padding: 0 15px;
    }
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center { text-align: center; }
.text-muted { color: var(--koval-muted); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.border-rounded { border-radius: 4px; }

/* Hide on mobile */
@media (max-width: 959px) {
    .hide-mobile { display: none; }
}

/* Hide on desktop */
@media (min-width: 960px) {
    .hide-desktop { display: none; }
}

/* ==========================================================================
   Find KOVAL page
   ========================================================================== */
.ship-to-me-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.ship-to-me-image img {
    display: block;
    width: 300px;
    height: 300px;
    object-fit: contain;
    background: #fff;
}


.image-cards-row {
    display: flex;
    gap: 16px;
}

.image-cards-row .card-link {
    flex: 1;
}

@media (max-width: 960px) {
    .image-cards-row {
        flex-direction: column;
        max-width: 616px;
        margin: 0 auto;
    }
}

.image-card {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3 / 2;
}

@media (max-width: 768px) {
    .image-cards-row {
        flex-direction: column;
    }

    .image-cards-row .card-link {
        width: 100%;
    }
}

.image-card-content {
    text-align: center;
    color: #fff;
    padding: 15px 25px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.image-card-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0 0 10px;
}

.image-card-content p {
    font-size: 12px;
    letter-spacing: 1px;
    margin: 0;
    opacity: 0.9;
}

.card-link {
    text-decoration: none;
    display: block;
}

.card-link:hover .image-card-content {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 1);
}
