@charset "utf-8";
/* CSS Document */



        :root {
            --spicy-red: #FF6B35;
            --spicy-orange: #FF8E35;
            --spicy-yellow: #FFB135;
            --dark-text: #333;
            --light-text: #fff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            line-height: 1.6;
            color: var(--dark-text);
            overflow-x: hidden;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(to right, var(--spicy-red), var(--spicy-orange));
            color: var(--light-text);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .container {
            padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
        }
        
		
		
		
		
		.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}
		
		
		
		
		
		
		
		
		
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
        }
        
        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: linear-gradient(45deg, var(--spicy-red), var(--spicy-yellow));
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            position: relative;
            overflow: hidden;
        }
        
        .mobile-menu-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: 0.5s;
        }
        
        .mobile-menu-btn:hover::before {
            left: 100%;
        }
        
        .mobile-menu-btn span {
            background: linear-gradient(45deg, #fff, #f0f0f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 2rem;
        }
        
        nav ul li a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--spicy-yellow);
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--light-text);
            margin-top: 60px;
        }
        
        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 600px;
        }
        
        .btn {
            display: inline-block;
            background: var(--spicy-red);
            color: var(--light-text);
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background 0.3s, transform 0.3s;
        }
        
        .btn:hover {
            background: var(--spicy-orange);
            transform: translateY(-3px);
        }
        
        /* Sections */
        section {
            padding: 1rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            color: var(--spicy-red);
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--spicy-orange);
        }
        
        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .about-text {
            padding: 1rem;
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
        }
        
        /* Areas Section */
        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .area-card {
            background: #f9f9f9;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .area-card:hover {
            transform: translateY(-10px);
        }
        
        .area-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .area-content {
            padding: 1.5rem;
        }
        
        .area-content h3 {
            color: var(--spicy-red);
            margin-bottom: 1rem;
        }
        
        .area-content p {
            margin-bottom: 1rem;
        }
        
        /* Therapists Section */
        .therapists-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .therapist-card {
            text-align: center;
            background: #f9f9f9;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .therapist-card:hover {
            transform: translateY(-10px);
        }
        
        .therapist-img {
            height: 520px;
            background-size: cover;
            background-position: center;
        }
        
        .therapist-info {
            padding: 1.5rem;
        }
        
        .therapist-info h3 {
            color: var(--spicy-red);
            margin-bottom: 0.5rem;
        }
        
        .therapist-info p {
            color: #666;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(to right, var(--spicy-red), var(--spicy-orange));
            color: var(--light-text);
            padding: 3rem 0;
            text-align: center;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 3fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section h3 {
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--spicy-yellow);
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer-section ul li a {
            color: var(--light-text);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section ul li a:hover {
            color: var(--spicy-yellow);
        }
        
        .copyright {
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--spicy-red);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--spicy-orange);
            transform: translateY(-3px);
        }
        
        /* Social Buttons */
        .social-drawer {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 999;
        }
        
        .social-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-bottom: 15px;
            color: white;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            transition: all 0.3s;
            overflow: hidden;
            position: relative;
        }
        
        .telegram-btn {
            background: #0088cc;
        }
        
        .call-btn {
            background: var(--spicy-red);
        }
        
        .social-btn:hover {
            transform: translateY(-5px);
        }
        
        .social-btn i {
            font-size: 24px;
        }
        
        /* Mobile Styles */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
			
			
			.container {
            width: 100%;
                      
            display: flex;
			flex-direction: column;
			
            
   
        }
			
			
			
			
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: linear-gradient(to right, var(--spicy-red), var(--spicy-orange));
                flex-direction: column;
                padding: 1rem 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav ul li {
                margin: 0;
                text-align: center;
            }
            
            nav ul li a {
                display: block;
                padding: 1rem;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
    </style>