/* Theme Name: ISP Red Theme
    Inspired by: Red Network BD
*/

:root {
    --primary-red: #ED1C24;
    --dark-bg: #1a1a1a;
    --light-bg: #f9f9f9;
    --text-color: #333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.text-red { color: var(--primary-red); }

/* Header & Nav */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 { font-size: 1.8rem; font-weight: 800; color: var(--dark-bg); }

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

.nav-links li a {
    text-decoration: none;
    color: var(--dark-bg);
    padding: 10px 15px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links li a:hover { color: var(--primary-red); }

.btn-portal {
    background: var(--primary-red);
    color: var(--white);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1544197150-b99a580bb7a8?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero h2 { font-size: 3rem; margin-bottom: 10px; }

/* Pricing Cards */
.pricing-section { padding: 60px 0; text-align: center; }

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    border-bottom: 4px solid #ddd;
}

.card:hover { transform: translateY(-10px); border-bottom-color: var(--primary-red); }

.card-header {
    background: var(--dark-bg);
    color: var(--white);
    padding: 30px;
}

.card-header.featured { background: var(--primary-red); }

.price { font-size: 2.5rem; font-weight: bold; margin: 10px 0; }

.card-body { padding: 30px; }

.card-body ul { list-style: none; margin-bottom: 20px; }

.card-body ul li { padding: 8px 0; border-bottom: 1px solid #eee; }

.btn-order {
    display: block;
    background: var(--primary-red);
    color: var(--white);
    padding: 12px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: #bbb;
    padding: 40px 0;
    text-align: center;
}