/* Shared Basic Styles */
:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --primary: #c13584; /* Instagram Gradient dominant color */
    --secondary: #fda40f; /* Instagram Orange */
    --card-bg: #121212;
    --border-color: #2a2a2a;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding-top: 80px;
}

/* Nav */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
}
.logo { font-weight: 800; font-size: 1.5rem; color: #fff; }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { text-decoration: none; color: #ccc; }
.nav-links a.active { color: var(--primary); }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { width: 25px; height: 3px; background-color: white; }
.mobile-menu { display: none; position: fixed; top: 70px; left: 0; width: 100%; background: #000; padding: 2rem; flex-direction: column; border-bottom: 1px solid #333; z-index: 999; }
.mobile-menu.active { display: flex; }
.mobile-menu a { color: white; padding: 10px 0; text-decoration: none; border-bottom: 1px solid #222; }

/* IG Specific Header */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.page-header {
    text-align: center;
    padding: 3rem 0;
    /* IG Gradient background */
    background: linear-gradient(180deg, rgba(193, 53, 132, 0.15) 0%, var(--bg-color) 100%);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    /* IG Text Gradient */
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-header p {
    color: #aaa;
    max-width: 700px;
    margin: 0 auto;
}

/* Tabs */
.section-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    position: sticky;
    top: 90px;
    z-index: 900;
    background: var(--bg-color);
    padding: 10px 0;
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.tab-btn:hover, .tab-btn.active {
    background: linear-gradient(45deg, #e6683c, #bc1888);
    border-color: transparent;
}

/* Sections */
.package-section {
    padding: 3rem 0;
    border-bottom: 1px solid #1a1a1a;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.info-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-left: 4px solid #bc1888;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
}

.info-orange { border-color: var(--secondary); }

/* Grid */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.package-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.2s;
}

.package-card:hover {
    border-color: #bc1888;
}

.custom-card { border-top: 2px solid #e6683c; }

.pkg-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.pkg-header h3 { font-size: 1.1rem; }
.price { color: var(--secondary); font-weight: bold; font-size: 1.1rem; }

.btn-order {
    width: 100%;
    padding: 0.8rem;
    background: white;
    color: black;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-order:hover {
    background: #e0e0e0;
}

.order-form {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.order-form input, .order-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background: #000;
    border: 1px solid #333;
    color: white;
    border-radius: 4px;
    font-family: inherit;
    box-sizing: border-box;
}

.btn-submit {
    width: 100%;
    padding: 10px;
    background: linear-gradient(45deg, #e6683c, #bc1888);
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
}

/* Influencers */
.influencer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.influencer-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.influencer-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.inf-details { padding: 1.5rem; }
.handle { color: #e6683c; display: block; margin-bottom: 0.5rem; text-decoration: none; font-size: 0.9rem; }

footer {
    text-align: center;
    padding: 3rem;
    border-top: 1px solid var(--border-color);
    margin-top: 3rem;
    color: #666;
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .page-header h1 { font-size: 2rem; }
}