/* বেসিক রিসেট */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fff9f9; /* হালকা গোলাপি আভা */
}

/* Header ও Navbar স্টাইল */
header {
    background-color: #fff;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: 0.3s;
}

header.sticky {
    padding: 0.5rem 5%;
    background-color: #ffe6e6;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #800020; /* মেরুন রঙ */
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #d6336c;
}

/* Hero Section স্টাইল */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(255, 230, 230, 0.8), rgba(255, 255, 255, 0.8)), url('https://source.unsplash.com/1600x900/?fashion,boutique') no-repeat center center/cover;
    padding: 0 20px;
    margin-top: 60px;
}

.hero-content h1 {
    font-size: 3rem;
    color: #800020;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #d6336c;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #800020;
}

/* About Section স্টাইল */
.about {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

.about h2 {
    color: #800020;
    margin-bottom: 20px;
    font-size: 2rem;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
}

/* Footer স্টাইল */
footer {
    background-color: #800020;
    color: #fff;
    text-align: center;
    padding: 20px;
}

footer a {
    color: #ffe6e6;
    text-decoration: underline;
}