/* Custom CSS to hide specific sections */

/* Hide the WhatsApp button next to the search button */
.whatsapp-btn {
    display: none !important;
}

/* Hide About Page Experience Section (3 Yıllık Deneyim) */
.about-experience {
    display: none;
}

/* Hide About Page Team Section (Uzman Ekibimiz) */
.about-team {
    display: none;
}

/* Fix header spacing and logo alignment */
.main-header {
    padding: 0;
    margin: 0;
}

.header-content {
    align-items: center;
    padding: 15px 0;
}

.header-content .logo {
    margin-left: 2px !important;
    display: flex;
    align-items: center;
    margin-left: 75px !important; /* Add space equal to logo height */
}

.logo img {
    display: block;
}

.header-center {
    flex: 1;
    text-align: center;
}

.header-right {
    display: flex;
    align-items: center;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.koleksiyon-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 2px;
}

.koleksiyon-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d4a574;
    transition: width 0.3s ease;
}

.koleksiyon-link:hover::after {
    width: 100%;
}

.koleksiyon-link:hover {
    color: #d4a574;
}

/* Header icon styles */
.search-btn, .whatsapp-btn {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.whatsapp-btn {
    color: #25d366;
}

.whatsapp-btn:hover {
    color: #128c7e;
}

/* Mobile menu adjustments */
@media (max-width: 992px) {
    .header-actions {
        display: flex;
        gap: 10px;
        justify-content: space-between;
    }
    
    .header-icons {
        display: none;
    }
    
    .koleksiyon-link {
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 10px 15px;
        display: flex;
        justify-content: space-between;
    }
    
    .header-right {
        margin-right: 15px;
        position: absolute;
        right: 15px;
    }
    
    .header-actions {
        gap: 10px;
    }
}