<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>فروع روزانا فاشن | RWZANA FASHION</title>
<link href="https://fonts.googleapis.com/css2?family=Tajawal:wght@300;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
:root {
--primary-color: #1a1a1a; /* أسود ملكي */
--accent-color: #c5a059; /* ذهبي فخم */
--bg-color: #fcfcfc;
--text-color: #333;
}
body {
font-family: 'Tajawal', sans-serif;
background-color: var(--bg-color);
margin: 0;
padding: 0;
color: var(--text-color);
}
.container {
max-width: 1100px;
margin: 50px auto;
padding: 20px;
text-align: center;
}
.header-section {
margin-bottom: 50px;
}
.header-section h1 {
font-size: 2.5rem;
color: var(--primary-color);
letter-spacing: 2px;
margin-bottom: 10px;
text-transform: uppercase;
}
.header-section p {
color: var(--accent-color);
font-weight: 500;
font-size: 1.2rem;
}
.locations-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
padding: 10px;
}
.location-card {
background: #fff;
border-radius: 15px;
padding: 40px 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
transition: all 0.4s ease;
border: 1px solid #eee;
position: relative;
overflow: hidden;
}
.location-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: var(--accent-color);
transform: scaleX(0);
transition: transform 0.4s ease;
}
.location-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.location-card:hover::before {
transform: scaleX(1);
}
.icon-box {
font-size: 40px;
color: var(--accent-color);
margin-bottom: 20px;
}
.city-name {
font-size: 1.4rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 15px;
}
.address-detail {
font-size: 1rem;
color: #666;
margin-bottom: 30px;
min-height: 50px;
line-height: 1.6;
}
.map-btn {
display: inline-block;
background-color: var(--primary-color);
color: #fff;
padding: 12px 30px;
border-radius: 50px;
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
border: 2px solid var(--primary-color);
}
.map-btn i {
margin-left: 8px;
}
.map-btn:hover {
background-color: transparent;
color: var(--primary-color);
}
/* لمسة جمالية للخلفية */
.bg-pattern {
position: fixed;
top: 0; left: 0; width: 100%; height: 100%;
z-index: -1;
opacity: 0.03;
background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
}
@media (max-width: 768px) {
.header-section h1 { font-size: 1.8rem; }
.container { margin: 20px auto; }
}
</style>
</head>
<body>
<header class="header-section">
RWZANA FASHION
المملكة العربية السعودية - فروعنا
</body>
</html>