@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');

/* Logo Styles */
.navbar-brand .logo-ornament,
.navbar-brand .logo-main,
.navbar-brand .logo-tagline {
    color: #000000 !important;
    background: none !important;
    background-clip: initial !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #000000 !important;
}
.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.card:hover .team-social {
    opacity: 1;
}

.team-social a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 3px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: #d4af37;
    color: #fff;
    transform: translateY(-3px);
}

/* FAQ Section Styling */
.custom-accordion .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 0.5rem !important;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.custom-accordion .accordion-button {
    background-color: #fff;
    color: #2c3e50;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
    position: relative;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #0d6efd;
    box-shadow: none;
}

.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-size: 1.25rem;
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d6efd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-accordion .accordion-body {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.custom-accordion .accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Divider */
.divider {
    width: 80px;
    height: 3px;
    display: block;
    margin: 0 auto 1.5rem;
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-accordion .accordion-button {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .custom-accordion .accordion-body {
        padding: 1rem;
    }
}


/* Gallery Filter Buttons */
.filter-button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 -0.25rem;
    padding-bottom: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.filter-button-group::-webkit-scrollbar {
    display: none;
}

.filter-button-group .btn {
    margin: 0.25rem;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.filter-button-group .btn.active {
    background-color: #dc3545;
    color: white;
    border-color: #dc3545;
}

/* Gallery Section */
#galleryFilter .btn {
    transition: all 0.3s ease;
    border-radius: 50px;
    font-weight: 500;
    border: 2px solid #dee2e6;
    margin: 0 5px 10px;
}

#galleryFilter .btn:hover,
#galleryFilter .btn.active {
    background-color: #dc3545;
    color: #fff !important;
    border-color: #dc3545;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
}

/* Gallery Card */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 280px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: #f8f9fa;
}

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

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

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

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 20px;
    text-align: center;
    transform: scale(0.9);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
    transform: scale(1);
}

.gallery-overlay h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-overlay .badge {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 50px;
    background-color: rgba(220, 53, 69, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-zoom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.25rem;
    margin-top: 15px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.gallery-zoom:hover {
    background: #fff;
    color: #dc3545;
    transform: rotate(90deg);
    border-color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    .gallery-card {
        height: 240px;
    }
}

@media (max-width: 991.98px) {
    .gallery-card {
        height: 220px;
    }
    
    .gallery-overlay h5 {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .gallery-card {
        height: 280px;
    }
    
    #galleryFilter .btn {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
        margin: 0 3px 8px;
    }
}

@media (max-width: 575.98px) {
    .gallery-card {
        height: 250px;
    }
    
    .gallery-overlay h5 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .gallery-zoom {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-top: 10px;
    }
}

/* Service Card Styles */
.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    border: none !important;
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    background: #fff;
}

.service-card .card-img-top {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    aspect-ratio: 4/3;
}

.service-card .position-relative {
    height: 250px;
    min-height: 250px;
    max-height: 250px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-content {
    text-align: center;
    padding: 1.5rem;
    color: white;
}

.service-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem !important;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    min-height: 200px;
}

.service-card .card-body h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-card .card-body p {
    color: #7f8c8d;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.service-card .btn-outline-dark {
    border-width: 1px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-card .btn-outline-dark:hover {
    background: #2c3e50;
    color: white;
    border-color: #2c3e50;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
}

.service-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 1;
}

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

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
    opacity: 0.9;
}

