/* === Ayşe UGC Portfolio - Premium Styles === */
:root {
    --cream: #FDF8F4;
    --cream-dark: #F8F0E8;
    --blush: #E8C4B8;
    --blush-light: #F2D9D0;
    --rose: #C4908A;
    --dark: #2D2D2D;
    --dark-light: #4A4A4A;
    --text: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.1);
    --radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Typography === */
h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
}

/* === Navbar === */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 20px 0;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 400;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.nav-links a:hover {
    color: var(--dark);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

/* === Hero === */
.hero {
    padding-top: 0;
    background: var(--cream);
    overflow: hidden;
    position: relative;
}

.hero-inner {
    display: grid;
    grid-template-columns: 35% 1fr;
    gap: 0;
    align-items: start;
    width: 100%;
    min-height: 0;
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.hero-content {
    padding: 120px 60px 60px 60px;
}

.hero-name {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.1;
}

.hero-title {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--rose);
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-slogan {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--dark);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-cta {
    background: var(--white);
    color: var(--dark);
    font-weight: 600;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* === Social Icons === */
.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* === Brands === */
.brands-section {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.section-subtitle {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 40px;
}

.brands-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.brand-item {
    opacity: 0.7;
    transition: var(--transition);
}

.brand-item:hover {
    opacity: 1;
}

.brand-item img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(30%);
    transition: var(--transition);
}

.brand-item:hover img {
    filter: grayscale(0%);
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark);
    font-weight: 600;
}

/* === Works / Videos === */
.works-section {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.section-desc {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 48px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.video-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-card:hover .video-thumb img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    border: 2px solid rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.play-btn:hover {
    background: rgba(0,0,0,0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.75);
    color: white;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.video-info {
    padding: 18px 20px;
}

.video-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.video-title {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.video-watch-btn {
    background: none;
    border: none;
    color: var(--rose);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.video-watch-btn:hover {
    color: var(--dark);
}

.works-more {
    text-align: center;
}

/* === Services === */
.services-section {
    padding: 80px 0;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose);
    border: 1.5px solid var(--blush-light);
    border-radius: 12px;
}

.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* === CTA === */
.cta-section {
    padding: 80px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.2;
}

.cta-content h2 span {
    color: var(--blush);
}

.cta-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-image {
    display: flex;
    justify-content: center;
}

.cta-phone-mockup {
    width: 200px;
    height: 380px;
    background: linear-gradient(135deg, var(--cream-dark), var(--blush-light));
    border-radius: 30px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cta-phone-mockup::after {
    content: 'Ayşe';
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2rem;
    color: var(--rose);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* === Footer === */
.footer {
    padding: 24px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    background: var(--white);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-left, .footer-right {
    font-size: 0.8rem;
    color: var(--text-light);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--dark);
    text-decoration: none;
}

/* === Video Modal === */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.85);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
    z-index: 1;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
}

.video-modal-player {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.video-modal-player iframe {
    width: 100%;
    height: 100%;
}

/* === Animations === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 30% 1fr;
    }
    .hero-content {
        padding: 100px 32px 40px 40px;
    }
    .hero-name {
        font-size: 2.8rem;
    }
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        position: relative;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(10px);
    }
    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 32px;
        gap: 24px;
        box-shadow: var(--shadow);
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .hero-inner {
        grid-template-columns: 1fr;
    }
    .hero-image {
        max-height: 400px;
        overflow: hidden;
    }
    .hero-image img {
        height: 400px;
        object-fit: cover;
    }
    .hero-content {
        padding: 32px 24px;
        text-align: center;
    }
    .hero-name {
        font-size: 2.2rem;
    }
    .hero-slogan {
        font-size: 1.2rem;
    }
    .hero-desc {
        margin: 0 auto 32px;
    }
    .hero-actions {
        justify-content: center;
    }
    .brands-grid {
        gap: 24px;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 16px;
        -webkit-overflow-scrolling: touch;
    }
    .brand-item {
        flex-shrink: 0;
    }
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cta-content h2 {
        font-size: 2rem;
    }
    .cta-image {
        display: none;
    }
    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero-name {
        font-size: 2rem;
    }
    .hero-slogan {
        font-size: 1.1rem;
    }
    .btn {
        padding: 12px 24px;
        font-size: 0.8rem;
    }
    .social-icons a {
        width: 36px;
        height: 36px;
    }
}
