/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --primary-red: #dc2626;
    --dark-red: #991b1b;
    --light-red: #ef4444;
    --accent-red: #fee2e2;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --dark-gray: #334155;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --section-padding: 80px 0;
    --container-max-width: 1200px;
    --border-radius: 12px;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--primary-black);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.025em;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-red) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(220,38,38,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo {
    margin-bottom: 40px;
}

.hero-logo-img {
    height: 300px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.5));
    max-width: 90vw; /* Ensure it doesn't overflow on mobile */
    object-fit: contain; /* Maintain aspect ratio */
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    background: linear-gradient(45deg, var(--white), var(--light-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.cta-button {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-button:hover {
    background: var(--light-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

/* Section Styles */
.section {
    padding: var(--section-padding);
}

.dark-section {
    background: var(--primary-black);
    color: var(--white);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

.dark-section .section-title {
    color: var(--white);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.about-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-black);
}

.about-card ul {
    list-style: none;
    text-align: left;
}

.about-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--dark-gray);
}

.about-card li:last-child {
    border-bottom: none;
}

/* Work With Me Section */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.work-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 2px solid rgba(220, 38, 38, 0.2);
    transition: var(--transition);
}

.work-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.08);
}

.work-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-red);
}

.work-card ul {
    list-style: none;
}

.work-card li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.work-card li::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-size: 1.2rem;
}

.schedule-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 2px solid rgba(220, 38, 38, 0.2);
}

.schedule-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: var(--white);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.schedule-item {
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.schedule-item.productive {
    background: rgba(34, 197, 94, 0.2);
    border: 2px solid #22c55e;
    color: #bbf7d0;
}

.schedule-item.available {
    background: rgba(59, 130, 246, 0.2);
    border: 2px solid #3b82f6;
    color: #bfdbfe;
}

.schedule-item.downtime {
    background: rgba(168, 85, 247, 0.2);
    border: 2px solid #a855f7;
    color: #e9d5ff;
}

/* Communication Section */
.comm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.comm-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
}

.comm-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.comm-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-black);
}

.method-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 8px;
    transition: var(--transition);
}

.method-item.best {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid #22c55e;
}

.method-item.good {
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid #3b82f6;
}

.method-item.limited {
    background: rgba(234, 179, 8, 0.1);
    border: 2px solid #eab308;
}

.method-icon {
    font-size: 1.5rem;
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.approach-item {
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-red);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.value-card h3 {
    color: var(--primary-black);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.value-category {
    margin-bottom: 20px;
}

.value-category h4 {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.value-category p {
    color: var(--dark-gray);
    line-height: 1.6;
}

.value-card ul {
    list-style: none;
    padding: 0;
}

.value-card li {
    color: var(--dark-gray);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.value-card li::before {
    content: '•';
    color: var(--primary-red);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Conversation Topics Section */
.conversation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.conversation-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.conversation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.conversation-card h3 {
    color: var(--primary-black);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.topic-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.topic-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.topic-item.good {
    background: var(--accent-red);
    border-left: 4px solid var(--primary-red);
}

.topic-item.bad {
    background: #fef2f2;
    border-left: 4px solid #dc2626;
}

.topic-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.topic-item div strong {
    color: var(--primary-black);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.topic-item div p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Cues Section */
.cues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.cues-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.cues-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cues-card h3 {
    color: var(--primary-black);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cues-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cue-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.cue-item.positive {
    background: #f0fdf4;
    border-left: 4px solid #16a34a;
}

.cue-item.negative {
    background: #fef2f2;
    border-left: 4px solid #dc2626;
}

.cue-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cue-item div strong {
    color: var(--primary-black);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.cue-item div p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Misunderstandings Section */
.misunderstandings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.misunderstanding-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.misunderstanding-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.misunderstanding-card h3 {
    color: var(--primary-black);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.misunderstanding-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.misunderstanding-item {
    padding: 15px;
    border-radius: 8px;
    background: #fef2f2;
    border-left: 4px solid #dc2626;
}

.misconception strong {
    color: var(--primary-black);
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.misconception p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

.wish-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wish-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    background: #f0fdf4;
    border-left: 4px solid #16a34a;
    transition: var(--transition);
}

.wish-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.wish-item div strong {
    color: var(--primary-black);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.wish-item div p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Favorites Section */
.favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.fav-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
}

.fav-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.fav-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-black);
}

.fav-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fav-item {
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

.fav-item strong {
    color: var(--primary-black);
}

/* Testimonial Section */
.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: var(--border-radius);
    border: 2px solid rgba(220, 38, 38, 0.2);
    text-align: center;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author strong {
    color: var(--primary-red);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--white);
    padding: 50px 0;
    border-top: 2px solid var(--primary-red);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-info p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Mobile Navigation Styles */
.nav-menu.active {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    backdrop-filter: blur(10px);
    animation: slideDown 0.3s ease-out;
}

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

.nav-link.active {
    color: var(--primary-red);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Animation classes for JavaScript */
.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

.touch-active {
    transform: translateY(-3px) scale(1.01) !important;
}

.loaded {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
    }
    
    .comm-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-grid,
    .values-grid,
    .favorites-grid,
    .conversation-grid,
    .cues-grid,
    .misunderstandings-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .work-card,
    .comm-card,
    .value-card,
    .fav-card,
    .conversation-card,
    .cues-card,
    .misunderstanding-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-logo-img {
        height: auto;
        max-width: 85vw;
        max-height: 200px;
        object-fit: contain;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .about-card,
    .fav-card {
        padding: 30px 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll behavior improvements */
html {
    scroll-padding-top: 70px;
}

/* Focus states for accessibility */
.nav-link:focus,
.cta-button:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .cta-button {
        display: none;
    }
    
    .section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* Branding Section */
.brand-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.brand-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 32px 32px 32px 32px;
    gap: 32px;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto 40px auto;
    transition: var(--transition);
    min-height: 220px;
}

.brand-logo-container {
    flex: 0 0 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.brand-logo-img {
    width: 320px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.15));
    background: transparent;
    display: block;
}

.brand-description {
    flex: 1 1 0;
    color: var(--primary-black);
    text-align: left;
    padding-left: 12px;
}

.brand-description h3 {
    color: var(--primary-red);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.brand-description p {
    color: var(--dark-gray);
    font-size: 1rem;
    margin-bottom: 12px;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .brand-card {
        flex-direction: column;
        gap: 20px;
        padding: 24px 8px 20px 8px;
        max-width: 98vw;
        min-height: unset;
    }
    .brand-logo-container {
        flex: none;
    }
    .brand-logo-img {
        width: 180px;
        max-width: 90vw;
    }
    .brand-description {
        padding-left: 0;
        text-align: center;
    }
} 