/*
Theme Name: VM Brand Portfolio
Theme URI: https://vmbrand.com
Author: Vahit Mutlu
Description: VM Brand için özel tasarım portfolio ve stüdyo teması.
Version: 1.0
*/

/* WordPress Admin Bar Düzeltmesi (Header fixed olduğu için) */
body.admin-bar header {
    top: 32px !important;
}
@media screen and (max-width: 782px) {
    body.admin-bar header {
        top: 46px !important;
    }
}

/* Genel Ayarlar */
.smooth-scroll {
    scroll-behavior: smooth;
}
body {
    font-feature-settings: "kern";
    text-rendering: optimizeLegibility;
}

/* Zoom Effect */
.zoom-image { 
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1); 
}
.group:hover .zoom-image { 
    transform: scale(1.05); 
}

/* Animation Utilities */
.reveal-text { 
    animation: fadeInUp 1s ease-out forwards; 
    opacity: 0; 
    transform: translateY(20px); 
}
@keyframes fadeInUp { 
    to { opacity: 1; transform: translateY(0); } 
}