/* KahveMakineleri.com — Ana Stil Dosyası */

:root {
    --primary-gradient: linear-gradient(135deg, #8B5A2B 0%, #5C3A21 100%);
    --secondary-gradient: linear-gradient(135deg, #D2B48C 0%, #8B5A2B 100%);
    --dark-bg: #12100E;
    --card-glass: rgba(255, 255, 255, 0.08);
    --card-glass-border: rgba(255, 255, 255, 0.12);
    --gold-accent: #E5A93C;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #FAF6F0;
    color: #2C2520;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Glassmorphism Navbar */
.premium-nav {
    background: rgba(18, 16, 14, 0.9) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 169, 60, 0.2);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #FFF, var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-nav .nav-link {
    font-weight: 500;
    color: #E2DCD5 !important;
    transition: color 0.2s ease;
    font-size: 14px;
}

.premium-nav .nav-link:hover {
    color: var(--gold-accent) !important;
}

@media (min-width: 992px) {
    .premium-nav .nav-link {
        font-size: 13px;
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
}

@media (min-width: 992px) and (max-width: 1220px) {
    .navbar-brand {
        font-size: 1.15rem !important;
    }

    .premium-nav .nav-link {
        font-size: 11px;
        padding-left: 4px !important;
        padding-right: 4px !important;
    }

    .navbar-nav {
        margin-left: 5px !important;
    }

    .premium-nav .nav-link i {
        margin-right: 2px !important;
    }
}

/* Premium Buttons */
.btn-premium {
    background: var(--primary-gradient);
    color: #FFF;
    border: none;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(139, 90, 43, 0.3);
    transition: all 0.3s ease;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 90, 43, 0.5);
    color: #FFF;
}

.btn-gold {
    background: linear-gradient(135deg, #E5A93C 0%, #C48E2E 100%);
    color: #12100E;
    border: none;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(229, 169, 60, 0.4);
    color: #12100E;
}

/* Footer styling */
footer {
    background: linear-gradient(180deg, #12100E 0%, #1A1613 100%);
    color: #E2DCD5;
    border-top: 3px solid var(--gold-accent);
}

footer .text-muted {
    color: #B8B0A8 !important;
}

footer a {
    color: #B8B0A8 !important;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--gold-accent) !important;
    text-decoration: underline !important;
}

footer .input-group .form-control {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: #FFF !important;
}

footer .input-group .form-control::placeholder {
    color: #7A746E !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #12100E;
}

::-webkit-scrollbar-thumb {
    background: #8B5A2B;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-accent);
}

/* 2 Line Text Truncation */
.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Home Page — Gallery & Hover Efektleri */
.trend-gallery-item {
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trend-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

.trend-img {
    transition: transform 0.5s ease;
}

.trend-gallery-item:hover .trend-img {
    transform: scale(1.08);
}

.trend-overlay {
    opacity: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.75) 100%);
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.trend-gallery-item:hover .trend-overlay {
    opacity: 1;
}

.backdrop-blur {
    backdrop-filter: blur(8px);
}

.max-w-550 {
    max-width: 550px;
}

.hover-gold:hover {
    color: #E5A93C !important;
    transform: scale(1.1);
}

.hover-translate {
    transition: all 0.3s ease;
}

.hover-translate:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06) !important;
}

.limit-text-home {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 48px;
}

.bg-grid {
    background-image: radial-gradient(circle, #8B5A2B 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Scroll To Top */
#scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
    background-color: #d1922c !important;
}

#scroll-to-top:hover i {
    animation: coffee-tilt 0.6s ease-in-out infinite alternate;
}

@keyframes coffee-tilt {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(15deg);
    }
}