/* UGC Portfolio Theme - Main Styles */

:root {
    --primary: #E85C0D;
    --primary-dark: #C94D0A;
    --cream: #FAF6F1;
    --cream-dark: #F5EDE3;
    --gray: #D9D9D9;
    --gray-dark: #C5C5C5;
    --dark: #2D2D2D;
    --white: #FFFFFF;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--cream);
    color: var(--dark);
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--primary);
    text-align: center;
    margin-bottom: 0.5rem;
}

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

.section-title em {
    font-style: italic;
}

.section-subtitle {
    text-align: center;
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.section-subtitle.light {
    color: rgba(255,255,255,0.9);
}

.no-content-message {
    text-align: center;
    color: var(--primary);
    font-style: italic;
    opacity: 0.7;
    margin-top: 1rem;
}

.no-content-message.light {
    color: rgba(255,255,255,0.8);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(250, 246, 241, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--primary);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
}

.nav-cta:hover {
    background: var(--primary-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    font-family: var(--font-sans);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    background: var(--cream);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-image-container {
    text-align: center;
}

.arch-frame {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--primary);
    border-radius: 200px 200px 0 0;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.arch-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.hero-image-container .btn {
    margin-bottom: 1rem;
}

.email-link {
    display: block;
    color: var(--primary);
    text-decoration: underline;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--primary);
    transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
    transform: scale(1.1);
    color: var(--primary-dark);
}

.social-icons svg {
    width: 28px;
    height: 28px;
}

.hero-content {
    padding-right: 2rem;
}

.hero-subtitle {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: var(--primary);
    margin: 0.5rem 0 2rem;
    line-height: 1.1;
}

.hero-bio-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.hero-bio-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-size: 1.1rem;
    line-height: 1.5;
}

.hero-bio-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

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

.about-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
    font-size: 1.1rem;
}

.about-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Stats Bar - Instagram Style */
.stats-bar {
    background: var(--dark);
    padding: 2.5rem 0;
}

.stats-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.stat-icon {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-item .stat-value {
    font-family: var(--font-sans);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: lowercase;
}

/* Legacy - keeping for compatibility */
.top-performers {
    padding: 40px 0;
    background: var(--dark);
}

.performers-grid {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.phone-mockup {
    background: var(--dark);
    border-radius: 30px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
}

.phone-mockup.large {
    width: 220px;
    height: 440px;
}

.phone-mockup:not(.large):not(.small) {
    width: 180px;
    height: 380px;
}

.phone-mockup.small {
    width: 140px;
    height: 280px;
}

.phone-mockup.white-bg {
    background: var(--cream);
    border: 1px solid rgba(255,255,255,0.3);
}

/* Video in phone mockups */
.phone-mockup {
    position: relative;
    overflow: hidden;
}

.phone-mockup video,
.phone-mockup iframe {
    position: absolute;
    top: 8px;
    left: 8px;
    width: calc(100% - 16px) !important;
    height: calc(100% - 16px) !important;
    object-fit: cover;
    border-radius: 22px;
    border: none;
    display: block;
    background: #000;
}

/* TikTok link overlay */
.phone-mockup .tiktok-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.phone-mockup .tiktok-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
}

.phone-mockup .play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: background 0.3s ease;
}

.phone-mockup .tiktok-link:hover .play-overlay {
    background: var(--primary);
}

.video-stats {
    display: flex;
    gap: 0.75rem;
    padding: 0.5rem;
    font-size: 0.75rem;
    color: var(--dark);
    background: var(--white);
    border-radius: 0 0 22px 22px;
    justify-content: center;
}

.video-stats span {
    display: flex;
    align-items: center;
    gap: 3px;
}

.video-stats svg {
    fill: var(--dark);
}

.stats-phones {
    display: flex;
    gap: 1.5rem;
}

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

.stat-info {
    margin-top: 1rem;
}

/* Stats Grid - Instagram Style */
.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    padding: 0.5rem 2.5rem;
    position: relative;
}

