@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&display=swap');


:root {
    --white: #ffffff;
    --bg: #F8F9FA;
    --main-pink: #2D6A4F;
    --pink-hover: #52B788;
    --muted: #6b6b6b;
    --radius: 16px;
    --container: 1100px;
    --shadow: 0 10px 30px rgba(45, 106, 79, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: var(--bg);
}

.container {
    width: min(92%, var(--container));
    margin: auto;
}


header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 60;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logosu {
    height: 80px;
    width: auto;
    margin-left: -35px;
    display: block;
}

nav ul {
    display: flex;
    gap: 5px;
    list-style: none;
}

nav a {
   
    font-size: 0.95rem !important;
   
    font-family: 'Inter', sans-serif !important;
   
    font-weight: 600 !important;
    
    padding: 8px 12px !important;
    
    color: #6b6b6b !important;
    text-decoration: none !important;
   
    letter-spacing: normal !important;
    text-transform: none !important;
}

    
    nav a:hover, nav a.active {
        color: #2D6A4F !important;
        background: rgba(46, 125, 50, 0.06) !important;
    }



.page-content {
    margin-top: 40px;
    margin-bottom: 60px;
}


.blog-page-header {
    text-align: center;
    margin-bottom: 50px;
}

    .blog-page-header h1 {
        font-family: 'Cormorant Garamond', serif;
        color: #1B4332;
        font-size: 3.2rem;
        font-weight: 700;
        margin-bottom: 5px;
        letter-spacing: -0.5px;
    }

    .blog-page-header p {
        color: #666;
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }

.premium-divider {
    width: 80px;
    height: 3px;
    background: #DAA520;
    margin: 15px auto 25px auto;
    border-radius: 2px;
}


.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto 50px auto;
}


.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

    .blog-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(27, 67, 50, 0.08);
    }


.blog-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

    .blog-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}


.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    font-size: 0.85rem;
    color: #DAA520;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-title {
    color: #1B4332;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-excerpt {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}


.blog-read-more {
    color: #1B4332;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: 0.3s;
    margin-top: auto;
}

    .blog-read-more i {
        color: #DAA520;
        transition: transform 0.3s;
    }

    .blog-read-more:hover {
        color: #DAA520;
    }

        .blog-read-more:hover i {
            transform: translateX(5px);
        }


@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}


footer {
    background: none !important;
    margin: 0;
    padding: 0;
}

.premium-footer {
    background-color: #FCFBF7 !important;
    border-top: 4px solid #DAA520;
    padding-top: 1px;
    margin-top: 90px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.02);
    position: relative;
}

.footer-fancy-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.footer-logo-box {
    flex: 0 0 250px;
    text-align: left;
}

.fancy-logo {
    width: 100%;
    max-width: 240px;
    height: auto;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.04));
    transition: transform 0.4s ease;
}

    .fancy-logo:hover {
        transform: scale(1.03);
    }

.footer-divider {
    width: 2px;
    height: 140px;
    background: linear-gradient(to bottom, transparent, #DAA520, transparent);
    opacity: 0.4;
}

.footer-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fancy-heading {
    color: #2E7D32;
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .fancy-heading i {
        color: #DAA520;
    }

.fancy-contact-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #444;
    font-size: 0.95rem;
    font-weight: 500;
}

.working-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #444;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 10px;
    margin-right: 20px;
}

.icon-gold {
    background: #ffffff;
    color: #DAA520;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(218, 165, 32, 0.15);
    font-size: 1.1rem;
    transition: 0.3s;
}

.contact-item:hover .icon-gold, .working-hours:hover .icon-gold {
    background: #DAA520;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom-bar {
    border-top: 1px solid rgba(218, 165, 32, 0.3);
    margin-top: 1px;
    padding: 20px 0;
    font-size: 0.9rem;
    color: #666;
}

.bottom-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.bottom-left span:first-child {
    color: #2E7D32;
    font-weight: 700;
}

.legal-links {
    margin-left: 15px;
}

    .legal-links a {
        color: #888;
        text-decoration: none;
        transition: 0.3s ease;
    }

        .legal-links a:hover {
            color: #DAA520;
        }

.bottom-right {
    text-align: right;
}

.dev-name {
    color: #DAA520;
    font-size: 1rem;
    font-weight: 800;
}

@media (max-width: 900px) {
    .footer-fancy-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-logo-box {
        text-align: center;
    }

    .footer-divider {
        width: 150px;
        height: 2px;
        background: linear-gradient(to right, transparent, #DAA520, transparent);
    }

    .fancy-heading {
        justify-content: center;
    }

    .fancy-contact-grid {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .bottom-bar-flex {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .legal-links {
        display: block;
        margin-top: 8px;
        margin-left: 0;
    }
}

.blog-detail-wrapper {
    max-width: 900px; 
    margin: 40px auto 80px auto;
}

.blog-breadcrumb {
    margin-bottom: 30px;
}

.back-to-blog {
    text-decoration: none;
    color: #DAA520;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

    .back-to-blog:hover {
        color: #1B4332;
        transform: translateX(-5px);
    }

.blog-article {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.category-tag {
    background: rgba(218, 165, 32, 0.1);
    color: #DAA520;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.article-date {
    color: #888;
    font-size: 0.9rem;
}

.article-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: #1B4332;
    line-height: 1.2;
    margin-bottom: 20px;
}

.article-hero-image {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

    .article-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.article-content {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #444;
    text-align: justify;
}

.article-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.author-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .author-box img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 2px solid #DAA520;
    }

    .author-box span {
        font-size: 0.8rem;
        color: #888;
        text-transform: uppercase;
    }

    .author-box h4 {
        color: #1B4332;
        font-size: 1.1rem;
    }


@media (max-width: 768px) {
    .blog-article {
        padding: 30px 20px;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .article-hero-image {
        height: 250px;
    }
}


.blog-card p {
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; 
    min-height: 4.8em; 
}



header {
    background: var(--white) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}


.article-header,
.article-meta,
.category-tag,
.article-date {
    position: relative !important; 
    z-index: 10 !important; 
}


.blog-detail-wrapper {
    margin-top: 60px !important;
    position: relative !important;
    z-index: 1 !important;
}


.blog-article {
    position: relative !important;
    z-index: 5 !important;
}


@media (max-width: 768px) {
   
    .nav {
        flex-direction: column !important;
        padding: 10px 0 !important;
        gap: 12px !important;
    }

    
    .site-logosu {
        height: 46px !important;
        margin-left: 0 !important;
        margin-bottom: 5px;
        display: block !important;
    }

    
    nav ul {
        display: flex !important;
        flex-wrap: nowrap !important; 
        justify-content: center !important;
        gap: 2px !important; 
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    
    nav a {
        font-size: 10.5px !important; 
        padding: 6px 6px !important; 
        white-space: nowrap !important; 
        letter-spacing: -0.4px !important; 
        font-family: 'Inter', sans-serif !important;
    }

    
    .contact-grid, .contact-info-cards {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 10px;
    }

    .map-container iframe {
        height: 250px !important;
        border-radius: 15px;
    }

    .contact-form-card {
        padding: 20px 15px !important;
        width: 100% !important;
    }

    
    .footer-fancy-wrapper {
        flex-direction: column !important;
        text-align: center;
        gap: 30px;
    }

    .submit-btn {
        width: 100% !important;
        padding: 15px !important;
    }
}
p, h1, h2, h3, h4, h5, h6, div, span {
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    hyphens: auto !important;
}