/* wellknownpornstars.com - Navy + Silver + Gold Professional Directory */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1e3a5f;
    --navy-dark: #0d1f33;
    --navy-light: #2a4a73;
    --silver: #c0c0c0;
    --silver-light: #e8e8e8;
    --silver-dark: #a8a8a8;
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --text-dark: #2c3e50;
    --text-gray: #6c757d;
}

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

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

/* Header */
header {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    border-bottom: 3px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span {
    color: var(--gold);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

nav a {
    color: var(--silver-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    transition: all 0.3s;
    border-radius: 4px;
}

nav a:hover {
    background: var(--navy-light);
    color: var(--white);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    border-bottom: 2px solid var(--silver);
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 20px;
    color: var(--silver-light);
    margin-bottom: 35px;
    font-weight: 300;
}

.hero-button {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.hero-button:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Sections */
section {
    padding: 70px 0;
    background: var(--white);
}

section:nth-child(even) {
    background: var(--off-white);
    border-top: 1px solid var(--silver-light);
    border-bottom: 1px solid var(--silver-light);
}

.section-title {
    font-size: 36px;
    color: var(--navy);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 50px;
}

/* Star Cards */
.stars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.star-card {
    background: var(--white);
    border: 1px solid var(--silver-light);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.star-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.star-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 3px solid var(--gold);
}

.star-info {
    padding: 20px;
}

.star-name {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 700;
}

.star-details {
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.star-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--silver-light);
}

.star-rating {
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
}

.star-award {
    background: var(--navy);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
}

/* Content */
.content {
    max-width: 850px;
    margin: 0 auto;
}

.content h2 {
    color: var(--navy);
    font-size: 28px;
    margin: 40px 0 20px 0;
    font-weight: 700;
}

.content p {
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.content ul {
    margin-left: 35px;
    margin-bottom: 20px;
}

.content li {
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Categories */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--white);
    border: 1px solid var(--silver-light);
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
}

.category-card:hover {
    border-color: var(--navy);
    background: var(--navy);
    transform: translateY(-3px);
}

.category-card:hover h3,
.category-card:hover p {
    color: var(--white);
}

.category-card h3 {
    color: var(--navy);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.category-card p {
    color: var(--text-gray);
    font-size: 13px;
}

/* Featured Section */
.featured-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.featured-item {
    background: var(--white);
    border: 1px solid var(--silver-light);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.featured-item:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.featured-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.featured-info {
    padding: 20px;
}

.featured-info h3 {
    color: var(--navy);
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

.featured-info p {
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 12px;
}

.featured-award {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy-dark);
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
}

/* Search */
.search-container {
    max-width: 700px;
    margin: 0 auto 50px;
}

.search-box {
    display: flex;
    border: 2px solid var(--navy);
    border-radius: 4px;
    overflow: hidden;
}

.search-box input {
    flex: 1;
    border: none;
    padding: 18px 25px;
    font-size: 16px;
}

.search-box input:focus {
    outline: none;
}

.search-box button {
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 18px 35px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.search-box button:hover {
    background: var(--navy-light);
}

/* Filters */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    border: 1px solid var(--silver);
    color: var(--navy);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* Forms */
form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--silver-light);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

input, textarea, select {
    width: 100%;
    padding: 12px 15px;
    background: var(--off-white);
    border: 1px solid var(--silver);
    color: var(--text-dark);
    font-size: 15px;
    border-radius: 4px;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--navy);
}

button[type="submit"] {
    background: var(--navy);
    color: var(--white);
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

button[type="submit"]:hover {
    background: var(--navy-light);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    border: 1px solid var(--silver-light);
    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.feature-card h3 {
    color: var(--navy);
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* Footer */
footer {
    background: var(--navy-dark);
    padding: 60px 0 25px;
    border-top: 3px solid var(--gold);
}

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

.footer-section h3 {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

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

.footer-section a {
    color: var(--silver-light);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
    font-size: 14px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid var(--navy-light);
    color: var(--silver-dark);
    font-size: 13px;
}

/* Magazine Layout Elements */
.bio-section {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    margin: 30px 0;
}

.award-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 8px;
    margin: 30px 0;
}

.stat-bar {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px 0;
    background: var(--navy);
    color: var(--white);
    margin: 40px 0;
}

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

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    color: var(--silver-light);
    font-size: 14px;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stars-grid,
    .category-grid,
    .featured-list {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stat-bar {
        gap: 30px;
    }

    .stat-number {
        font-size: 32px;
    }
}

/* Alphabet Navigation */
.alpha-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 30px 0;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 40px;
}

.alpha-nav a {
    color: var(--navy);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.alpha-nav a:hover {
    background: var(--navy);
    color: var(--white);
}
