:root {
    --myolive-primary: #55714A;
    --myolive-secondary: #8BA888;
    --myolive-accent: #D4E4D4;
    --myolive-light: #F5F7F5;
    --myolive-dark: #2C3E2A;
    --myolive-gold: #D4AF37;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Bootstrap Override */
.bg-primary {
    background-color: var(--myolive-primary) !important;
}

.btn-primary {
    background-color: var(--myolive-primary) !important;
    border-color: var(--myolive-primary) !important;
}

    .btn-primary:hover {
        background-color: var(--myolive-dark) !important;
        border-color: var(--myolive-dark) !important;
    }

/* Typography */
body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--myolive-dark);
    background-color: var(--myolive-light);
    padding-top: 80px;
    overflow-x: hidden
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--myolive-dark);
}

h1 {
    font-size: 6rem;
    font-weight: 700;
}

h2 {
    font-size: 5rem;
    font-weight: 600;
}

h3 {
    font-size: 3rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1rem;
    }
    .me-3{
        margin-bottom: 0.5rem;
        margin-right: 0 !important;
    }
}

.lead {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.7;
}

.navbar-brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
}

.btn {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Additional Typography Improvements */
.my-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--myolive-dark);
}

.my-card h5 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.4;
}

.my-card p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.blog-detail-article h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 2rem;
    margin: 2rem 0 1rem 0;
    color: var(--myolive-dark);
}

.blog-detail-article h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem 0;
    color: var(--myolive-dark);
}

.blog-detail-article p {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.blog-detail-article ul, .blog-detail-article ol {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-detail-article li {
    margin-bottom: 0.5rem;
}

blockquote {
    font-family: 'Crimson Text', Georgia, serif;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    border-left: 4px solid var(--myolive-primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    color: #555;
}

blockquote cite {
    font-family: 'Source Sans Pro', sans-serif;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--myolive-primary);
    font-weight: 500;
}

/* Fixed Header Styles */
.my-header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--myolive-primary) 0%, var(--myolive-secondary) 100%);
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(85, 113, 74, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .my-header-fixed.scrolled {
        backdrop-filter: blur(15px);
        background: linear-gradient(135deg, var(--myolive-primary) 0%, var(--myolive-secondary) 100%)!important;
        padding: 0.3rem 0;
        box-shadow: 0 4px 25px rgba(85, 113, 74, 0.25);
    }

.my-navbar {
    background: transparent !important;
    border: none !important;
    position: relative;
    z-index: 1000;
}

    .my-navbar .navbar-brand {
        color: white !important;
        font-size: 1.8rem;
        font-weight: 700;
        text-decoration: none;
        position: relative;
        z-index: 1001;
    }

    .my-navbar .nav-link {
        color: white !important;
        font-weight: 500;
        margin: 0 1rem;
        transition: all 0.3s ease;
        position: relative;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        z-index: 1001;
    }

        .my-navbar .nav-link:hover {
            color: var(--myolive-accent) !important;
            transform: translateY(-2px);
        }

        .my-navbar .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--myolive-accent);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .my-navbar .nav-link:hover::after {
            width: 100%;
        }

/* Navigation Icons */
.nav-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Mobile Menu Button - İyileştirilmiş */
.my-navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: transparent;
    color: white;
    position: relative;
    z-index: 10001;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.my-navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.my-navbar-toggler:hover {
    transform: scale(1.1);
}

.menu-icon {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
    fill: none;
    transition: all 0.3s ease;
}

/* Offcanvas Menu */
.offcanvas{
    visibility: visible !important;
}
.my-offcanvas {
    background: var(--myolive-primary);
    color: white;
    border-left: none;
    width: 280px;
}

    .my-offcanvas .offcanvas-header {
        border-bottom: 1px solid var(--myolive-accent);
        padding: 1.5rem;
    }

    .my-offcanvas .offcanvas-title {
        color: white;
        font-size: 1.5rem;
        font-weight: 700;
    }

.my-btn-close {
    background: none;
    border: none;
    color: white;
    padding: 0.5rem;
    font-size: 1.5rem;
}

    .my-btn-close:focus {
        box-shadow: none;
    }

.my-offcanvas .offcanvas-body {
    padding: 1.5rem;
}

.my-offcanvas .nav-link {
    color: white !important;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

    .my-offcanvas .nav-link:hover {
        color: var(--myolive-accent) !important;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        padding-left: 1rem;
    }

.my-offcanvas .nav-icon {
    width: 20px;
    height: 20px;
}

.offcanvas-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--myolive-accent);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-link:hover {
        background: var(--myolive-accent);
        color: var(--myolive-primary);
        transform: translateY(-2px);
    }

    .social-link i {
        width: 20px;
        height: 20px;
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
    }

/* Main Content */
.my-main {
    min-height: calc(100vh - 80px - 300px);
}

