/*

Theme Name: g2

Author: g2

Author URI: https://goldappir.com

Description: https://goldappir.com

Version: 1.0.0

*/


/* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            text-decoration: none;
            list-style: none;
        }
        
        body {
            font-family: 'Vazirmatn', sans-serif;
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
            position: relative;
        }
        
        a {
            color: inherit;
        }
        
        /* Brand Bar with Floating Effect */
        .brand-bar {
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            padding: 15px 0;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            position: relative;
            overflow: hidden;
        }
        
        .brand-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
        }
        
        .floating-element {
            animation: float 3s ease-in-out infinite;
        }
        
        .dish-icon {
            font-size: 48px;
            color: #FFD700;
            margin-bottom: 10px;
        }
        
        .brand-name {
            color: #FFD700;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .brand-slogan {
            color: #fff;
            font-size: 16px;
            opacity: 0.9;
        }
        
        /* Header */
        header {
            background-color: #2a2a2a;
            padding: 20px 0;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        header h1 {
            color: #FFD700;
            font-size: 28px;
            text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
            margin: 0;
        }
        
        /* Main Content */
        .main-content {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        
        .post-content {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }
        
        .post-content h2 {
            color: #1a1a1a;
            margin-bottom: 15px;
            font-size: 24px;
        }
        
        .post-content p {
            margin-bottom: 15px;
            text-align: justify;
        }
		
        .post-content a {color:#e329c4}
		   
        .section-title {
            text-align: center;
            color: #8A2BE2; /* ??? ???? */
            font-size: 28px;
            margin: 30px 0;
            position: relative;
        }

   
        /* Features Section */
        .features-section {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 40px 0;
        }
        
        .feature {
            flex: 1;
            min-width: 250px;
            background-color: #fff;
            padding: 25px;
            margin: 10px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        }
        
        .feature-icon {
            font-size: 36px;
            color: #FFD700;
            margin-bottom: 15px;
        }
        
        .feature-title {
            font-size: 20px;
            color: #1a1a1a;
            margin-bottom: 10px;
        }
        
        .feature-desc {
            color: #666;
            font-size: 14px;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            color: #fff;
            padding: 60px 0 30px;
            position: relative;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            padding: 0 20px;
        }
        
         .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
            padding: 0 15px;
        }
       
        .footer-section h3 {
            color: #FFD700;
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        
        .footer-section p, .footer-section a {
            color: #ccc;
            margin-bottom: 10px;
            display: block;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: #FFD700;
        }
        
        .footer-contact-info {
            margin-bottom: 20px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            font-size: 20px;
            color: #fff;
            transition: all 0.3s;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .social-icon:hover {
            transform: translateY(-3px);
        }
        
        .whatsapp-icon {
            background-color: #25D366;
        }
        
        .telegram-icon {
            background-color: #0088cc;
        }
        
        .instagram-icon {
            background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            margin-top: 30px;
            color: #999;
            font-size: 14px;
        }
		
	img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin:10px 0;
}
        
        /* Floating WhatsApp Button */
        .floating-whatsapp {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 999;
            animation: pulse 2s infinite, slideIn 0.5s ease-out;
        }
        
        .whatsapp-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
            transition: all 0.3s;
            position: relative;
        }
        
        .whatsapp-btn i {
            color: white;
            font-size: 30px;
        }
        
        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
        }
        
        /* Animations */
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }
        
        @keyframes slideIn {
            from {
                transform: translateX(-100px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .features-section {
                flex-direction: column;
            }
            
            .footer-container {
                flex-direction: column;
            }
            
            .footer-section {
                margin-bottom: 30px;
                text-align: right;
            }
            
            .social-icons {
                justify-content: flex-end;
            }
            
            header h1 {
                font-size: 24px;
            }
            
            .brand-name {
                font-size: 28px;
            }
            
            .floating-whatsapp {
                left: 20px;
                bottom: 20px;
            }
            
            .whatsapp-btn {
                width: 50px;
                height: 50px;
            }
            
            .whatsapp-btn i {
                font-size: 25px;
            }
        }