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

body {
    font-family: 'Crimson Text', serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #fefefe;
}

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

/* Header & Navigation */
.header {
    background: #1a1a1a;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.2s ease;
    padding: 0.5rem;
    border-radius: 8px;
    background: #fefefe;
    border: 3px solid transparent;
}

.logo-link:hover {
    background: #1a1a1a;
    border: 3px solid #fefefe;
}

.logo-link:hover h1 {
    color: #fefefe;
}

.logo-link:hover .logo-homie {
    border-color: #fefefe;
}

.nav-brand h1 {
    color: #1a1a1a;
    font-family: 'Crimson Text', serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.nav-brand .logo-homie {
    border-color: #1a1a1a;
}

.logo-homie {
    border: 3px solid currentColor;
    padding: 0.2rem 0.3rem 0.2rem 0.5rem;
    margin-right: 0.3rem;
    border-radius: 6px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    color: #fefefe;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-link:hover {
    border-bottom-color: #fefefe;
}

/* Slogan Section */
.slogan-section {
    background: #1a1a1a;
    padding: 0.56rem 0;
    border-top: 2px solid #fefefe;
    border-bottom: 2px solid #fefefe;
    position: sticky;
    top: 72px;
    z-index: 99;
}

.slogan-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.slogan-text {
    color: #fefefe;
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.slogan-letter {
    border: 3px solid #fefefe;
    padding: 0.1rem 0.4rem;
    margin: 0 0.2rem;
    border-radius: 6px;
}

.rock-emoji {
    filter: grayscale(100%);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    border: 3px solid #1a1a1a;
    cursor: pointer;
    text-align: center;
    font-family: 'Crimson Text', serif;
    border-radius: 8px;
}

.nav-buttons .btn-primary {
    border: 3px solid #fefefe;
}

.btn-primary {
    background: #1a1a1a;
    color: #fefefe;
}

.btn-primary:hover {
    background: #fefefe;
    color: #1a1a1a;
}

.btn-secondary {
    background: #fefefe;
    color: #1a1a1a;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: #fefefe;
}

.btn-outline {
    background: transparent;
    color: #fefefe;
    border: 3px solid #fefefe;
}

.btn-outline:hover {
    background: #fefefe;
    color: #1a1a1a;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: #fefefe;
    padding: 4rem 0;
    color: #1a1a1a;
    border-bottom: 3px solid #1a1a1a;
    position: relative;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-top: 6px double #1a1a1a;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-title {
    font-family: 'Crimson Text', serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.highlight {
    font-style: normal;
    text-decoration: underline;
    text-decoration-thickness: 4px;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.feature-card-preview {
    background: #fefefe;
    border: 4px solid #1a1a1a;
    padding: 2rem;
    color: #1a1a1a;
    max-width: 400px;
    box-shadow: 8px 8px 0px #1a1a1a;
    position: relative;
}

.feature-card-preview:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px #1a1a1a;
}

.section-title {
    text-align: center;
    font-family: 'Crimson Text', serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 3rem;
    color: #fefefe;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #fefefe;
}

/* Profile Cards */
.sample-profiles {
    padding: 4rem 0;
    background: #1a1a1a;
    border-bottom: 3px solid #1a1a1a;
    position: relative;
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    position: absolute;
    top: 10px;
    left: 15px;
    right: 15px;
    z-index: 1;
}

.profile-profession {
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    font-weight: 400;
    color: #1a1a1a;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    background: #fefefe;
    font-style: normal;
    word-spacing: 0.5rem;
}

.profile-letter {
    border: 3px solid #1a1a1a;
    padding: 0.1rem 0.4rem;
    margin-left: 0.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    background: #fefefe;
    color: #1a1a1a;
}


.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.profile-card {
    background: #fefefe;
    border: 6px double #1a1a1a;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.profile-card:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid #1a1a1a;
    pointer-events: none;
}

.profile-card:after {
    content: '◆ ◆ ◆';
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 0.8rem;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.profile-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px #1a1a1a;
}

.profile-joke-main {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 900;
    font-style: normal;
    color: #1a1a1a;
    background: #fefefe;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    line-height: 1.8;
    min-height: 4rem;
    text-align: center;
    border: 4px solid #1a1a1a;
    padding: 1.5rem 1rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 0px rgba(26, 26, 26, 0.1);
    border-radius: 10px;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 1.8rem,
            rgba(26, 26, 26, 0.1) 1.8rem,
            rgba(26, 26, 26, 0.1) 2rem
        );
}



.profile-joke {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 900;
    font-style: normal;
    color: #1a1a1a;
    background: #fefefe;
    margin-bottom: 1rem;
    line-height: 1.6;
    border: 3px solid #1a1a1a;
    padding: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.profile-info {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    border: 4px solid #1a1a1a;
    filter: grayscale(100%);
}

.profile-details {
    flex: 1;
}

.profile-details h4 {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: inherit;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 0.5rem;
}

.profile-details h4 em {
    text-transform: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0;
}


.profile-details p {
    color: inherit;
    margin-bottom: 0.75rem;
    font-weight: 400;
    text-align: center;
    font-style: italic;
}

.profile-rate-tags {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.rate {
    background: #1a1a1a;
    color: #fefefe;
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid #1a1a1a;
    position: relative;
    border-radius: 6px;
}

.rate:before {
    content: '✦';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
}

.rate:after {
    content: '✦';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
}


.profile-tags-section {
    margin-top: auto;
    margin-bottom: 1rem;
    text-align: center;
}

.profile-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tag {
    background: #fefefe;
    color: #1a1a1a;
    padding: 0.25rem 0.5rem;
    border: 2px solid #1a1a1a;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.profile-rec-wrapper {
    padding-top: 1rem;
    border-top: 2px solid #1a1a1a;
}

.profile-rec {
    font-size: 0.9rem;
    color: #1a1a1a;
    font-style: italic;
    margin: 0;
    font-weight: 400;
}


/* Footer */
.footer {
    background: #fefefe;
    color: #1a1a1a;
    padding: 3rem 0 1rem;
    border-top: 4px solid #1a1a1a;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h4 {
    font-family: 'Crimson Text', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: all 0.2s ease;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border: 3px solid transparent;
}

.footer-logo-link h4 {
    margin: 0;
    text-align: center;
}

.footer-logo-link:hover {
    background: #1a1a1a;
    border: 3px solid #1a1a1a;
}

.footer-logo-link:hover h4 {
    color: #fefefe;
}

.footer-logo-link:hover .logo-homie {
    border-color: #fefefe;
    color: #fefefe;
}

.footer-brand .logo-homie {
    border: 3px solid #1a1a1a;
    color: #1a1a1a;
    padding: 0.2rem 0.3rem 0.2rem 0.5rem;
    margin-right: 0.3rem;
    border-radius: 6px;
}

.footer-brand p {
    color: #1a1a1a;
    font-style: italic;
    font-weight: 400;
    margin-left: 1.25rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h5 {
    font-family: 'Crimson Text', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 0.5rem;
}

.footer-column a {
    display: block;
    color: #1a1a1a;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: font-weight 0.2s ease;
    font-weight: 400;
}

.footer-column a:hover {
    font-weight: 600;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 3px solid #1a1a1a;
    padding-top: 1rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 400;
}

.legal-link {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-link:hover {
    color: #666;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .feature-card-preview {
        transform: none;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

.desktop-break {
    display: inline;
}

@media (max-width: 768px) {
    .desktop-break {
        display: none;
    }
    .header {
        padding: 1rem 0;
    }
    
    .slogan-section {
        top: 60px;
        padding: 0.375rem 0;
    }
    
    .slogan-text {
        font-size: 1rem;
    }
    
    .nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-brand h1 {
        font-size: 1.8rem;
        margin-bottom: 0;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.25rem 0;
    }
    
    .nav-buttons {
        justify-content: center;
        gap: 1rem;
    }
    
    .nav-buttons .btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.8rem;
        min-width: 100px;
    }
    
    .hero {
        padding: 4rem 0;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    
    .profiles-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-card {
        padding: 1.5rem;
    }
    
    .profile-joke-main {
        font-size: 1.2rem;
    }
    
    .profile-details p {
        font-size: 1.1rem;
    }
    
    .profile-rec {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-column a {
        font-size: 1rem;
    }
    
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .header {
        padding: 0.75rem 0;
    }
    
    .slogan-section {
        top: 55px;
        padding: 0.3rem 0;
    }
    
    .slogan-text {
        font-size: 0.9rem;
    }
    
    .nav {
        padding: 0 1rem;
        gap: 0.25rem;
    }
    
    .nav-brand h1 {
        font-size: 1.5rem;
    }
    
    .nav-links {
        gap: 0.75rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.2rem 0;
    }
    
    .nav-buttons {
        gap: 0.75rem;
    }
    
    .nav-buttons .btn {
        padding: 0.4rem 1.2rem;
        font-size: 0.75rem;
        min-width: 90px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    
    .profile-info {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-joke-main {
        font-size: 1.1rem;
    }
    
    .profile-details h4 {
        font-size: 1.2rem;
    }
    
    .profile-details p {
        font-size: 1.1rem;
    }
    
    .profile-rec {
        font-size: 1rem;
    }
    
    .profile-rate-tags {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    
    .footer-column a {
        font-size: 1rem;
    }
    
    .footer-bottom {
        font-size: 1rem;
    }
    
    .feature-card-preview {
        padding: 1.5rem;
    }
}
