/* BANQUET TEAM - Tüm Stiller */

/* Temel font ayarları */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap');

/* Renk değişkenleri - Logodaki renkler */
:root {
    --banquet-gold: #DBAF44; /* Logodaki altın rengi - görsel ile daha iyi eşleşecek şekilde ayarlandı */
    --banquet-gold-light: #F5DD90; /* Daha açık altın tonu */
    --banquet-gold-dark: #C59D30; /* Daha koyu altın tonu */
    --banquet-black: #0C0C0C; /* Siyah - logodaki arka plan rengi */
    --banquet-white: #ffffff; /* Beyaz */
    --banquet-primary: #685E5F; /* Yeni primary renk */
    --banquet-secondary: #8C8384; /* Yeni secondary renk */
}

/* Genel stil ayarları */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden; /* Menü açıkken sayfanın kaymasını engelle */
    height: 100vh;
    width: 100%;
    position: fixed;
}

.minimal-body {
    background-color: var(--banquet-black);
    color: var(--banquet-white);
    overflow-x: hidden;
    min-height: 100vh; /* En az viewport height kadar yükseklik ver */
}

/* Header stilleri */
.minimal-header {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.minimal-header.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

/* Hero slider stiller */
.minimal-slider {
    height: 100vh;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Mobil cihazlar için minimum yükseklik tanımlayalım */
@media (max-width: 768px) {
    .minimal-slider {
        height: 100vh; 
        min-height: 500px; /* Minimum yükseklik belirleyelim */
        max-height: 100vh; /* Maksimum yükseklik viewport kadar */
    }
    
    .minimal-slider .slide-bg {
        min-height: 500px; /* Slayt bg için de minimum yükseklik */
        max-height: 100vh;
    }
    
    /* Slide içeriğini mobilde daha iyi hizalayalım */
    .minimal-slider .slide-content {
        padding-top: 60px; /* Header'a yer açalım */
        padding-bottom: 100px; /* Slider dots ve scroll indicator'a yer açalım */
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

.minimal-slider .slide-bg {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease-out;
    width: 100%;
    height: 100%;
}

.slide-active .slide-bg {
    transform: scale(1.05);
}

/* Animasyonlu içerik */
.slide-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.slide-active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

/* Başlık animasyonları */
.slide-title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.slide-active .slide-title-word {
    opacity: 1;
    transform: translateY(0);
}

/* Hareket eden arkaplan görüntüsü */
.bg-parallax {
    transform: translateZ(0);
    transition: transform 0.4s ease-out;
}

/* Buton stil geliştirmeleri */
.minimal-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.minimal-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.minimal-btn:hover:before {
    left: 100%;
}

/* Slider okları */
.slider-nav-btn {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: all 0.3s ease;
}

.minimal-slider:hover .slider-nav-btn {
    opacity: 0.7;
}

.slider-nav-btn:hover {
    background-color: rgba(212, 175, 55, 0.2);
    opacity: 1 !important;
    transform: translateY(-50%) scale(1.1);
}

/* Slider noktaları */
.slider-dots {
    position: absolute;
    bottom: 120px; /* Daha yukarı konumlandır */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 15; /* Daha düşük z-index */
    transition: opacity 0.5s ease;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.slider-dot.active {
    background-color: var(--banquet-gold);
    transform: scale(1.2);
}

/* Footer görünür olduğunda slider dots'ları gizle */
.minimal-footer.visible ~ .minimal-slider .slider-dots,
body.footer-visible .slider-dots {
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 25; /* Daha yüksek z-index */
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s, bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--banquet-gold);
    width: auto; /* Genişlik otomatik ayarlansın */
    text-align: center; /* İçeriği ortala */
    white-space: nowrap; /* Metin sığmazsa alt satıra inmesin */
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* Footer */
.minimal-footer {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
    transform: translateY(100%);
    opacity: 0;
    border-top: 1px solid var(--banquet-gold);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100; /* Higher z-index to ensure footer is always on top */
}

.minimal-footer.visible {
    transform: translateY(0);
    opacity: 1;
}

/* Footer görünür olduğunda scroll indicator'ı tamamen gizle */
.minimal-footer.visible ~ .scroll-indicator,
body.footer-visible .scroll-indicator {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

.footer-close-btn {
    position: absolute;
    top: -15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background-color: var(--banquet-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    cursor: pointer;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
    border: none;
    outline: none;
    z-index: 101; /* Higher z-index than the footer */
}

.minimal-footer:not(.visible) .footer-close-btn {
    opacity: 0;
    pointer-events: none;
}

.footer-close-btn:hover {
    background-color: var(--banquet-white);
    transform: scale(1.1);
}

.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Sayfa geçiş animasyonları */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 9999;
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.page-transition.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

/* Slayt arkaplan animasyonları */
.slide-bg-zoom {
    animation: zoomBg 10s infinite alternate;
    background-size: cover;
    background-position: center;
}

/* Mobil görünümde slider resimlerini daha uzaklaştırılmış göster */
@media (max-width: 768px) {
    .slide-bg-zoom {
        background-size: 150% auto; /* Daha uzaklaştırılmış görünüm */
        background-position: center; /* Merkeze odaklan */
        animation: none; /* Mobilde animasyonu kapat */
    }
    
    /* Slider 1 için özel pozisyon ayarı */
    .slide:first-child .slide-bg-zoom {
        background-position: center 20%; /* Slider 1 için üst kısma odaklan */
    }
}

@keyframes zoomBg {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Gold accent elements */
.text-gold {
    color: var(--banquet-gold);
}

.border-gold {
    border-color: var(--banquet-gold);
}

.bg-gold {
    background-color: var(--banquet-gold);
}

/* Gold glow effect */
.gold-glow {
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.gold-glow-box {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Elegant shine animation for gold elements */
@keyframes goldShine {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gold-shine {
    background: linear-gradient(120deg, var(--banquet-gold), var(--banquet-gold-light), var(--banquet-gold));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShine 4s linear infinite;
}

/* Responsive ayarlamalar */
@media (max-width: 768px) {
    /* Genel Mobil Düzenlemeler */
    .container {
        padding-left: 1rem; /* Mobil için genel container padding */
        padding-right: 1rem;
    }

    /* Header mobil düzenlemeleri */
    .minimal-header .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .minimal-header .logo-text {
        font-size: 1.5rem; /* Header logo boyutu küçült */
    }
    .minimal-header .logo-text + span {
        font-size: 0.7rem; /* Header logo alt başlık boyutu küçült */
    }
    #mobile-menu-button {
        width: 30px;
        height: 30px;
    }
    #mobile-menu-button i {
        font-size: 1rem; /* Burger ikon boyutu */
    }

    /* Mobil menü (#mobile-menu) içindeki logo responsive ayarları */
    #mobile-menu .logo-text {
        font-size: 1.5rem; /* Mobil menü içindeki logo boyutu */
    }
    #mobile-menu .logo-text + span {
        font-size: 0.7rem; /* Mobil menü içindeki logo alt başlık boyutu */
    }
    
    #mobile-menu a {
        font-size: 0.9rem; /* Mobil menü link font boyutu */
    }

    /* Slider mobil düzenlemeleri */
    .minimal-slider .slide-content {
        padding-left: 1rem; /* Slider içeriği için padding */
        padding-right: 1rem;
    }
    .minimal-slider h1 {
        font-size: 1.8rem; /* Başlık boyutu küçültüldü */
        margin-bottom: 0.75rem; /* Boşluk ayarlandı */
        line-height: 1.2;
    }
    .minimal-slider h2 {
        font-size: 1.2rem; /* Alt başlık boyutu küçültüldü */
        margin-bottom: 0.5rem; /* Boşluk ayarlandı */
        line-height: 1.2;
    }
    .minimal-slider p {
        font-size: 0.85rem; /* Paragraf boyutu ayarlandı */
        margin-bottom: 1rem; /* Boşluk ayarlandı */
        line-height: 1.4;
    }
    .minimal-btn {
        padding: 0.5rem 1rem; /* Buton padding ayarlandı */
        font-size: 0.8rem; /* Buton font boyutu ayarlandı */
    }
    .slider-dots {
        bottom: 60px; /* Mobil cihazlarda daha yukarı çekildi */
    }
    .slider-dot {
        width: 10px; /* Mobil cihazlarda nokta boyutu ayarlandı */
        height: 10px;
    }
    .scroll-indicator {
        bottom: 20px; /* Mobil cihazlarda daha yukarıda ve dots'a yakın */
        font-size: 0.75rem; /* Yazı boyutu küçültüldü */
    }
    .scroll-indicator span {
        margin-bottom: 0.25rem !important; /* İkon ile yazı arası boşluk azaltıldı */
    }
    .scroll-indicator i {
        font-size: 1.2rem; /* İkon boyutu ayarlandı */
    }
    .slider-nav-btn {
        width: 2rem; /* Okların boyutu ayarlandı */
        height: 2rem;
        top: 50%; /* Dikeyde ortalandı */
    }
    .slider-nav-btn i {
        font-size: 0.9rem; /* Ok ikon boyutu ayarlandı */
    }

    /* Footer mobil düzenlemeleri */
    .minimal-footer .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .minimal-footer .logo-text {
        font-size: 1.3rem; /* Footer logo boyutu */
    }
    .minimal-footer .social-icon i {
        width: 1.5rem; /* Sosyal medya ikon boyutu */
        height: 1.5rem;
        font-size: 0.75rem;
    }
    .minimal-footer .text-sm {
        font-size: 0.7rem; /* Telif hakkı yazısı boyutu */
    }
    .footer-close-btn {
        top: -10px;
        right: 8px;
        width: 22px;
        height: 22px;
    }
    .footer-close-btn i {
        font-size: 0.65rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .minimal-header .text-3xl {
        font-size: 2.25rem; /* Tablet için logo boyutu */
    }
    .minimal-header .text-sm {
        font-size: 0.875rem; /* Tablet için logo alt başlık */
    }
    #mobile-menu-button {
        display: none; /* Tablette masaüstü menü görünür */
    }
    .minimal-header nav ul {
        font-size: 0.9rem;
        gap: 1.5rem; /* Navigasyon linkleri arası boşluk */
    }

    .minimal-slider h1 {
        font-size: 3rem; /* Tablet için başlık boyutu */
    }
    .minimal-slider h2 {
        font-size: 1.75rem; /* Tablet için alt başlık boyutu */
    }
    .minimal-slider p {
        font-size: 1rem; /* Tablet için paragraf boyutu */
        max-width: 80%;
    }
    .minimal-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    .slider-dots {
        bottom: 100px;
    }
    .scroll-indicator {
        bottom: 30px;
    }

    .minimal-footer .text-2xl {
        font-size: 1.75rem; /* Tablet için footer logo */
    }
    .minimal-footer .social-icon i {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    .footer-close-btn {
        top: -14px;
        right: 12px;
        width: 28px;
        height: 28px;
    }
    .footer-close-btn i {
        font-size: 0.85rem;
    }
}

/* Mobil menü stilleri - Daha minimal ve modern */
#mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    transition: right 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 5rem 1.5rem 2rem;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    overflow-y: auto;
}

/* Mobil menü logosu hizalama */
#mobile-menu .flex-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

#mobile-menu .flex-col span {
    display: block;
}

/* BANQUET TEAM logosu için genel stil */
.logo-text {
    display: inline-block; /* Yan yana kalması için */
    white-space: nowrap; /* Satır atlamasını engellemek için */
}

#mobile-menu.visible {
    right: 0;
}

/* Mobil menü kapanma butonu */
.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--banquet-gold);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-close:hover {
    background-color: var(--banquet-gold);
    color: #000;
}

/* Mobil menü linkleri */
#mobile-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#mobile-menu li {
    margin-bottom: 0.75rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#mobile-menu.visible li {
    opacity: 1;
    transform: translateX(0);
}

/* Her link için gecikmeli animasyon */
#mobile-menu li:nth-child(1) { transition-delay: 0.1s; }
#mobile-menu li:nth-child(2) { transition-delay: 0.15s; }
#mobile-menu li:nth-child(3) { transition-delay: 0.2s; }
#mobile-menu li:nth-child(4) { transition-delay: 0.25s; }
#mobile-menu li:nth-child(5) { transition-delay: 0.3s; }

#mobile-menu a {
    display: block;
    padding: 0.8rem 0;
    color: white;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: color 0.2s ease, transform 0.2s ease;
}

#mobile-menu a:hover {
    color: var(--banquet-gold);
    transform: translateX(5px);
}

