/* Aya Signature - Mimarlık ve Tasarım Teması */

:root {
    --primary-color: #2c3e50;
    --secondary-color: rgb(66, 100, 87);
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #2c3e50;
    --gradient-primary: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgb(66 100 87 / 60%) 100%);
    --gradient-solid: linear-gradient(135deg, #2c3e50 0%, rgb(66, 100, 87) 100%);
}

body {
    font-family: 'Playfair Display', serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Cards */
.kategori-card,
.proje-card {
    transition: all 0.3s ease;
}

.kategori-card:hover,
.proje-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15) !important;
}

/* Hero Slider - Enhanced Styles (moved to inline styles in template) */

/* Sections */
section {
    padding: 4rem 0;
}

.section-title h2 {
    position: relative;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

/* Footer */
footer {
    margin-top: auto;
}

footer a {
    transition: color 0.3s;
}

footer a:hover {
    color: white !important;
}

/* ========== GLOBAL RESPONSIVE STYLES ========== */

/* Navbar Responsive */
@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    .navbar-nav .nav-link {
        padding: 0.5rem 0;
    }
}

/* Footer Responsive */
@media (max-width: 768px) {
    footer .row > div {
        text-align: center;
        margin-bottom: 2rem;
    }
    footer .d-flex {
        justify-content: center;
    }
}

/* Cards Grid Responsive */
@media (max-width: 992px) {
    .row.g-4 > [class*="col-lg-"] {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .row.g-4 > [class*="col-md-"] {
        margin-bottom: 1.5rem;
    }
}

/* Typography Responsive */
@media (max-width: 768px) {
    body {
        font-size: 0.95rem;
    }
    .lead {
        font-size: 1.1rem;
    }
}

/* Buttons Responsive */
@media (max-width: 576px) {
    .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    .btn-lg {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

/* Images Responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Container Padding */
@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Utilities */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Additional Styles */
.feature-box {
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: #f8f9fa;
}

.process-step {
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(66, 100, 87, 0.5);
}

.stat-box {
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.team-member {
    transition: all 0.3s ease;
}

.blog-card {
    transition: all 0.3s ease;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: all 0.3s;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: rgb(66, 100, 87);
    box-shadow: 0 0 0 0.2rem rgba(66, 100, 87, 0.25);
}

.gallery-item {
    transition: all 0.4s ease;
}

.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Scroll Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: slideInUp 0.8s ease-out forwards;
}

/* Hover Effects */
.btn {
    transition: all 0.3s ease;
    border-radius: 10px;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Section Spacing */
section {
    position: relative;
}

/* Gradient Backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgb(66 100 87 / 60%) 100%);
}

.bg-gradient-light {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

/* Card Enhancements */
.card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Badge Styles */
.badge {
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: 20px;
}

/* Responsive Enhancements - Additional Mobile Styles */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero-slider .item {
        min-height: 500px;
    }
    
    .stat-box .number {
        font-size: 2.5rem;
    }
    
    .process-step .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Grid adjustments */
    .row.g-4 {
        margin-left: -0.75rem;
        margin-right: -0.75rem;
    }
    .row.g-4 > * {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    /* Spacing adjustments */
    .mb-4 {
        margin-bottom: 1.5rem !important;
    }
    .mt-4 {
        margin-top: 1.5rem !important;
    }
    .mt-5 {
        margin-top: 2rem !important;
    }
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s ease-in-out infinite;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: rgb(66, 100, 87);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2c3e50;
}
