/* assets/css/style.css */

/* Custom smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Glassmorphism utility enhancements */
.glass {
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Custom Image Wrapper for modern aesthetics */
.image-zoom-wrapper {
    overflow: hidden;
}
.image-zoom-wrapper img {
    transition: transform 0.8s ease;
}
.image-zoom-wrapper:hover img {
    transform: scale(1.05); /* Hover edildiğinde resim yavaşça yakınlaşır */
}

/* Special Button Outline & Fill Override with Glassmorphism */
.btn-reserve {
    position: relative;
    overflow: hidden;
    background-color: color-mix(in srgb, var(--color-primary), transparent 70%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid color-mix(in srgb, var(--color-secondary), transparent 40%);
    color: white;
    transition: all 0.3s ease;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-reserve::before {
    content: '';
    position: absolute;
    top: var(--y, 50%);
    left: var(--x, 50%);
    width: 0;
    height: 0;
    background-color: var(--color-secondary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease-out, height 0.4s ease-out;
    z-index: -1;
}

.btn-reserve:hover::before {
    width: 600px; /* Köşelerden girişte tam kaplama için boyut artırıldı */
    height: 600px;
}

.btn-reserve:hover {
    transform: none;
    box-shadow: none;
    background-color: var(--color-secondary); /* Hover'da tam renk olsun veya transparanlığı azalt */
    color: white;
}

/* Solid Variant (Transparency removed) */
.btn-reserve.btn-solid {
    background-color: var(--color-primary);
    border-color: var(--color-secondary);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