/* Aktif link stili */
#mobile-menu li.mobile-active a {
    color: var(--banquet-gold);
    font-weight: 500;
}

/* Hamburger menü butonu stili */
#mobile-menu-button {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.2s ease;
    z-index: 101;
}

#mobile-menu-button:hover {
    background-color: rgba(212, 175, 55, 0.2);
}

#mobile-menu-button i {
    transition: transform 0.3s ease;
}

/* Overlay style */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.visible {
    opacity: 1;
    visibility: visible;
}

/* Responsive ayarlamalar */
@media (max-width: 768px) {
    /* Header mobil düzenlemeleri */
    .minimal-header .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .minimal-header .text-3xl {
        font-size: 1.75rem; /* Logo boyutu küçült */
    }
    .minimal-header .text-sm {
        font-size: 0.75rem; /* Logo alt başlık boyutu küçült */
    }
    #mobile-menu-button i {
        font-size: 1.25rem; /* Burger ikon boyutu */
    }
    #mobile-menu {
        background-color: rgba(0,0,0,0.9);
        backdrop-filter: blur(8px);
    }
    #mobile-menu a {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        font-size: 0.9rem;
    }

    /* Slider mobil düzenlemeleri */
    .slider-dots {
        bottom: 70px; /* Mobil cihazlarda daha yukarı çekelim */
        width: 100%; /* Genişlik tüm ekran */
        justify-content: center; /* Dots'ları ortala */
        padding: 0 10px; /* Sağ-sol padding */
    }
    
    .slider-dot {
        width: 8px; /* Mobil cihazlarda daha küçük noktalar */
        height: 8px;
    }
    
    .scroll-indicator {
        bottom: 15px; /* Mobil cihazlarda daha yukarıda ve dots'a yakın */
        width: 100%; /* Tam genişlik */
        font-size: 12px; /* Daha küçük yazı */
        padding: 0 10px; /* Sağ-sol padding */
    }
    
    .minimal-slider h1 {
        font-size: 1.5rem; /* Başlık boyutu küçült */
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }
    
    .minimal-slider h2 {
        font-size: 1rem; /* Alt başlık boyutu küçült */
        margin-bottom: 0.3rem;
        line-height: 1.2;
    }
    
    .minimal-slider p {
        font-size: 0.75rem; /* Paragraf boyutu küçült */
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .minimal-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .slider-nav-btn {
        width: 1.75rem; /* Okların boyutu */
        height: 1.75rem;
        top: 45%; /* Biraz daha aşağı pozisyonlandır */
    }
    
    .slider-nav-btn i {
        font-size: 0.75rem;
    }

    /* Footer mobil düzenlemeleri */
    .minimal-footer .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .minimal-footer .flex-col.md\:flex-row {
        align-items: center; /* Her şeyi ortala */
    }
    .minimal-footer .mb-4.md\:mb-0 {
        margin-bottom: 1rem; /* Logo ile ikonlar arası boşluk */
    }
    .minimal-footer .flex.space-x-4 {
        margin-bottom: 1rem; /* İkonlar ile telif hakkı arası boşluk */
    }
    .minimal-footer .text-2xl {
        font-size: 1.5rem; /* Footer logo boyutu */
    }
    .minimal-footer .social-icon i {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.875rem;
    }
    .minimal-footer .text-sm {
        font-size: 0.75rem; /* Telif hakkı yazısı boyutu */
        text-align: center;
    }
    .footer-close-btn {
        top: -12px;
        right: 10px;
        width: 24px;
        height: 24px;
    }
    .footer-close-btn i {
        font-size: 0.75rem;
    }
}

