/* Anasayfa Tasarım İyileştirmeleri - RezervX */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Inter:wght@400;500;600&display=swap');

/* Ana Başlık (Hero Section) - "Çevrimiçi işinizi büyütmek için..." */
section.border-bottom h1.display-4.custom-fonts,
h1.display-4.custom-fonts {
    font-family: 'Poppins', 'Glacial Indifference Bold', sans-serif !important;
    font-weight: 700 !important;
    font-size: 3.5rem !important;
    line-height: 1.2 !important;
    letter-spacing: -1px !important;
    margin-bottom: 1.5rem !important;
    text-shadow: none !important;
    color: #1a1a1a !important;
    transform: scale(1) !important;
}

@media (max-width: 768px) {
    h1.display-4.custom-fonts {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }
}

/* Alt Başlıklar - "Kendi rezervasyon sayfanızı..." gibi */
h3.custom-fonts,
h4.h3.custom-fonts {
    font-family: 'Poppins', 'Glacial Indifference Bold', sans-serif !important;
    font-weight: 600 !important;
    font-size: 2rem !important;
    line-height: 1.4 !important;
    letter-spacing: -0.3px !important;
    color: #1a1a1a !important;
    margin-bottom: 1rem !important;
}

@media (max-width: 768px) {
    h3.custom-fonts,
    h4.h3.custom-fonts {
        font-size: 1.5rem !important;
    }
}

/* Section Başlıkları */
h2.custom-fonts {
    font-family: 'Poppins', 'Glacial Indifference Bold', sans-serif !important;
    font-weight: 600 !important;
    font-size: 2.25rem !important;
    line-height: 1.3 !important;
    letter-spacing: -0.3px !important;
    color: #1a1a1a !important;
}

/* Hero Section İyileştirmeleri */
section.border-bottom {
    padding: 5rem 0 6rem 0 !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

section.border-bottom::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(40, 110, 251, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

section.border-bottom .container {
    position: relative;
    z-index: 1;
}

/* Hero Image İyileştirmeleri */
.banner-img {
    position: relative;
    animation: float 6s ease-in-out infinite;
    padding: 2rem 0;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.banner-img img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
    border-radius: 20px;
}

.banner-img:hover img {
    transform: scale(1.05);
}

/* Hero Section Layout İyileştirmeleri */
section.border-bottom .row {
    align-items: center;
    min-height: 500px;
}

section.border-bottom .col-lg-6:first-child {
    padding-right: 3rem;
}

section.border-bottom .col-lg-6:last-child {
    padding-left: 2rem;
}

@media (max-width: 991px) {
    section.border-bottom .col-lg-6:first-child {
        padding-right: 1rem;
        margin-bottom: 3rem;
    }
    
    section.border-bottom .col-lg-6:last-child {
        padding-left: 1rem;
    }
}

/* Feature Cards İyileştirmeleri */
.rtlcard.card.shadow-hover-1 {
    transition: all 0.3s ease !important;
    border-radius: 16px !important;
    border: 1px solid #e9ecef !important;
    padding: 2rem 1.5rem !important;
    margin-bottom: 2rem !important;
    background: #ffffff !important;
}

.rtlcard.card.shadow-hover-1:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 40px rgba(40, 110, 251, 0.2) !important;
    border-color: rgba(40, 110, 251, 0.3) !important;
}

.rtlcard.card.shadow-hover-1 .mb-4 img {
    transition: transform 0.3s ease !important;
}

.rtlcard.card.shadow-hover-1:hover .mb-4 img {
    transform: scale(1.1) rotate(5deg) !important;
}

/* Feature Başlıkları */
.rtlcard h3.h6 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    color: #1a1a1a !important;
    margin-bottom: 0.75rem !important;
}

/* Workflow Section */
.workflow-img img {
    transition: transform 0.3s ease !important;
}

.workflow-img:hover img {
    transform: scale(1.1) !important;
}

/* Feature Section (Features) */
section.pt-6 {
    padding: 5rem 0 !important;
}

/* Feature Section Görselleri */
section.pt-6 .screen-one {
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
    max-width: 100% !important;
    height: auto !important;
}

section.pt-6 .screen-one:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2) !important;
}

/* Feature Section Layout */
section.pt-6 .row {
    margin-bottom: 4rem !important;
}

section.pt-6 .row:last-child {
    margin-bottom: 0 !important;
}

section.pt-6 .col-md-6,
section.pt-6 .col-lg-5,
section.pt-6 .col-lg-7 {
    display: flex;
    align-items: center;
    padding: 2rem 1rem;
}

/* Blog Section Başlığı */
section.bg-lights h3.h2.custom-fonts {
    font-size: 2.5rem !important;
    margin-bottom: 2rem !important;
}

/* Testimonials Section */
section.pt-10.bg-light {
    padding: 5rem 0 !important;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%) !important;
}

/* Get Started Section */
section.get_started {
    padding: 4rem 0 !important;
    background: linear-gradient(135deg, #286efb 0%, #1e56d9 100%) !important;
    border-radius: 20px 20px 0 0 !important;
    margin-top: 3rem !important;
}

section.get_started h3 {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

section.get_started p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem !important;
}

/* Genel Typography İyileştirmeleri */
.leads {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    color: #4a5568 !important;
}

/* Badge İyileştirmeleri */
.badge-primary-soft {
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    padding: 0.5rem 1rem !important;
}

/* Button İyileştirmeleri */
.btn-primary {
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    padding: 0.75rem 2rem !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(40, 110, 251, 0.3) !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(40, 110, 251, 0.4) !important;
}

/* Spacing İyileştirmeleri */
.mb-8 {
    margin-bottom: 3rem !important;
}

.mb-lg-8 {
    margin-bottom: 3rem !important;
}

/* Responsive İyileştirmeleri */
@media (max-width: 991px) {
    section.border-bottom {
        padding: 3rem 0 !important;
    }
    
    section.pt-6 {
        padding: 3rem 0 !important;
    }
    
    section.pt-10.bg-light {
        padding: 3rem 0 !important;
    }
}

/* Animasyon İyileştirmeleri */
[data-aos] {
    transition-duration: 0.6s !important;
}

/* Container İyileştirmeleri */
.container-fluid {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}

@media (max-width: 768px) {
    .container-fluid {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

/* Badge İyileştirmeleri - Hero Section */
.badge-primary-soft {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.5px !important;
    font-weight: 600 !important;
}

/* Hero Section Button İyileştirmeleri */
section.border-bottom .btn-primary {
    padding: 0.9rem 2.5rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    border-radius: 50px !important;
    box-shadow: 0 6px 20px rgba(40, 110, 251, 0.35) !important;
    transition: all 0.3s ease !important;
}

section.border-bottom .btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(40, 110, 251, 0.45) !important;
}

