body {
    font-family: "Montserrat", sans-serif;
    scroll-behavior: smooth;
    color: #1e1e1e;
}

@media (min-width: 768px) {
    #navbar .text-dark,
    #navbar .text-dark:hover {
        color: #ffffff !important;
    }
}

vbar.nav-scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#navbar.nav-scrolled .text-dark,
#navbar.nav-scrolled .text-dark:hover {
    color: #1e1e1e !important;
}

#mobile-menu {
    position: absolute;
    top: 100%; /* Navbar'ın hemen altından başlar */
    left: 0;
    width: 100%;
    z-index: 999; /* Navbar'ın hemen altında */
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
    /* Mobil Menü Açık Durumu */
    #mobile-menu.mobile-menu-open {
        max-height: 500px !important; /* İçerik yüksekliğine göre ayarlayın */
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    #mobile-menu .text-dark,
    #mobile-menu .text-dark:hover {
        color: #1E1E1E !important; /* Varsayılan koyu renk */
    }

        #mobile-menu .text-dark:hover {
            color: #3A5630 !important; /* Hover durumunda primary renk */
        }
/* Mobil Menü Linkleri */
#mobile-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #1E1E1E;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0.375rem;
    margin: 0.25rem 0;
}

#mobile-menu a:hover {
    background-color: rgba(58, 86, 48, 0.1);
    color: #3A5630;
    transform: translateX(5px);
}

/* Mobil Menü Butonu */
#mobile-menu-button {
    transition: all 0.3s ease;
}

    #mobile-menu-button:hover {
        color: #3A5630;
        transform: scale(1.1);
    }
/* Desktop Nav Links */
#navbar nav a {
    position: relative;
    padding: 8px 0;
    color: #1E1E1E;
    transition: all 0.4s ease;
}

    /* Hover Animation - Underline Grow */
    #navbar nav a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #3A5630; /* Primary color */
        transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    #navbar nav a:hover {
        color: #3A5630 !important;
    }

        #navbar nav a:hover::after {
            width: 100%;
        }

    /* Active Link Style */
    #navbar nav a.active {
        color: #3A5630 !important;
        font-weight: 600;
    }

        #navbar nav a.active::after {
            width: 100%;
            background-color: #B1DC88; /* Accent color */
        }
/* Navbar Background Transition */
header#navbar {
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.nav-scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}


.hero-section {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.service-card {
    transition: all 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

        .service-card:hover .icon {
            color: #3a5630;
            transform: scale(1.1);
        }

.collection-item:hover img {
    transform: scale(1.05);
}

.collection-item:hover .overlay {
    opacity: 0.2;
}

.fabric-swatch {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

    .fabric-swatch img {
        transition: transform 0.5s ease;
    }

    .fabric-swatch:hover img {
        transform: scale(1.05);
    }

    .fabric-swatch .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(58, 86, 48, 0), rgba(58, 86, 48, 0.5));
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .fabric-swatch:hover .overlay {
        opacity: 1;
    }

.btn-primary {
    background-color: #3a5630;
    color: white;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background-color: #5c7f56;
        transform: translateY(-2px);
    }

.btn-secondary {
    background-color: #5c7f56;
    color: white;
    transition: all 0.3s ease;
}

    .btn-secondary:hover {
        background-color: #b1dc88;
        transform: translateY(-2px);
    }

.gradient-overlay {
    background: linear-gradient(135deg, rgba(58, 86, 48, 0.8) 0%, rgba(92, 127, 86, 0.6) 100%);
}

.service-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

    .service-card:hover .service-info {
        max-height: 100px;
    }
