:root {
            --primary-color: #4a148c;
            --secondary-color: #7b1fa2;
            --accent-color: #ce93d8;
            --dark-bg: #1a0033;
        }
        
        body {
            font-family: 'Nova Square', sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: #fff !important;
        }

        .navbar-brand span{
          font-family: 'Dancing Script', cursive;
          font-weight: 700;
          color: white;
        }
        
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        
        
        .hero-section h1 {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .hero-section p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }
        
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            border: none;
            padding: 12px 40px;
            font-size: 1.1rem;
            border-radius: 50px;
            transition: transform 0.3s, box-shadow 0.3s;
            color: white;
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(123, 31, 162, 0.4);
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
            padding-bottom: 1rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
        }
        
        .about-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .about-img {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            width: 100%;
            height: auto;
        }
        
        .about-content h4 {
            color: var(--secondary-color);
            margin-top: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .services-section {
            padding: 80px 0;
        }
        
        .service-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(123, 31, 162, 0.3);
        }
        
        .service-card img {
            height: 200px;
            object-fit: cover;
        }
        
        .service-card .card-body {
            padding: 1.5rem;
        }
        
        .service-card h5 {
            color: var(--primary-color);
            font-weight: bold;
        }

        .service-card h5 a{
            color: var(--primary-color);
            font-weight: bold;
            text-decoration: none;
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 60px 0;
            margin: 80px 0;
        }
        
        .cta-section h3 {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        
        .blog-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .blog-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
        }
        
        .blog-card img {
            height: 200px;
            object-fit: cover;
        }
        
        .zodiac-section {
            padding: 80px 0;
        }
        
        .zodiac-card {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            height: 100%;
        }
        
        .zodiac-card:hover {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            transform: scale(1.05);
        }
        
        .zodiac-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .contact-section {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(74, 20, 140, 0.05), rgba(123, 31, 162, 0.05));
        }
        
        .contact-form {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        footer {
            background: var(--dark-bg);
            color: white;
            padding: 40px 0 20px;
        }
        
        footer a {
            color: var(--accent-color);
            text-decoration: none;
        }
        
        footer a:hover {
            color: white;
        }


        
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .hero-section p {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

       /* Çerez Bildirimi */
        .cookie-notice {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 20px;
            box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
            z-index: 9999;
            display: none;
            animation: slideUp 0.5s ease;
        }
        
        .cookie-notice.show {
            display: block;
        }
        
        @keyframes slideUp {
            from {
                transform: translateY(100%);
            }
            to {
                transform: translateY(0);
            }
        }
        
        .cookie-notice .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .cookie-notice-text {
            flex: 1;
            min-width: 250px;
        }
        
        .cookie-notice-buttons {
            display: flex;
            gap: 10px;
        }
        
        .btn-cookie {
            padding: 10px 25px;
            border-radius: 50px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn-accept {
            background: white;
            color: var(--primary-color);
        }
        
        .btn-accept:hover {
            background: var(--accent-color);
            color: white;
        }
        
        .btn-close-cookie {
            background: rgba(255,255,255,0.2);
            color: white;
        }
        
        .btn-close-cookie:hover {
            background: rgba(255,255,255,0.3);
        }
        
        /* Sosyal Medya Butonları */
        .social-float {
            position: fixed;
            right: 20px;
            bottom: 20px;
            z-index: 9998;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .social-float a {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            transition: all 0.3s;
        }
        
        .social-float a:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.4);
        }
        
        .social-instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }
        
        .social-youtube {
            background: #FF0000;
        }
        
        @media (max-width: 768px) {
            .cookie-notice .container {
                flex-direction: column;
                text-align: center;
            }
            
            .social-float {
                right: 15px;
                bottom: 15px;
                gap: 10px;
            }
            
            .social-float a {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }
        }
