بوتاجاز غورك الجديد
<style>
/* إعدادات عامة */
body {
margin: 0;
padding: 0;
font-family: 'Cairo', sans-serif;
background-color: #f8f9fa;
}
/* تنسيق قسم البطل مع تدرج لوني فخم */
.hero-section {
display: flex;
align-items: center;
justify-content: space-between;
min-height: 100vh;
padding: 0 8%;
/* تدرج لوني داكن وراقي يبرز فخامة المنتج */
background: linear-gradient(135deg, #1c1e22 0%, #000000 100%);
color: #ffffff;
overflow: hidden;
position: relative;
}
/* تأثير إضاءة خفيف في الخلفية */
.hero-section::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 100%;
height: 100%;
background: radial-gradient(circle, rgba(255,215,0,0.05) 0%, rgba(0,0,0,0) 70%);
z-index: 0;
}
/* تنسيق المحتوى النصي */
.hero-content {
flex: 1;
max-width: 50%;
z-index: 1;
padding-left: 40px;
}
/* تنسيق العنوان مع تدرج لوني ذهبي/نحاسي */
.hero-title {
font-size: 3.5rem;
font-weight: 900;
line-height: 1.3;
margin-bottom: 20px;
background: linear-gradient(to left, #f6d365 0%, #fda085 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: 2px 4px 10px rgba(0,0,0,0.3);
}
/* تنسيق الوصف الفرعي */
.hero-subtitle {
font-size: 1.3rem;
font-weight: 400;
line-height: 1.8;
color: #e0e0e0;
margin-bottom: 40px;
}
/* زر اتخاذ الإجراء (CTA) مع تدرج لوني */
.cta-button {
display: inline-block;
padding: 15px 40px;
font-size: 1.2rem;
font-weight: 700;
color: #fff;
text-decoration: none;
border-radius: 50px;
background: linear-gradient(45deg, #ff6b6b, #c0392b);
box-shadow: 0 10px 20px rgba(192, 57, 43, 0.4);
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: none;
cursor: pointer;
font-family: inherit;
}
.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 15px 25px rgba(192, 57, 43, 0.6);
}
/* تنسيق حاوية الصورة */
.hero-image-container {
flex: 1;
max-width: 50%;
z-index: 1;
display: flex;
justify-content: center;
}
/* تنسيق الصورة */
.hero-image {
width: 100%;
max-width: 600px;
border-radius: 20px;
box-shadow: 0 20px 50px rgba(0,0,0,0.5);
/* تأثير حركة خفيف للصورة لتبرز "شعلة كتقلب" */
transform: perspective(1000px) rotateY(-15deg);
transition: transform 0.5s ease;
}
.hero-image-container:hover .hero-image {
transform: perspective(1000px) rotateY(0deg) scale(1.02);
}
/* التجاوب مع الشاشات الصغيرة (الهواتف) */
@media (max-width: 991px) {
.hero-section {
flex-direction: column;
text-align: center;
padding: 120px 5% 60px;
}
.hero-content {
max-width: 100%;
padding-left: 0;
margin-bottom: 50px;
}
.hero-title {
font-size: 2.5rem;
}
.hero-image-container {
max-width: 100%;
}
.hero-image {
transform: none;
}
}
</style>
<section class="hero-section">
<div class="hero-content">
<h1 class="hero-title">بوتاجاز غورك الجديد بشعلة كتقلب لراحة وطبخ بلا حدود!</h1>
<p class="hero-subtitle">
الجودة التركية الأصلية كتقدم ليك حرية كتر في الطبخ. طيبي كيف بغيتي، ونظفي فورنوك في ثواني!
</p>
<a href="#order" class="cta-button">اطلبيه دابا</a>
</div>
<div class="hero-image-container">
<img src="main-image-4.jpeg" alt="بوتاجاز غورك بالشعلة المقلوبة" class="hero-image">
</div>
</section>