/*
Theme Name: Novare Custom Theme
Author: Novare
Description: قالب مخصص لمتجر Novare بتصميم التمرير الانسيابي الفاخر
Version: 1.0
*/

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

.scroll-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

.scroll-section {
    height: 100vh;
    width: 100%;
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ألوان خلفية مؤقتة للتمييز بين الأقسام */
#section-1 { 
    background-image: url('https://novare-iq.com/wp-content/uploads/2026/06/file_00000000cf5c722fbe122b84978219dc.png');
    background-size: cover;
    background-position: center center;
    background-color: #000;
}

/* لجعل النص واضحاً فوق الصورة إذا كانت فاتحة قليلاً */
#section-1 .content {
    background-color: rgba(0, 0, 0, 0.5); /* تظليل خفيف خلف النص */
    padding: 40px;
    border-radius: 15px;
}
#section-2 { background-color: #1a1a1a; }
#section-3 { background-color: #2a2a2a; }

.content h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.action-btn {
    padding: 15px 30px;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.action-btn:hover {
    background-color: #fff;
    color: #000;
}
/* تنسيق مجموعة الأزرار */
.buttons-group {
    display: flex;
    gap: 15px; /* المسافة بين الزرين */
    justify-content: center;
    margin-top: 20px;
}

/* تنسيق زر اللون الأسود */
.black-btn {
    background-color: #111;
    color: #fff;
    border: 1px solid #444;
}
.black-btn:hover {
    background-color: #fff;
    color: #000;
}

/* تنسيق زر اللون الأبيض */
.white-btn {
    background-color: #fff;
    color: #000;
    border: 1px solid #fff;
}
.white-btn:hover {
    background-color: #e0e0e0;
}