/* Hero Section */
.my-hero {
    background: linear-gradient(rgba(85, 113, 74, 0.8), rgba(139, 168, 136, 0.8)), url('/images/gallery/6.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: -80px;
    padding-top: 80px;
}

.my-hero-content {
    max-width: 800px;
    padding: 2rem;
}

.my-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.my-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.my-hero-btn {
    background: var(--myolive-gold);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .my-hero-btn:hover {
        background: #B8941F;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
        color: white;
        text-decoration: none;
    }

/* Custom Button Styles */
.my-btn-primary {
    background: var(--myolive-primary);
    border: 2px solid var(--myolive-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

    .my-btn-primary:hover {
        background: var(--myolive-dark);
        border-color: var(--myolive-dark);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(85, 113, 74, 0.3);
        text-decoration: none;
    }

.my-btn-outline {
    background: transparent;
    border: 2px solid var(--myolive-primary);
    color: var(--myolive-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

    .my-btn-outline:hover {
        background: var(--myolive-primary);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(85, 113, 74, 0.3);
        text-decoration: none;
    }

.my-btn-light {
    background: white;
    border: 2px solid white;
    color: var(--myolive-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

    .my-btn-light:hover {
        background: var(--myolive-light);
        border-color: var(--myolive-light);
        color: var(--myolive-dark);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
        text-decoration: none;
    }

.my-btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

    .my-btn-outline-light:hover {
        background: white;
        color: var(--myolive-primary);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
        text-decoration: none;
    }

.btn-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Section Styles */
.my-section {
    padding: 5rem 0;
}

.my-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--myolive-primary);
    margin-bottom: 3rem;
    position: relative;
}

    .my-section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: var(--myolive-gold);
    }

/* Mission & Vision */
.my-mission-vision {
    background: white;
}

.my-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(85, 113, 74, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--myolive-accent);
}

    .my-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(85, 113, 74, 0.15);
    }

    .my-card h3 {
        color: var(--myolive-primary);
        font-size: 1.8rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .my-card p {
        color: var(--myolive-dark);
        line-height: 1.8;
        font-size: 1.1rem;
    }

/* Story Section */
.my-story {
    background: var(--myolive-accent);
}

.my-story-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.my-story-text {
    flex: 1;
}

.my-story-image {
    flex: 1;
    text-align: center;
}

    .my-story-image img {
        max-width: 100%;
        border-radius: 15px;
        box-shadow: 0 15px 35px rgba(85, 113, 74, 0.2);
    }

/* Gallery */
.my-gallery {
    background: white;
}

.my-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.my-gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(85, 113, 74, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .my-gallery-item:hover {
        transform: scale(1.05);
        box-shadow: 0 20px 40px rgba(85, 113, 74, 0.2);
    }

    .my-gallery-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(85, 113, 74, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.my-gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 1rem;
}

    .gallery-info h5 {
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .gallery-info p {
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

.zoom-icon {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

/* Certificates */
.my-certificates {
    background: var(--myolive-light);
}

.my-cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.my-cert-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(85, 113, 74, 0.1);
    transition: all 0.3s ease;
}

    .my-cert-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(85, 113, 74, 0.15);
    }

.cert-icon {
    margin-bottom: 1rem;
}

.cert-details {
    border-top: 1px solid var(--myolive-accent);
    padding-top: 1rem;
}

/* Contact */
.my-contact {
    background: var(--myolive-primary);
    color: white;
}

.my-contact-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.my-form-control {
    border: 2px solid var(--myolive-accent);
    border-radius: 10px;
    padding: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .my-form-control:focus {
        border-color: var(--myolive-primary);
        box-shadow: 0 0 0 0.2rem rgba(85, 113, 74, 0.25);
        outline: none;
    }

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

/* Blog Styles */
.blog-card {
    transition: all 0.3s ease;
}

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(85, 113, 74, 0.15);
    }

.featured-post {
    background: linear-gradient(135deg, var(--myolive-primary) 0%, var(--myolive-secondary) 100%);
    color: white;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.my-badge-primary {
    background: var(--myolive-gold);
    color: var(--myolive-dark);
    font-weight: 600;
}

/* Blog Detail Styles */
.blog-detail-header {
    background: linear-gradient(rgba(85, 113, 74, 0.8), rgba(139, 168, 136, 0.8)), url('/images/blog/olive-harvest-blog.jpg');
    background-size: cover;
    background-position: center;
    padding: 8rem 0 4rem;
    color: white;
    text-align: center;
}

.blog-detail-content {
    background: white;
    padding: 4rem 0;
}

.blog-detail-article {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
}

    .blog-detail-article h2 {
        color: var(--myolive-primary);
        margin: 2rem 0 1rem;
        font-size: 2rem;
    }

    .blog-detail-article h3 {
        color: var(--myolive-primary);
        margin: 1.5rem 0 1rem;
        font-size: 1.5rem;
    }

    .blog-detail-article p {
        margin-bottom: 1.5rem;
        color: var(--myolive-dark);
    }

    .blog-detail-article ul, .blog-detail-article ol {
        margin-bottom: 1.5rem;
        padding-left: 2rem;
    }

    .blog-detail-article li {
        margin-bottom: 0.5rem;
    }

    .blog-detail-article blockquote {
        border-left: 4px solid var(--myolive-primary);
        padding-left: 2rem;
        margin: 2rem 0;
        font-style: italic;
        color: var(--myolive-secondary);
        font-size: 1.2rem;
    }

    .blog-detail-article img {
        max-width: 100%;
        border-radius: 10px;
        margin: 2rem 0;
        box-shadow: 0 10px 25px rgba(85, 113, 74, 0.1);
    }

.blog-detail-sidebar {
    background: var(--myolive-light);
    padding: 2rem;
    border-radius: 15px;
    height: fit-content;
}

    .blog-detail-sidebar h4 {
        color: var(--myolive-primary);
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

    .blog-detail-sidebar .recent-post {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--myolive-accent);
    }

        .blog-detail-sidebar .recent-post:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .blog-detail-sidebar .recent-post img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
        }

        .blog-detail-sidebar .recent-post h6 {
            margin: 0;
            font-size: 0.9rem;
            color: var(--myolive-dark);
        }

        .blog-detail-sidebar .recent-post small {
            color: var(--myolive-secondary);
            font-size: 0.8rem;
        }

.blog-detail-author {
    background: var(--myolive-accent);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
}

    .blog-detail-author .author-info {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .blog-detail-author .author-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
    }

    .blog-detail-author .author-name {
        color: var(--myolive-primary);
        font-weight: 600;
        margin: 0;
    }

    .blog-detail-author .author-title {
        color: var(--myolive-secondary);
        margin: 0;
    }

    .blog-detail-author .author-bio {
        color: var(--myolive-dark);
        line-height: 1.6;
    }

/* Stats */
.my-stat-item {
    text-align: center;
    padding: 2rem;
}

.my-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--myolive-primary);
    margin-bottom: 1rem;
}

/* Map Container */
.map-container {
    background: var(--myolive-accent);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
}

.map-placeholder {
    color: var(--myolive-primary);
}

/* Newsletter */
.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}

/* Footer */
.my-footer {
    background: var(--myolive-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.my-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.my-footer-section h4 {
    color: var(--myolive-gold);
    margin-bottom: 1rem;
}

.my-footer-section a {
    color: var(--myolive-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

    .my-footer-section a:hover {
        color: var(--myolive-gold);
    }

.footer-icon {
    width: 16px;
    height: 16px;
    stroke: var(--myolive-accent);
    stroke-width: 2;
    fill: none;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.my-footer-bottom {
    border-top: 1px solid var(--myolive-secondary);
    padding-top: 1rem;
    text-align: center;
    color: var(--myolive-accent);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Design - İyileştirilmiş */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .my-header-fixed {
        padding: 0.3rem 0;
        backdrop-filter: blur(15px);
    }

    .my-navbar-toggler {
        padding: 0.4rem;
        margin-right: 0.5rem;
    }

    .menu-icon {
        width: 22px;
        height: 22px;
    }

    .my-navbar .navbar-brand {
        font-size: 1.5rem;
    }

    .my-navbar .nav-link {
        margin: 0 0.5rem;
        font-size: 0.9rem;
    }

    .my-hero {
        margin-top: -70px;
        padding-top: 70px;
    }

    .my-hero h1 {
        font-size: 2.5rem;
    }

    .my-hero p {
        font-size: 1.1rem;
    }

    .my-story-content {
        flex-direction: column;
        text-align: center;
    }

    .my-section-title {
        font-size: 2rem;
    }

    .my-card {
        padding: 2rem;
    }

    .my-offcanvas {
        width: 100%;
    }

    .my-gallery-grid {
        grid-template-columns: 1fr;
    }

    .blog-detail-header {
        padding: 6rem 0 3rem;
    }

    .blog-detail-content {
        padding: 2rem 0;
    }

    .blog-detail-article {
        font-size: 1rem;
    }

    .blog-detail-sidebar {
        margin-top: 2rem;
    }
}

/* Çok küçük ekranlar için ek iyileştirmeler */
@media (max-width: 576px) {
    .my-header-fixed {
        padding: 0.2rem 0;
    }

    .my-navbar-toggler {
        padding: 0.3rem;
    }

    .menu-icon {
        width: 20px;
        height: 20px;
    }

    .my-navbar .navbar-brand {
        font-size: 1.3rem;
    }

    .my-hero h1 {
        font-size: 2rem;
    }

    .my-hero p {
        font-size: 1rem;
    }
}

/* WOW.js animations */
.wow {
    visibility: hidden;
}

.fadeIn {
    animation-name: fadeIn;
}

.fadeInUp {
    animation-name: fadeInUp;
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

.fadeInRight {
    animation-name: fadeInRight;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--myolive-primary) 0%, var(--myolive-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: white;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.preloader-content p {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.9;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--myolive-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(85, 113, 74, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--myolive-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(85, 113, 74, 0.4);
}

.scroll-to-top i {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-button .whatsapp-icon {
    width: 28px;
    height: 28px;
    fill: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }
}

/* Responsive adjustments for buttons */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 80px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-button {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button i {
        width: 24px;
        height: 24px;
    }
}

.btn-group{
    flex-wrap: wrap;
    gap: 0.5rem;
}

@media screen and (max-width: 768px){
    .mobile-button-fix{
        margin-bottom: 0.5rem;
    }
}