/* Global Custom CSS for OvooArt */

/* Dark Mode Overrides */
html.dark {
    background-color: #121212 !important;
    color: #e5e5e5 !important;
}

html.dark body {
    background-color: #121212 !important;
    color: #e5e5e5 !important;
}

html.dark .bg-background-primary {
    background-color: #121212 !important;
}

/* Typography Dark Mode Overrides */
html.dark .text-text-primary, 
html.dark .text-black,
html.dark .text-primary,
html.dark .text-on-surface,
html.dark .text-on-background,
html.dark .text-on-surface-variant {
    color: #e5e5e5 !important;
}

html.dark .text-on-primary {
    color: #121212 !important;
}

/* Background Dark Mode Overrides */
html.dark .bg-surface-container-low {
    background-color: #1e1e1e !important;
}
html.dark .bg-surface-container {
    background-color: #1a1a1a !important;
}

/* Border Dark Mode Overrides */
html.dark .border-border-subtle {
    border-color: #333333 !important;
}
html.dark .border-primary,
html.dark .border-black {
    border-color: #e5e5e5 !important;
}
html.dark .border-outline-variant {
    border-color: #333333 !important;
}

/* UI Elements */
html.dark nav {
    background-color: #121212 !important;
    border-color: #333333 !important;
}

/* İletişim Form Elements Dark Mode */
html.dark input, 
html.dark textarea {
    border-color: #e5e5e5 !important;
    color: #e5e5e5 !important;
}

html.dark button.bg-black {
    background-color: #e5e5e5 !important;
    color: #121212 !important;
}

html.dark button.bg-black:hover {
    background-color: #cccccc !important;
}

/* Harita Alanı Dark Mode */

/* Google Maps Iframe Invert */
html.dark iframe[src*="google.com/maps"] {
    filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(85%);
}

/* ==========================================================================
   Semantic Classes (Refactored from inline Tailwind CSS)
   ========================================================================== */

.hero-heading {
    font-family: Inter, sans-serif;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 400;
    color: #000000;
    text-transform: uppercase;
}

html.dark .hero-heading {
    color: #e5e5e5;
}

.card-img-container {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    background-color: #f3f3f4;
}

html.dark .card-img-container {
    background-color: #1e1e1e;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.group:hover .card-img {
    opacity: 0.7;
}

