/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
/*
Theme Name: CTRLF Child Theme
Template: twentytwentyfour
Description: CTRLF Parfüm için özel logo teması
Author: CTRLF
Version: 1.0
*/

/* ============================================
   CTRLF LOGO STILLERI
   ============================================ */

.ctrlf-logo {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ctrlf-logo .logo-text {
    font-size: 32px;
    font-weight: 200;
    letter-spacing: 5px;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: all 0.3s ease;
}

.ctrlf-logo .logo-bottle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.ctrlf-logo .bottle-cap {
    width: 14px;
    height: 7px;
    background: #D4AF37;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.ctrlf-logo .bottle-neck {
    width: 10px;
    height: 6px;
    background: #D4AF37;
    transition: all 0.3s ease;
}

.ctrlf-logo .bottle-body {
    width: 22px;
    height: 25px;
    background: #1a1a1a;
    clip-path: polygon(
        0 0,
        0 100%,
        27% 100%,
        27% 59%,
        83% 59%,
        83% 35%,
        27% 35%,
        27% 24%,
        100% 24%,
        100% 0
    );
    transition: all 0.3s ease;
}

/* Hover Efektleri */
.ctrlf-logo:hover .logo-text {
    letter-spacing: 7px;
}

.ctrlf-logo:hover .bottle-cap {
    transform: translateY(-2px);
    background: #1a1a1a;
}

.ctrlf-logo:hover .bottle-neck {
    background: #1a1a1a;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .ctrlf-logo .logo-text {
        font-size: 24px;
        letter-spacing: 3px;
    }
    
    .ctrlf-logo .bottle-cap {
        width: 10px;
        height: 5px;
    }
    
    .ctrlf-logo .bottle-neck {
        width: 8px;
        height: 5px;
    }
    
    .ctrlf-logo .bottle-body {
        width: 18px;
        height: 20px;
    }
}

/* Koyu tema için */
body.dark-mode .ctrlf-logo .logo-text,
.site-header.dark .ctrlf-logo .logo-text {
    color: #ffffff;
}

body.dark-mode .ctrlf-logo .bottle-body,
.site-header.dark .ctrlf-logo .bottle-body {
    background: #ffffff;
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}