:root {
    --primary-blue: #093FB4;
    --off-white: #FFFCFB;
    --light-pink: #FFD8D8;
    --accent-orange: #ED3500;
    --text-dark: #333;
    --text-light: #777;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.1);
    --border-radius: 8px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--off-white);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: color 0.3s;
}

a:hover {
    color: var(--accent-orange);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn:hover {
    background-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: white;
}

.site-header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.main-nav li {
    display: inline-block;
}

.main-nav a {
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.main-nav a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-orange);
}

.site-footer {
    background-color: var(--primary-blue);
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
}

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

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: white;
}

.footer-section a:hover {
    color: var(--light-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
    margin-bottom: 50px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.featured-celebrities {
    padding: 50px 0;
}

.featured-celebrities h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-blue);
    font-size: 32px;
}

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

.celebrity-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.celebrity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.celebrity-image {
    height: 300px;
    overflow: hidden;
}

.celebrity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.celebrity-card:hover .celebrity-image img {
    transform: scale(1.1);
}

.celebrity-info {
    padding: 20px;
    text-align: center;
}

.celebrity-info h3 {
    margin-bottom: 10px;
    color: var(--primary-blue);
    font-size: 22px;
}

.celebrity-category {
    display: inline-block;
    background-color: var(--light-pink);
    color: var(--accent-orange);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.celebrity-price {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 18px;
}

.text-center {
    text-align: center;
}

.empty-state {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    border: 1px dashed #ddd;
}

.empty-state img {
    max-width: 150px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.empty-state h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .main-nav ul {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .celebrities-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .celebrities-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 60px 15px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
}