/* ==========================================
   Rownaq Fashion - Global Theme Stylesheet
   ========================================== */
   
   .logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:60px;
    transition:.3s;
}

.logo img:hover{
    transform:scale(1.05);
}

@import url('https://googleapis.com');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fcfcfc;
    color: #333;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* গ্লোবাল হেডার ও নেভিগেশন বার */
header {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #111;
    text-decoration: none;
}

.logo span {
    color: #ff4757;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
    padding-bottom: 5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ff4757;
    border-bottom: 2px solid #ff4757;
}

.nav-icons a {
    text-decoration: none;
    color: #333;
    margin-left: 20px;
    font-size: 18px;
}

/* গ্লোবাল সেকশন টাইটেল */
.section-title {
    text-align: center;
    margin: 60px 0 40px;
    font-size: 28px;
    position: relative;
    font-weight: 600;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #ff4757;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* মেইন কনটেন্ট এরিয়া পুশ ব্যাক */
main {
    flex: 1;
}

/* গ্লোবাল ফুটার সেকশন */
footer {
    background-color: #111;
    color: #aaa;
    padding: 40px 8% 20px;
    text-align: center;
    font-size: 14px;
    margin-top: 60px;
    width: 100%;
}

footer p {
    margin-bottom: 10px;
}

/* মোবাইল রেসপন্সিভ ডিজাইন */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 15px;
    }
    .nav-links {
        margin: 15px 0;
    }
    .nav-links li {
        margin: 0 10px;
    }
}


/* ==========================================
   ১. হোম পেজ স্পেসিফিক সিএসএস (Slider & Products)
   ========================================== */
.slider-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: transform 0.8s ease;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 300;
    transform: translateY(20px);
    transition: transform 0.8s ease 0.2s;
}

.slide.active .slide-content h1,
.slide.active .slide-content p {
    transform: translateY(0);
}

.btn-shop {
    display: inline-block;
    padding: 12px 35px;
    background-color: #ff4757;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-shop:hover {
    background-color: #e03d4b;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    transition: background 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background-color: #ff4757;
}

.prev-btn { left: 30px; }
.next-btn { right: 30px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background-color: #ff4757;
    width: 25px;
    border-radius: 10px;
}

.product-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 8% 60px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.price {
    color: #ff4757;
    font-weight: 600;
    font-size: 18px;
}

@media (max-width: 768px) {
    .slide-content h1 { font-size: 32px; }
    .slider-btn { padding: 10px; font-size: 16px; }
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
}


/* ==========================================
   ২. অ্যাবাউট পেজ স্পেসিফিক সিএসেস 
   ========================================== */
.about-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 8%;
}

.about-hero {
    text-align: center;
    margin-bottom: 50px;
}

.about-hero p {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

.story-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.story-box h2 {
    color: #111;
    margin-bottom: 15px;
    font-size: 22px;
}

.story-box p {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
    text-align: justify;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #ff4757;
}

.card h3 {
    color: #111;
    margin-bottom: 12px;
    font-size: 18px;
}

.card p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.feature-item .icon {
    font-size: 36px;
    display: block;
    margin-bottom: 15px;
}

.feature-item h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.feature-item p {
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .vision-mission { grid-template-columns: 1fr; }
}


/* ==========================================
   ৩. কন্টাক্ট পেজ স্পেসিফিক সিএসএস
   ========================================== */
.contact-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    max-width: 550px;
    width: 90%;
    margin: 40px auto;
}

.contact-box p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 14px;
    background-color: #fcfcfc;
    transition: all 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: #ff4757;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 5px rgba(255,71,87,0.1);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #ff4757;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background-color: #e03d4b;
}

.status-msg {
    margin-top: 15px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
}
/* 🆕 ক্রিয়েটিভ ও স্টাইলিস্ট হেডিং ডিজাইন */
.creative-title {
    font-size: 32px;
    font-weight: 700;
    color: #111111;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 25px;
    display: inline-block;
    letter-spacing: 1px;
}

/* Our শব্দটিকে আলাদাভাবে হাইলাইট করার জন্য */
.creative-title span {
    color: #ff4757; /* রওনক ফ্যাশনের সিগনেচার রেড কালার */
    position: relative;
}

/* স্টাইলিস্ট নিচের ক্রিয়েটিভ আন্ডারলাইন */
.creative-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background-color: #ff4757;
    border-radius: 10px;
    transition: width 0.4s ease; /* মাউস রাখলে অ্যানিমেশন হবে */
}

/* আন্ডারলাইনের পাশে একটি সুন্দর ডট ইফেক্ট */
.creative-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 60px;
    width: 6px;
    height: 4px;
    background-color: #111111;
    border-radius: 50%;
}

/* হোভার ইফেক্ট: মাউস নিয়ে গেলে নিচের দাগটি বড় হবে */
.story-box:hover .creative-title::after {
    width: 80px;
}