.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.stat-value {
    display: block;
    font-family: var(--font-sans);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* UGC Examples Section */
.ugc-examples {
    padding: 80px 0;
}

.ugc-examples.orange-bg {
    background: var(--primary);
}

.ugc-examples.cream-bg {
    background: var(--cream);
}

.examples-grid {
    --items-per-row: 5;
    display: grid;
    grid-template-columns: repeat(var(--items-per-row), 1fr);
    gap: 1.5rem;
    justify-items: center;
}

.examples-grid .example-item {
    max-width: 200px;
    width: 100%;
}

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

.example-label {
    display: block;
    margin-top: 1rem;
    color: var(--white);
    font-size: 0.9rem;
}

.example-label.orange {
    color: var(--primary);
}

/* Past Clients Section */
.past-clients {
    padding: 80px 0;
    background: var(--gray);
}

.clients-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-circle {
    width: 150px;
    height: 150px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.4;
}

.brand-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    max-width: 500px;
    justify-content: center;
}

.brand-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--cream-dark);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid var(--dark);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.brand-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.brand-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.2;
}

.testimonial-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--cream);
}

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

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.service-card ul,
.service-content ul {
    list-style: none;
    text-align: left;
    max-width: 280px;
    margin: 0 auto;
}

.service-card li,
.service-content li {
    color: var(--primary);
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
}

.service-card li::before,
.service-content li::before {
    content: '•';
    position: absolute;
    left: 0;
}

.service-card li ul,
.service-content li ul {
    margin-left: 1rem;
    margin-top: 0.25rem;
}

.service-card li li::before,
.service-content li li::before {
    content: '○';
}

.service-note {
    font-style: italic;
    font-size: 0.85rem;
    color: var(--primary);
    margin-top: 1rem;
}

.package {
    margin-top: 1.5rem;
    text-align: left;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.package h4 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.package-note {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Photography Section */
.photography {
    padding: 80px 0;
    background: linear-gradient(135deg, #C4A484 0%, var(--gray) 100%);
    position: relative;
}

.photo-header {
    margin-bottom: 3rem;
}

.photo-grid {
    --items-per-row: 6;
    display: grid;
    grid-template-columns: repeat(var(--items-per-row), 1fr);
    gap: 1rem;
}

.photo-item {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 8px;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-image .arch-frame {
    max-width: 400px;
}

.contact-content .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.contact-links {
    margin-bottom: 2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary);
    text-decoration: none;
    padding: 0.75rem 0;
    transition: transform 0.3s;
}

.contact-link:hover {
    transform: translateX(5px);
}

.contact-link svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea,
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--primary);
    border-radius: 10px;
    background: transparent;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--dark);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(232, 92, 13, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(45, 45, 45, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Main Content */
.main-content {
    padding: 120px 0 60px;
    min-height: 60vh;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
    }

    .about-list {
        display: inline-block;
        text-align: left;
    }

    .contact-content .section-title {
        text-align: center;
    }

    .contact-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .performers-grid {
        flex-direction: column;
        align-items: center;
    }

    .stats-phones {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        padding: 80px 40px;
        gap: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

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

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .arch-frame {
        max-width: 280px;
    }

    .examples-grid {
        gap: 1rem;
    }

    .phone-mockup.large {
        width: 180px;
        height: 360px;
    }

    .phone-mockup:not(.large):not(.small) {
        width: 140px;
        height: 280px;
    }

    .phone-mockup.small {
        width: 120px;
        height: 240px;
    }

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

    .clients-header {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .examples-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-bar-inner {
        gap: 2rem;
    }

    .stat-icon {
        width: 24px;
        height: 24px;
    }

    .stat-item .stat-value {
        font-size: 1.4rem;
    }

    .stat-item .stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .phone-mockup.large {
        width: 160px;
        height: 320px;
    }

    .phone-mockup:not(.large):not(.small) {
        width: 120px;
        height: 240px;
    }

    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .examples-grid .example-item {
        max-width: none;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.hero-content,
.hero-image-container {
    animation: fadeInUp 0.8s ease-out;
}

.hero-content {
    animation-delay: 0.2s;
}