/* Contact Page Specific Styles */
.contact-page-main {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden; /* Ana main alanı için kaydırmayı engelle */
}

.map-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: grayscale(80%) brightness(0.4) contrast(0.9); /* Haritaya daha koyu ve stilize bir görünüm */
    opacity: 0.8;
}

.map-background iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.5); /* Hafif bir overlay */
}

.contact-info-wrapper {
    max-width: 600px;
    width: 100%;
    padding: 2rem;
    border-radius: 8px;
    animation: fadeInContact 0.8s ease-out forwards;
}

@keyframes fadeInContact {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-title {
    font-size: 3rem; /* Tailwind md:text-7xl -> 4.5rem, biraz küçülttük */
    font-weight: 700;
    color: var(--banquet-white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.title-underline {
    width: 80px;
    height: 3px;
    background-color: var(--banquet-gold);
    margin: 0 auto 1.5rem auto;
    border-radius: 2px;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--banquet-white_opacity-80, rgba(255,255,255,0.8));
    line-height: 1.6;
    margin-bottom: 2rem;
}

.map-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--banquet-gold);
    color: var(--banquet-black);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--banquet-gold);
}

.map-button:hover {
    background-color: transparent;
    color: var(--banquet-gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Mobil için responsive düzenlemeler */
@media (max-width: 768px) {
    .contact-title {
        font-size: 2.2rem;
    }
    .contact-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .map-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }
    .contact-info-wrapper {
        padding: 1.5rem;
    }
}

/* Tablet için responsive düzenlemeler */
@media (min-width: 769px) and (max-width: 1024px) {
    .contact-title {
        font-size: 2.8rem;
    }
}

/* Join Us Page Specific Styles */
.join-us-page-main {
    min-height: 100vh;
    padding-bottom: 80px; /* Space for footer */
}

.application-form-container {
    transition: all 0.3s ease;
}

/* File upload container styling */
.form-group label[for*="photo"],
.form-group label[for="criminal_record"],
.form-group label[for="address_document"] {
    transition: all 0.2s ease;
}

.form-group label[for*="photo"]:hover,
.form-group label[for="criminal_record"]:hover,
.form-group label[for="address_document"]:hover {
    border-color: var(--banquet-gold);
}

/* Form input focus styles */
.form-group input:focus {
    border-color: var(--banquet-gold);
    box-shadow: 0 0 0 1px var(--banquet-gold);
}

/* Mobile styling for the join us page */
@media (max-width: 768px) {
    .join-us-page-main {
        padding-top: 60px;
        padding-bottom: 100px;
    }
    
    .application-form-container {
        margin-left: 10px;
        margin-right: 10px;
    }
    
    /* Adjust file upload containers for mobile */
    .form-group label[for*="photo"],
    .form-group label[for="criminal_record"],
    .form-group label[for="address_document"] {
        height: auto;
        min-height: 80px;
        padding: 10px;
    }
    
    /* Make sure inputs are large enough to tap on mobile */
    .form-group input {
        min-height: 44px;
    }
    
    /* Ensure date inputs are properly styled */
    .form-group input[type="date"] {
        appearance: none;
        -webkit-appearance: none;
        padding-right: 10px;
    }
}

/* Tablet styling */
@media (min-width: 769px) and (max-width: 1024px) {
    .join-us-page-main {
        padding-top: 80px;
    }
    
    /* Ensure the form container has proper spacing */
    .application-form-container {
        padding: 25px;
    }
}

/* Notification styling */
.notification-success,
.notification-error {
    animation: fadeInNotification 0.5s ease forwards;
}

@keyframes fadeInNotification {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form button hover effect */
.application-form-container button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(219, 175, 68, 0.3);
}

/* About Us Page Specific Styles */
.about-us-page-main {
    min-height: 100vh;
    padding-bottom: 80px; /* Space for footer */
}

.about-us-page-main h2 {
    position: relative;
}

.about-us-page-main h2 span.absolute {
    transition: width 0.3s ease;
}

.about-us-page-main h2:hover span.absolute {
    width: 70%;
}

/* Animation for the feature cards */
.about-us-page-main .grid > div {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInFeature 0.5s ease forwards;
}

.about-us-page-main .grid > div:nth-child(1) {
    animation-delay: 0.2s;
}

.about-us-page-main .grid > div:nth-child(2) {
    animation-delay: 0.4s;
}

.about-us-page-main .grid > div:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInFeature {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles for About Us page */
@media (max-width: 768px) {
    .about-us-page-main {
        padding-top: 60px;
        padding-bottom: 100px;
    }
    
    .about-us-page-main h2 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .about-us-page-main .grid {
        gap: 1rem;
    }
    
    .about-us-page-main .grid > div {
        padding: 1.25rem;
    }
}

/* Tablet specific styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .about-us-page-main {
        padding-top: 80px;
    }
    
    .about-us-page-main .flex-col.lg\:flex-row {
        gap: 2rem;
    }
}

/* Corporate Page Specific Styles */
.corporate-page-main {
    min-height: 100vh;
    padding-bottom: 80px; /* Space for footer */
}

.corporate-page-main section {
    animation: fadeInSection 0.8s ease-out forwards;
    opacity: 0;
}

.corporate-page-main section:nth-child(1) {
    animation-delay: 0.1s;
}

.corporate-page-main section:nth-child(2) {
    animation-delay: 0.3s;
}

.corporate-page-main section:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes fadeInSection {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Styled image borders animation */
.corporate-page-main .relative .absolute {
    transition: all 0.5s ease;
}

.corporate-page-main .relative:hover .absolute {
    border-color: var(--banquet-gold-light);
    transform: translate(0, 0);
}

/* Responsive adjustments for corporate page */
@media (max-width: 768px) {
    .corporate-page-main {
        padding-top: 60px;
        padding-bottom: 100px;
    }
    
    .corporate-page-main h2 {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .corporate-page-main h2 .block {
        margin: 0.5rem auto 0;
    }
    
    .corporate-page-main .relative .absolute {
        width: 70%;
        height: 70%;
    }
    
    .corporate-page-main .text-banquet-primary.font-bold {
        text-align: center;
    }
}

/* Tablet specific styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .corporate-page-main {
        padding-top: 80px;
    }
    
    .corporate-page-main .relative .absolute {
        width: 75%;
        height: 75%;
    }
}

/* Services Page Specific Styles */
.services-page-main {
    min-height: 100vh;
    padding-bottom: 80px; /* Footer için alan */
}

/* Service icons styling */
.service-icon {
    /* Exact banquet-gold color (#DBAF44) filter */
    filter: brightness(0) saturate(100%) invert(73%) sepia(57%) saturate(673%) hue-rotate(12deg) brightness(98%) contrast(92%);
    transition: all 0.3s ease;
    /* Crisp image rendering */
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    /* Prevent blurriness */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    /* Font smoothing for better quality */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Display properties */
    object-fit: contain;
    object-position: center;
    max-width: 100%;
    height: auto;
    display: block;
    /* Prevent interpolation scaling */
    width: auto;
    min-width: 48px;
    min-height: 48px;
}

.service-icon:hover {
    /* Brighter banquet-gold on hover */
    filter: brightness(0) saturate(100%) invert(83%) sepia(67%) saturate(773%) hue-rotate(12deg) brightness(108%) contrast(102%);
    -webkit-transform: translate3d(0, 0, 0) scale(1.05);
    transform: translate3d(0, 0, 0) scale(1.05);
}

/* Icon container styling for better clarity */
.services-page-main .flex.items-center.justify-center {
    position: relative;
    overflow: hidden;
}

.services-page-main .flex.items-center.justify-center::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: rgba(219, 175, 68, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.services-page-main .bg-gray-800:hover .flex.items-center.justify-center::before {
    opacity: 1;
}

/* Services sections için animasyonlar */
.services-page-main section {
    animation: fadeInSection 0.8s ease-out forwards;
    opacity: 0;
}

.services-page-main section:nth-child(1) {
    animation-delay: 0.1s;
}

.services-page-main section:nth-child(2) {
    animation-delay: 0.3s;
}

.services-page-main section:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes fadeInSection {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service cards hover effects */
.services-page-main .bg-gray-800 {
    transition: all 0.3s ease;
}

.services-page-main .bg-gray-800:hover {
    background-color: rgba(31, 41, 55, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(219, 175, 68, 0.2);
}

/* Icon animations */
.services-page-main .bg-gray-800 i {
    transition: all 0.3s ease;
}

.services-page-main .bg-gray-800:hover i {
    transform: scale(1.1);
    color: var(--banquet-gold-light);
}

/* Responsive styles for Services page */
@media (max-width: 768px) {
    .services-page-main {
        padding-top: 60px;
        padding-bottom: 100px;
    }
    
    .services-page-main h1 {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .services-page-main h2 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .services-page-main .grid {
        gap: 1rem;
    }
    
    .services-page-main .bg-gray-800 {
        padding: 1.25rem;
    }
    
    .services-page-main .relative .absolute {
        width: 70%;
        height: 70%;
    }
}

/* Tablet specific styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-page-main {
        padding-top: 80px;
    }
    
    .services-page-main .relative .absolute {
        width: 75%;
        height: 75%;
    }
}

/* Certification Toast Sidebar Banner Styles */
.certification-toast {
    position: fixed;
    top: 75%; /* Moved even lower on the screen */
    left: -380px; /* Completely hidden when closed */
    transform: translateY(-50%);
    z-index: 25;
    width: 380px;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: auto;
    display: block;
    visibility: visible;
}

.certification-toast.open {
    left: 0; /* Slide in when open */
}

.certification-toast-content {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(219, 175, 68, 0.4);
    border-left: none; /* No left border for sidebar effect */
    border-radius: 0 12px 12px 0;
    padding: 20px;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    min-height: 120px;
}

/* Toggle tab that's always visible */
.certification-toggle-tab {
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    width: 40px;
    height: 60px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(219, 175, 68, 0.4);
    border-left: none;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    animation: pulseAttention 3s ease-in-out infinite;
    /* This ensures the tab is always visible even when sidebar is closed */
    z-index: 26;
}

.certification-toggle-tab:hover {
    background: rgba(219, 175, 68, 0.2);
    border-color: rgba(219, 175, 68, 0.6);
    animation: none; /* Stop pulse animation on hover */
}

.certification-toggle-tab i {
    color: var(--banquet-gold);
    font-size: 16px;
    transition: all 0.3s ease;
}

.certification-toggle-tab:hover i {
    transform: scale(1.2);
    color: var(--banquet-gold-light);
}

.certification-toast.open .certification-toggle-tab {
    animation: none; /* No pulse when open */
}

.certification-toast.open .certification-toggle-tab i {
    transform: rotate(180deg);
}

/* Pulse animation to draw attention */
@keyframes pulseAttention {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(219, 175, 68, 0.4);
    }
    50% {
        transform: translateY(-50%) scale(1.05);
        box-shadow: 0 0 0 8px rgba(219, 175, 68, 0);
    }
}

.certification-close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: rgba(219, 175, 68, 0.7);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 10px;
    z-index: 30;
    opacity: 0.8;
}

.certification-close-btn:hover {
    background: var(--banquet-gold);
    opacity: 1;
    transform: scale(1.1);
}

.certification-image {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    background: white;
    border-radius: 8px;
    padding: 6px;
    border: 1px solid rgba(219, 175, 68, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.certification-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.certification-text {
    flex: 1;
    min-width: 0;
}

.certification-text h3 {
    color: var(--banquet-gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.certification-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.7rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.certification-text p span {
    color: var(--banquet-gold);
    font-weight: 600;
}

.certification-text p:last-child {
    margin-bottom: 0;
    color: var(--banquet-gold);
    font-weight: 600;
    font-size: 0.65rem;
    border-left: 3px solid rgba(219, 175, 68, 0.6);
    padding-left: 8px;
    background: rgba(219, 175, 68, 0.1);
    padding: 6px 8px;
    border-radius: 4px;
    opacity: 0.95;
}

/* Responsive adjustments for certification sidebar */
@media (max-width: 768px) {
    .certification-toast {
        width: 300px;
        left: -300px; /* Completely hidden on mobile */
        top: 80%; /* Even lower on mobile */
    }
    
    .certification-toast-content {
        padding: 15px;
        gap: 10px;
        min-height: 100px;
    }
    
    .certification-toggle-tab {
        width: 35px;
        height: 50px;
        right: -35px;
    }
    
    .certification-toggle-tab i {
        font-size: 14px;
    }
    
    .certification-image {
        width: 60px;
        height: 60px;
    }
    
    .certification-text h3 {
        font-size: 0.8rem;
    }
    
    .certification-text p {
        font-size: 0.65rem;
    }
    
    .certification-text p:last-child {
        font-size: 0.6rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .certification-toast {
        width: 350px;
        left: -350px; /* Completely hidden on tablet */
    }
}

/* Hide sidebar when footer is visible */
.minimal-footer.visible ~ main .certification-toast,
body.footer-visible .certification-toast {
    left: -400px !important;
    pointer-events: none !important;
}

/* Ensure sidebar is above other elements */
.certification-toast {
    z-index: 25 !important;
} 