.service-card .card-body h4 {
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-card .card-body p {
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-card .d-flex {
    margin-top: auto;
}

.gallery-zoom {
    color: white;
    font-size: 1.5rem;
    margin-top: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.gallery-zoom:hover {
    color: #f8f9fa;
    transform: scale(1.2);
}

/* Mobile Responsive Adjustments */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

.container, .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

/* Fix for mobile view */
@media (max-width: 767.98px) {
    .navbar-brand {
        margin-left: 0;
        padding-left: 0;
    }
    
    .navbar-toggler {
        margin-right: 0;
        padding: 0.25rem 0.5rem;
    }
    
    .navbar-collapse {
        padding: 10px 0;
    }
    
    .logo-ornament {
        font-size: 2.5rem !important;
        margin-right: 3px !important;
    }
    
    .logo-main {
        font-size: 1.8rem !important;
    }
    
    .logo-tagline {
        font-size: 0.55rem !important;
        margin-top: 2px !important;
        letter-spacing: 1.5px !important;
    }
}

@media (max-width: 991.98px) {
    .gallery-item {
        flex: 0 0 calc(50% - 10px); /* Tablet: 2 öğe yan yana */
    }
}

/* Service Cards */
.service-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
    z-index: 1;
}

.service-card .card-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.service-card:hover .service-card-img {
    transform: scale(1.1);
}

.service-card:hover .card-body {
    background: rgba(0, 0, 0, 0.7);
}

.service-card .btn-outline-light {
    border-width: 2px;
    transition: all 0.3s ease;
}

.service-card .btn-outline-light:hover {
    background: #fff;
    color: #000 !important;
}

@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 100%; /* Mobil: tek sütun */
    }
    
    .service-card .card-body {
        padding: 1.5rem !important;
    }
}

/* Modal List Styling with Icons */
.modal-body ul {
    list-style-type: none;
    padding-left: 0;
    margin: 1rem 0;
}

.modal-body ul > li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

.modal-body ul > li:before {
    font-family: 'Font Awesome 5 Free';
    content: '\f00c';
    color: #6c63ff;
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.25em;
    font-size: 0.9em;
    margin-right: 0.75rem;
}

/* Different icons for different list types */
.modal-body ul.list-check > li:before {
    content: '\f00c';
}

.modal-body ul.list-star > li:before {
    content: '\f005';
    color: #ffc107;
}

.modal-body ul.list-arrow > li:before {
    content: '\f061';
    color: #4caf50;
}

.modal-body ul.list-circle > li:before {
    content: '\f111';
    font-size: 0.5em;
    top: 0.75em;
}

/* Social Media Icons */
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: white !important;
    text-decoration: none;
    margin: 0 3px;
}

/* Instagram */
.social-links a[href*="instagram"] {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

/* Facebook */
.social-links a[href*="facebook"],
.social-links a[href*="fb"] {
    background: #1877F2;
}

/* Twitter */
.social-links a[href*="twitter"] {
    background: #1DA1F2;
}

/* Pinterest */
.social-links a[href*="pinterest"] {
    background: #E60023;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.social-links a i {
    font-size: 1rem;
}

/* Footer Logo Styling */
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #f3ec78, #af4261);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 0.5rem;
    position: relative;
    line-height: 1.2;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #f3ec78, #af4261);
    border-radius: 3px;
}

.footer-tagline {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaa;
    margin-top: -5px;
    display: block;
}

/* Header Logo Styling */
.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-brand .logo-ornament {
    font-family: 'Dancing Script', cursive;
    font-size: 3.2rem;
    font-weight: 700;
    color: #333;
    background: linear-gradient(45deg, #f3ec78, #af4261);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    transform: rotate(-45deg);
    margin-right: 5px;
    animation: bounce 3s ease-in-out infinite;
}

.navbar-brand .logo-main {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: #333;
    line-height: 1;
    background: linear-gradient(45deg, #f3ec78, #af4261);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    margin-right: 5px;
}

.navbar-brand .logo-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff4d4d;
    margin-top: 2px;
    display: block;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.navbar-brand .logo-tagline::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ff4d4d;
    transition: width 0.3s ease;
}

.navbar-brand:hover .logo-tagline::after {
    width: 100%;
}

.navbar-brand .logo-tagline:hover {
    color: #ff1a1a;
    opacity: 1;
}

.navbar-brand:hover .logo-tagline {
    color: #666;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes bounce {
    0%, 100% { 
        transform: rotate(-45deg) translateY(0);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    }
    50% { 
        transform: rotate(-30deg) translateY(-5px);
        text-shadow: 4px 6px 8px rgba(0, 0, 0, 0.2);
    }
}

/* Numbered lists with icons */
.modal-body ol {
    list-style-type: none;
    counter-reset: item;
    padding-left: 0;
    margin: 1rem 0;
}

.modal-body ol > li {
    counter-increment: item;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.modal-body ol > li:before {
    content: counter(item);
    color: white;
    background: #6c63ff;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
}
