/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

/* Temel Font Ayarları */
:root {
    --primary-font: 'Poppins', sans-serif;
    --secondary-font: 'Montserrat', sans-serif;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--primary-font);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .section-title {
    font-family: var(--secondary-font);
    font-weight: 600;
}

/* Navbar Stilleri */
.navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand img {
    height: 50px;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.nav-link {
    font-family: var(--primary-font);
    font-weight: 500;
    color: #333 !important;
    padding: 8px 15px !important;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #e75480 !important;
}

.firma-ekle-btn {
    background-color: #e75480;
    color: white !important;
    border-radius: 25px;
    padding: 10px 25px !important;
    transition: all 0.3s ease;
}

.firma-ekle-btn:hover {
    background-color: #d64d7b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 107, 107, 0.2);
}

/* Slider Stilleri */
.carousel {
    margin-bottom: 0;
    width: 100%;
    overflow: hidden;
}

.carousel-item {
    height: auto;
    max-height: 600px;
    background-color: #000;
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

@media (max-width: 768px) {
    .carousel-item {
        max-height: 500px;
    }
    
    .carousel-item img {
        max-height: 500px;
        object-fit: cover;
        object-position: center;
    }
    
    .navbar-brand img {
        height: 40px;
    }
    
    .nav-link {
        padding: 6px 10px !important;
        margin: 2px 0;
    }
    
    .firma-ekle-btn {
        margin-top: 10px;
        text-align: center;
        display: inline-block;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        max-height: 400px;
    }
    
    .carousel-item img {
        max-height: 400px;
        object-fit: cover;
        object-position: center;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 15%;
    }
}

/* Slider kontrolleri için iyileştirmeler */
.carousel-control-prev,
.carousel-control-next {
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-indicators {
    bottom: 10px;
    margin-bottom: 0;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 4px;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
}

.carousel-indicators button.active {
    background-color: #fff;
}

/* Hakkımızda Section Stilleri */
.about-section {
    background-color: #fff9f8;
    position: relative;
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 40px;
}

.about-image {
    position: relative;
    padding: 20px;
}

.about-image::before {
    content: '';
    position: absolute;
    width: 95%;
    height: 95%;
    background-image: url('assets/img/hakkimizda-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    top: 40px;
    left: -40px;
    z-index: 1;
    mix-blend-mode: multiply;
    opacity: 0.8;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    position: relative;
    border-radius: 50%;
    z-index: 2;
}

.section-title {
    color: #333;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #e75480, #ffc0cb);
}

.section-text {
    font-family: var(--primary-font);
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-image {
        max-width: 300px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Masaj ve SPA Salonları Stilleri */
.spa-salons {
    background-color: #fff9f8;
    padding: 80px 0;
    position: relative;
}

.spa-salons::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(45deg, #ffd6d6, #ffe9e9);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
    z-index: 1;
}

.spa-salons .container {
    position: relative;
    z-index: 2;
}

.main-title {
    color: #333;
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
    margin-bottom: 70px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #e75480, #ffc0cb);
    border-radius: 2px;
}

.row {
    justify-content: center;
}

.col-lg-6 {
    max-width: 450px;
}

.salon-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.salon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.15);
}

.salon-logo {
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    padding: 35px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 107, 107, 0.1);
    position: relative;
    overflow: hidden;
}

.salon-logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,107,107,0.05) 0%, rgba(255,255,255,0) 70%);
    animation: rotateBg 15s linear infinite;
}

@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.salon-logo img {
    max-width: 220px;
    height: auto;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 5px 15px rgba(255, 107, 107, 0.2));
}

.salon-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 20px rgba(255, 107, 107, 0.3));
}

.salon-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, rgba(255, 107, 107, 0.2), transparent);
}

.salon-info {
    padding: 20px 25px;
}

