@charset "utf-8";
/* CSS Document */



        /* Base Styles and Color Theme */
        :root {
            --color-primary: #e91e63; /* Deep pink */
            --color-secondary: #9c27b0; /* Purple */
            --color-accent: #ff4081; /* Bright pink */
            --color-dark: #2c2c54; /* Dark purple */
            --color-light: #f8f9fa; /* Light gray */
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
		
		 html {
            scroll-behavior: smooth;
        }
		
		
		
		
		
		
        body {
            background-color: var(--color-light);
            color: #333;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        /* Header Styles */
        header {
            background-color: var(--color-dark);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--color-accent);
        }
        
        /* Navigation */
        .desktop-nav ul {
            display: flex;
            list-style: none;
        }
        
        .desktop-nav li {
            margin-left: 1.5rem;
        }
        
        .desktop-nav a {
            color: white;
            font-weight: 500;
            transition: color 0.3s;
            padding: 0.5rem 0;
            position: relative;
        }
        
        .desktop-nav a:hover {
            color: var(--color-accent);
        }
        
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--color-accent);
            transition: width 0.3s;
        }
        
        .desktop-nav a:hover::after {
            width: 100%;
        }
        
        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
            background-size: 200% 100%;
            color: white;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .mobile-menu-btn::before {
            content: 'MENU';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(90deg, var(--color-accent), var(--color-primary), var(--color-secondary));
            background-size: 200% 100%;
            animation: gradientMove 3s infinite linear;
        }
        
        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--color-dark);
            z-index: 999;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .mobile-menu.active {
            display: flex;
        }
        
        .mobile-menu ul {
            list-style: none;
            text-align: center;
        }
        
        .mobile-menu li {
            margin: 1.5rem 0;
        }
        
        .mobile-menu a {
            color: white;
            font-size: 1.5rem;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .mobile-menu a:hover {
            color: var(--color-accent);
        }
        
        .close-menu {
            
            top: 2rem;
            right: 2rem;
            color: white;
            font-size: 5rem;
            cursor: pointer;
            background: none;
            border: none;
        }
        
        /* Slider */
        .slider {
            width: 100%;
            height: 70vh;
            margin-top: 60px;
            position: relative;
            overflow: hidden;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            background-size: cover;
            background-position: center;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 2rem;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: white;
        }
        
        .slide h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
			 background: linear-gradient(
    to right, 
    #e61e66 20%, 
    #de1f6e 30%, 
    #ad26a0 70%, 
    #a026ab 80%
  );
  background-size: 400% auto;
   -webkit-background-clip: text;
  background-clip: text;
   -webkit-text-fill-color: transparent;
		text-fill-color: transparent;
		animation: textShine 2s ease-in-out infinite alternate;	
		}
      
	
	@keyframes textShine {
  0% {
    background-position: 0% 50%; 
  }
  100% {
    background-position: 100% 50%; 
  }
}
	
  
	  
	  
	  
	  
	  
	  
	  
	  
	  
	    
        .slide p {
            font-size: 1.2rem;
            max-width: 600px;
        }
        
        /* Main Content */
        main {
            padding: 3rem 0;
        }
        
        section {
            margin-bottom: 3rem;
        }
        
        h1, h2, h3 {
            color: var(--color-dark);
            margin-bottom: 1.5rem;
        }
        
        h1 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 2rem;
            color: var(--color-primary);
        }
        
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid var(--color-accent);
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        
        .intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
        }
        
        .intro p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        /* Models Section */
        .models {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .model-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
			text-align:center;
        }
        
        .model-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .model-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        
        .model-info {
            padding: 1.5rem;
            text-align: center;
        }
        
        .model-name {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--color-primary);
            margin-bottom: 0.5rem;
        }
        
        .model-nationality {
            color: var(--color-dark);
            font-style: italic;
        }
        
        /* Area Pages */
        .area-content {
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
        }
        
        .area-content h3 {
            color: var(--color-secondary);
            margin-top: 1.5rem;
        }
        
        .area-content p {
            margin-bottom: 1rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--color-dark);
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--color-primary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--color-accent);
            transform: translateY(-5px);
        }
        
        /* Social Buttons Drawer */
        .social-drawer {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 999;
        }
        
        .social-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            position: relative;
        }
        
        .telegram-btn {
            background-color: #0088cc;
        }
        
        .call-btn {
            background-color: #4caf50;
        }
        
        .social-btn:hover {
            transform: translateX(10px);
        }
        
        .social-btn i {
            color: white;
            font-size: 1.5rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .slider {
                height: 50vh;
            }
            
            .slide h2 {
                font-size: 1.8rem;
            }
            
            .slide p {
                font-size: 1rem;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            .models {
                grid-template-columns: 1fr;
            }
        }
    </style>