/* css/style.css (Minified versiyon için araçlarla minify edin) */
body { font-family: Arial, sans-serif; background: white; color: black; }
.navbar-brand { color: goldenrod; font-weight: bold; }
.btn-primary { background: goldenrod; border: none; }
.carousel img { height: 400px; object-fit: cover; }
img { max-width: 100%; height: auto; } /* Responsive images */
@media (max-width: 768px) { .carousel img { height: 200px; } }
/* Lazy loading class */
.lozad { opacity: 0; transition: opacity 0.5s; }
.lozad.loaded { opacity: 1; }
/* Altın sarısı vurgular */
h1, h2, h3 { color: goldenrod; }
/* Pastel tonlar için düğün temalı */
.services { background: #f8f1e9; } /* Pastel bej */
.nav-link {
    font-weight: 500;
    transition: 0.3s;
}

.nav-link:hover {
    color: #caa75c !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

@media (max-width: 992px) {
    #navbarNav {
        padding: 20px 0;
    }
    .nav-link {
        padding: 10px 0;
        font-size: 18px;
    }
}
.footer-minimal {
    background-color: #0e0e0e;
    color: #b5b5b5;
    padding: 50px 0 25px;
    font-size: 14px;
}

.footer-brand {
    font-size: 18px;
    letter-spacing: 1px;
    color: #ffffff;
    font-weight: 500;
}

.footer-sub {
    margin-top: 6px;
    font-size: 13px;
    color: #8f8f8f;
}

.footer-link {
    color: #b5b5b5;
    text-decoration: none;
    margin: 0 6px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-sep {
    color: #555;
    margin: 0 4px;
}

.footer-bottom {
    margin-top: 35px;
    padding-top: 15px;
    border-top: 1px solid #1f1f1f;
    font-size: 12px;
    color: #666;
}