.salon-title {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.salon-address {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: start;
    gap: 8px;
}

.salon-address i {
    color: #e75480;
    margin-top: 4px;
}

.salon-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature-tag {
    background: #fff0f5;
    color: #e75480;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.salon-contact {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e75480;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.1);
}

.contact-icon:hover {
    background: #e75480;
    color: #fff;
    transform: translateY(-3px);
}

.detail-btn {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background: #e75480;
    color: #fff;
    border: none;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.detail-btn:hover {
    background: #d64d7b;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
}

@media (max-width: 768px) {
    .col-lg-6 {
        max-width: 100%;
    }
    
    .salon-logo img {
        max-width: 180px;
    }

    .salon-contact {
        justify-content: center;
    }
}

.divider-image {
    width: 100%;
    height: 70px;
    background-image: url('assets/img/ara.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 40px 0;
    filter: brightness(0) saturate(100%) invert(15%) sepia(83%) saturate(2878%) hue-rotate(346deg) brightness(93%) contrast(104%);
}

/* İş İlanları Section Stilleri */
.job-section {
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    padding: 80px 0;
    position: relative;
}

.job-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(255, 107, 107, 0.1);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.15);
}

.job-header {
    background: linear-gradient(135deg, #e75480 0%, #db7093 100%);
    padding: 20px;
    color: #fff;
}

.job-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.job-company {
    font-size: 1rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-content {
    padding: 20px;
}

.job-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.95rem;
}

.job-details i {
    color: #e75480;
    font-size: 1.1rem;
    width: 24px;
}

.job-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.job-tag {
    background: #fff0f5;
    color: #e75480;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.apply-btn {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background: #e75480;
    color: #fff;
    border: none;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.apply-btn:hover {
    background: #d64d7b;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
}

/* Tüm Masaj Salonları Section Stilleri */
.all-salons {
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    padding: 80px 0;
    position: relative;
}

.salon-showcase {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(231, 84, 128, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.salon-showcase:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(231, 84, 128, 0.15);
}

.salon-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.salon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.salon-showcase:hover .salon-image img {
    transform: scale(1.1);
}

.salon-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(231, 84, 128, 0.9);
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.salon-rating i {
    color: #ffd700;
}

.salon-info-box {
    padding: 20px;
}

.salon-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e75480;
    margin-bottom: 10px;
}

.salon-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.salon-location i {
    color: #e75480;
}

.salon-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.service-tag {
    background: #fff0f5;
    color: #e75480;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.salon-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fff2f2;
    border-top: 1px solid rgba(89, 0, 0, 0.1);
}

.price-range {
    color: #e75480;
    font-weight: 500;
    font-size: 0.9rem;
}

.view-salon {
    background: #e75480;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.view-salon:hover {
    background: #d64d7b;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .salon-image {
        height: 180px;
    }
}

/* Footer Stilleri */
.footer {
    background: linear-gradient(135deg, #e75480 0%, #db7093 100%);
    color: #fff;
    padding: 70px 0 20px;
    position: relative;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    justify-content: space-between;
}

.footer .col-lg-4 {
    width: calc(33.333% - 30px);
    padding: 0 15px;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .footer .col-lg-4 {
        flex: 0 0 calc(33.333% - 30px);
        max-width: calc(33.333% - 30px);
        margin-bottom: 0;
    }
}

@media (max-width: 991px) {
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer .col-md-12,
    .footer .col-md-6 {
        margin-bottom: 30px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-heading {
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-about {
        text-align: center;
    }
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    filter: brightness(0) invert(1);
}

.footer-about {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-heading {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.8rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #fff;
    color: #e75480;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.5s ease-out;
}

.scale-in.active {
    opacity: 1;
    transform: scale(1);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s ease-out;
}

.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

.navbar {
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.salon-card, .job-card, .salon-showcase {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.salon-card:hover, .job-card:hover, .salon-showcase:hover {
    transform: translateY(-10px) scale(1.02);
}

.footer-social a {
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-5px) rotate(8deg);
}

.about-section {
    background-color: #fff9f8;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.about-image {
    position: relative;
    padding: 20px;
}

.about-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('assets/img/hakkimizda-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.15;
    animation: rotateBackground 30s linear infinite;
}

@keyframes rotateBackground {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.about-image img {
    width: 100%;
    max-width: 500px;
    position: relative;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(231, 84, 128, 0.15);
    transition: all 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(231, 84, 128, 0.25);
}

.section-title {
    color: #333;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #e75480, #db7093);
}

.section-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }

    .about-image {
        max-width: 350px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-text {
        font-size: 1rem;
    }
}

/* Laptop Ekranlar için Yazı Boyutları */
@media (min-width: 1024px) and (max-width: 1366px) {
    body {
        font-size: 14px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-text {
        font-size: 0.95rem;
    }

    .salon-title, .job-title {
        font-size: 1.1rem;
    }

    .salon-address, .job-company {
        font-size: 0.85rem;
    }

    .feature-tag, .job-tag, .service-tag {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .salon-location span, .job-details li span {
        font-size: 0.85rem;
    }

    .price-range {
        font-size: 0.85rem;
    }

    .detail-btn, .view-salon, .apply-btn {
        font-size: 0.8rem;
        padding: 8px 15px;
    }

    .footer-about {
        font-size: 0.85rem;
    }

    .footer-heading {
        font-size: 1.1rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-contact li span {
        font-size: 0.85rem;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 6px 12px !important;
    }

    .firma-ekle-btn {
        font-size: 0.9rem;
        padding: 8px 20px !important;
    }
}

/* İş İlanları Stilleri */
.job-listings {
    background-color: #fff;
    margin-bottom: 100px;
}

.job-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.job-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.job-tags .badge {
    margin-right: 5px;
    margin-bottom: 5px;
    font-weight: normal;
    padding: 6px 12px;
}

.container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
    box-sizing: border-box;
}

.row {
    margin-left: 0;
    margin-right: 0;
}