/* Genel Stiller */
:root {
    --primary: #f27025;
    --secondary: #6c757d;
    --success: #198754;
    --info: #0dcaf0;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #1e293b;
    --font-main: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --font-heading: 'Roboto', "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

body {
    font-family: var(--font-main);
    color: #333;
    line-height: 1.6;
    background-color: #f1f5f9; /* Modern light background */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: inherit;
}

a:hover {
    color: var(--primary);
}

/* Hero Slider */
.carousel-item {
    height: 600px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-caption {
    bottom: 100px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 5px;
}

.carousel-caption h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.carousel-caption p {
    font-size: 1.2rem;
}

/* Kart Stilleri */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.tour-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.tour-card .card-title a {
    color: #333;
    transition: color 0.3s ease;
}

.tour-card:hover .card-title a {
    color: var(--primary);
}

.icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Rezervasyon Formu */
#reservationForm .form-control, 
#reservationForm .form-select {
    border-radius: 5px;
    padding: 10px 15px;
}

/* Footer */
.footer {
    background-color: #023f71;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .carousel-item {
        height: 400px;
    }
    
    .carousel-caption {
        bottom: 20px;
    }
    
    .carousel-caption h2 {
        font-size: 1.8rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
}

/* Brand Buttons */
.btn-brand-primary {
    background: linear-gradient(135deg, #f27025, #ff2d78);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-brand-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 45, 120, 0.4);
    color: #fff;
}

.btn-outline-brand-primary {
    border: 2px solid #f27025;
    color: #f27025;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 10px;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-brand-primary:hover {
    background: #f27025;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-brand-dark {
    border: 2px solid #333;
    color: #333;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 10px;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-brand-dark:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
}
