/* Orefish LLC - Shared Styles
   Version: 2.0
   Last Updated: 2025
*/

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

:root {
    --primary: #667eea;
    --primary-dark: #5a67d8;
    --secondary: #764ba2;
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --bg-light: #f7fafc;
    --white: #ffffff;
    --success: #48bb78;
    --warning: #ffc107;
    --warning-bg: #fff3cd;
    --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 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.header-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white;
    margin-bottom: 20px;
}

.logo {
    width: 260px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.logo-text,
.site-title {
    font-size: 2.5em;
    font-weight: 700;
    letter-spacing: -1px;
}

.tagline,
.page-title {
    font-size: 1.3em;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

/* Navigation */
nav {
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 0;
    gap: 40px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

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

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

/* Breadcrumb Navigation */
.breadcrumb {
    background: white;
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95em;
}

.breadcrumb-nav a {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb-nav a:hover {
    opacity: 0.7;
}

.breadcrumb-separator {
    color: var(--text-light);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* About Section */
.about {
    background: white;
    position: relative;
}

.profile {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: fadeIn 1s ease;
}

.profile-img-container {
    position: relative;
}

.profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 8px rgba(102, 126, 234, 0.1);
    transition: transform 0.3s;
}

.profile-img:hover {
    transform: scale(1.05);
}

.bio h2 {
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 2em;
}

.title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.bio p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.credentials {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    margin-top: 20px;
}

/* Products Section */
.products {
    background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
}

/* App Showcase */
.app-showcase {
    display: flex;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.app-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.app-showcase:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.app-icon-section {
    flex-shrink: 0;
}

.app-icon-large {
    width: 140px;
    height: 140px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
    transition: transform 0.3s;
}

.app-icon-large:hover {
    transform: rotate(-5deg) scale(1.05);
}

.app-details {
    flex: 1;
}

.app-details h3 {
    font-size: 2em;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.app-tagline {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.app-features {
    list-style: none;
    margin: 20px 0;
}

.app-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-light);
}

.app-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2em;
}

/* Buttons */
.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--text-dark);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 20px;
}

.app-store-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.email-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
    font-size: 15px;
    font-family: inherit;
}

.email-button:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.email-button.copied {
    background: var(--success);
    border-color: var(--success);
}

/* Screenshot Carousel */
.screenshot-carousel {
    position: relative;
    width: 240px;
    height: 520px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    flex-shrink: 0;
    background: var(--text-dark);
}

.screenshot-container {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.screenshot {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    padding: 8px 12px;
    background: rgba(0,0,0,0.5);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

/* Coming Soon */
.coming-soon {
    margin-top: 80px;
    padding: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 24px;
    text-align: center;
    border: 2px dashed rgba(102, 126, 234, 0.3);
}

.coming-soon h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.8em;
}

/* Company Section */
.company {
    background: white;
}

.company-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Philosophy Card */
.philosophy-card {
    margin-top: 40px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 20px;
    text-align: left;
}

.philosophy-card h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.5em;
}

.philosophy-list {
    list-style: none;
}

.philosophy-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.philosophy-list li:last-child {
    border-bottom: none;
}

.philosophy-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

/* Legal Content Styles */
.legal-content {
    background: white;
    padding: 60px 0;
    min-height: 60vh;
}

.legal-content h1 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 2.5em;
}

.legal-content h2 {
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5em;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-light);
}

.legal-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.last-updated {
    display: inline-block;
    color: var(--text-light);
    font-size: 0.9em;
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: 20px;
    margin-bottom: 40px;
}

/* Warning Box */
.warning-box {
    background: var(--warning-bg);
    border: 2px solid var(--warning);
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    position: relative;
}

.warning-box strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 8px;
}

.warning-box p {
    margin: 0;
    color: var(--text-dark);
}

/* Support Content */
.support-content {
    background: white;
    padding: 60px 0;
    min-height: 60vh;
}

.support-content h1 {
    color: var(--text-dark);
    margin-bottom: 40px;
    font-size: 2.5em;
}

.support-content h2 {
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 25px;
    font-size: 1.8em;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 50px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details {
    flex: 1;
}

.contact-details strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-details span {
    color: var(--text-light);
    font-size: 0.95em;
}

/* FAQ Items */
.faq-item {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
}

.faq-item:hover {
    background: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-number {
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9em;
    flex-shrink: 0;
}

.faq-item h3 {
    color: var(--text-dark);
    font-size: 1.1em;
    margin: 0;
    flex: 1;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
    padding-left: 45px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 60px 0 40px;
    margin-top: 80px;
    position: relative;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s;
    position: relative;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.copyright {
    margin-top: 30px;
    opacity: 0.6;
    font-size: 0.9em;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-content h1,
    .logo-text,
    .site-title {
        font-size: 2em;
    }

    .nav-container {
        gap: 20px;
        font-size: 0.9em;
    }

    .profile {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .app-showcase {
        flex-direction: column;
        padding: 30px 20px;
    }

    .screenshot-carousel {
        width: 200px;
        height: 430px;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    .philosophy-list li {
        flex-direction: column;
        text-align: center;
    }

    .legal-content h1,
    .support-content h1 {
        font-size: 2em;
    }

    .warning-box {
        padding: 20px;
    }

    .faq-item p {
        padding-left: 0;
        margin-top: 15px;
    }
}
