/* ------------------------------
   Global Styling
------------------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: #f8f8f8;
    color: #222;
}

/* ------------------------------
   Navigation Bar
------------------------------ */
.navbar {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #222;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: 0.2s;
}

.nav-links a:hover {
    color: #111;
}

/* Search Bar */
.search-bar {
    position: relative;
}

.search-bar input {
    padding: 8px 14px;
    border: 1px solid #ccc;
    border-radius: 20px;
    outline: none;
    width: 180px;
    transition: 0.3s ease;
}

.search-bar input:focus {
    width: 230px;
    border-color: #333;
}

/* Join Button */
.join-talent {
    background: #111;
    color: #fff;
    padding: 10px 18px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.25s;
}

.join-talent:hover {
    background: #333;
}

/* ------------------------------
   Hero Section
------------------------------ */
.hero {
    height: 75vh;
    background: url('https://images.unsplash.com/photo-1531310132546-046f3f1c1a4d') no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    color: #fff;
    max-width: 700px;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

.cta-button {
    padding: 12px 24px;
    background: #111;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.cta-button:hover {
    background: #333;
}

/* ------------------------------
   Celebrities Section
------------------------------ */
.celebrities-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    font-size: 16px;
}

/* Grid */
.celebrities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

/* Celebrity Card */
.celeb-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: 0.3s;
}

.celeb-card:hover {
    transform: translateY(-5px);
}

.celeb-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.celeb-card .info {
    padding: 15px;
}

.celeb-card .info h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.celeb-card .info p {
    font-size: 14px;
    color: #777;
}

/* ------------------------------
   Responsive Design
------------------------------ */
@media (max-width: 768px) {
    .nav-links {
        gap: 12px;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .hero {
        height: 60vh;
    }
}

@media (max-width: 500px) {
    .search-bar {
        display: none;
    }
}