.meta-text {
    font-family: Inter, sans-serif;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 400;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

html.dark .meta-text {
    color: #e5e5e5;
}

.card-title {
    font-family: Inter, sans-serif;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 400;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

html.dark .card-title {
    color: #e5e5e5;
}

.card-desc {
    font-family: Inter, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
    color: #000000;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

html.dark .card-desc {
    color: #e5e5e5;
}

.footer-link {
    font-size: 14px;
    color: #000000;
    letter-spacing: 0em;
    transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link:hover {
    opacity: 0.6;
}

html.dark .footer-link {
    color: #e5e5e5;
}

/* Layout Semantic Classes */
.main-container {
    flex-grow: 1;
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 80px;
    padding-bottom: 80px;
}
@media (min-width: 768px) {
    .main-container {
        padding-left: 60px;
        padding-right: 60px;
    }
}

.page-header {
    margin-bottom: 4rem;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 2rem;
}
html.dark .page-header {
    border-bottom-color: #333333;
}

.grid-layout-2 {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    column-gap: 40px;
    row-gap: 80px;
}
@media (min-width: 768px) {
    .grid-layout-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.grid-layout-3 {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    column-gap: 40px;
    row-gap: 80px;
}
@media (min-width: 768px) {
    .grid-layout-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 1024px) {
    .grid-layout-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    font-family: Inter, sans-serif;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 400;
    color: #000000;
}
html.dark .filter-container {
    color: #e5e5e5;
}

.nav-bar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    border-bottom: 1px solid #eeeeee;
    background-color: #ffffff;
    z-index: 50;
    transition: background-color 500ms cubic-bezier(0.4, 0, 0.2, 1), border-color 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
html.dark .nav-bar {
    background-color: #121212 !important;
    border-bottom-color: #333333 !important;
}

/* Button Semantic Classes */
.btn-primary-large {
    background-color: #000000;
    color: #ffffff;
    font-family: Inter, sans-serif;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0em;
    padding: 1rem 3rem;
    transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary-large:hover {
    opacity: 0.8;
}
html.dark .btn-primary-large {
    background-color: #e5e5e5;
    color: #121212;
}

.btn-primary-full {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #000000;
    color: #ffffff;
    font-family: Inter, sans-serif;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0em;
    padding: 1rem 1.5rem;
    transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary-full:hover {
    opacity: 0.8;
}
html.dark .btn-primary-full {
    background-color: #e5e5e5;
    color: #121212;
}

.btn-outline-full {
    display: block;
    width: 100%;
    text-align: center;
    border: 1px solid #000000;
    color: #000000;
    font-family: Inter, sans-serif;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0em;
    padding: 1rem 1.5rem;
    transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-outline-full:hover {
    background-color: #f3f3f4;
}
html.dark .btn-outline-full {
    border-color: #e5e5e5;
    color: #e5e5e5;
}
html.dark .btn-outline-full:hover {
    background-color: #1e1e1e;
    color: #ffffff;
}

.grid-layout-4 {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    column-gap: 40px;
    row-gap: 64px;
}
@media (min-width: 768px) {
    .grid-layout-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 1024px) {
    .grid-layout-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.nav-link {
    font-family: Inter, sans-serif;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 400;
    color: #000000;
    transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover {
    color: #000000;
    opacity: 0.6;
}
html.dark .nav-link {
    color: #e5e5e5;
}

.nav-link-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: Inter, sans-serif;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 400;
    text-transform: uppercase;
    color: #000000;
    transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link-icon:hover {
    color: #000000;
}
html.dark .nav-link-icon {
    color: #e5e5e5;
}
/* Base Page Layout */
.page-body {
    background-color: #ffffff;
    color: #000000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 70px;
    transition: background-color 500ms cubic-bezier(0.4, 0, 0.2, 1), color 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
html.dark .page-body {
    background-color: #1a1c1c;
    color: #e5e5e5;
}

/* Header Elements */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}
@media (min-width: 768px) {
    .nav-container {
        padding-left: 60px;
        padding-right: 60px;
    }
}

.nav-logo {
    font-family: Inter, sans-serif;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0em;
}

.nav-links-wrapper {
    display: none;
    align-items: center;
    height: 100%;
    gap: 2rem;
}
@media (min-width: 768px) {
    .nav-links-wrapper {
        display: flex;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: Inter, sans-serif;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0em;
}

.theme-toggle-btn {
    color: #000000;
    transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.theme-toggle-btn:hover {
    opacity: 0.6;
}
html.dark .theme-toggle-btn {
    color: #e5e5e5;
}

/* Footer Elements */
.page-footer {
    width: 100%;
    border-top: 1px solid #eeeeee;
    margin-top: 5rem;
    background-color: #ffffff;
}
html.dark .page-footer {
    border-top-color: #333333;
    background-color: #1a1c1c;
}

.footer-grid-container {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 3rem;
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 4rem 24px;
}
@media (min-width: 768px) {
    .footer-grid-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-left: 60px;
        padding-right: 60px;
    }
}
@media (min-width: 1024px) {
    .footer-grid-container {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-heading {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 0.5rem;
    letter-spacing: 0em;
}
html.dark .footer-heading {
    color: #e5e5e5;
}

.footer-text {
    font-size: 14px;
    color: #000000;
    line-height: 1.625;
    letter-spacing: 0em;
}
html.dark .footer-text {
    color: #e5e5e5;
}

.footer-bottom-bar {
    border-top: 1px solid #eeeeee;
}
html.dark .footer-bottom-bar {
    border-top-color: #333333;
}

.footer-bottom-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem 24px;
}
@media (min-width: 768px) {
    .footer-bottom-container {
        flex-direction: row;
        padding-left: 60px;
        padding-right: 60px;
    }
}

.footer-label {
    font-family: Inter, sans-serif;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 400;
    color: #000000;
    letter-spacing: 0em;
}
html.dark .footer-label {
    color: #e5e5e5;
}

.footer-social-wrapper {
    display: flex;
    gap: 2rem;
}

.footer-social-link {
    font-family: Inter, sans-serif;
    font-size: 11px;
    line-height: 1.4;
/* Base Page Layout */
.page-body {
    background-color: #ffffff;
    color: #000000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 70px;
    transition: background-color 500ms cubic-bezier(0.4, 0, 0.2, 1), color 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
html.dark .page-body {
    background-color: #1a1c1c;
    color: #e5e5e5;
}

/* Header Elements */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}
@media (min-width: 768px) {
    .nav-container {
        padding-left: 60px;
        padding-right: 60px;
    }
}

.nav-logo {
    font-family: Inter, sans-serif;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0em;
}

.nav-links-wrapper {
    display: none;
    align-items: center;
    height: 100%;
    gap: 2rem;
}
@media (min-width: 768px) {
    .nav-links-wrapper {
        display: flex;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: Inter, sans-serif;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0em;
}

.theme-toggle-btn {
    color: #000000;
    transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.theme-toggle-btn:hover {
    opacity: 0.6;
}
html.dark .theme-toggle-btn {
    color: #e5e5e5;
}

/* Footer Elements */
.page-footer {
    width: 100%;
    border-top: 1px solid #eeeeee;
    margin-top: 5rem;
    background-color: #ffffff;
}
html.dark .page-footer {
    border-top-color: #333333;
    background-color: #1a1c1c;
}

.footer-grid-container {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 3rem;
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 4rem 24px;
}
@media (min-width: 768px) {
    .footer-grid-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-left: 60px;
        padding-right: 60px;
    }
}
@media (min-width: 1024px) {
    .footer-grid-container {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-heading {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 0.5rem;
    letter-spacing: 0em;
}
html.dark .footer-heading {
    color: #e5e5e5;
}

.footer-text {
    font-size: 14px;
    color: #000000;
    line-height: 1.625;
    letter-spacing: 0em;
}
html.dark .footer-text {
    color: #e5e5e5;
}

.footer-bottom-bar {
    border-top: 1px solid #eeeeee;
}
html.dark .footer-bottom-bar {
    border-top-color: #333333;
}

.footer-bottom-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem 24px;
}
@media (min-width: 768px) {
    .footer-bottom-container {
        flex-direction: row;
        padding-left: 60px;
        padding-right: 60px;
    }
}

.footer-label {
    font-family: Inter, sans-serif;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 400;
    color: #000000;
    letter-spacing: 0em;
}
html.dark .footer-label {
    color: #e5e5e5;
}

.footer-social-wrapper {
    display: flex;
    gap: 2rem;
}

.footer-social-link {
    font-family: Inter, sans-serif;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 400;
    color: #000000;
    letter-spacing: 0em;
    transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-social-link:hover {
    color: #000000;
    opacity: 0.6;
}
html.dark .footer-social-link {
    color: #e5e5e5;
}

.lang-separator {
    color: #000000;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}
html.dark .lang-separator {
    color: #e5e5e5;
}

.lang-inactive {
    color: #000000;
    opacity: 0.5;
}
html.dark .lang-inactive {
    color: #e5e5e5;
}
