/*
Theme Name: Vendom
Theme URI: https://vendom.com
Author: Artweb
Author URI: https://artweb.com
Description: Modern video prodüksiyon şirketi için onepage WordPress teması
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vendom
*/

/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #7C3AED;
    --secondary-color: #111111;
    --dark-bg: #111111;
    --light-bg: #F5F5F5;
    --text-dark: #111111;
    --text-light: #FFFFFF;
    --accent: #7C3AED;
}

body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.section-title p,
.section-subtitle,
.subtitle {
    font-family: 'Futura', 'Century Gothic', sans-serif;
}

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

/* ==================== HEADER ==================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.4s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo a {
    display: block;
    position: relative;
    height: 60px;
    transition: all 0.3s ease;
}

.site-logo img {
    height: 60px;
    width: auto;
    transition: opacity 0.3s ease;
    max-height: 60px;
}

.site-logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
    line-height: 60px;
}

.site-logo .logo-text span {
    color: var(--primary-color);
}

.site-logo .logo-transparent {
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
}

.site-logo .logo-white {
    opacity: 0;
}

.site-logo .logo-transparent.logo-text {
    color: var(--text-light);
}

.site-logo .logo-white.logo-text {
    color: var(--text-dark);
}

.site-header.scrolled .site-logo .logo-transparent {
    opacity: 0;
}

.site-header.scrolled .site-logo .logo-white {
    opacity: 1;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-family: 'Satoshi', sans-serif;
}

.site-header.scrolled .main-navigation a {
    color: var(--text-dark);
}

.main-navigation a:hover,
.main-navigation a.active {
    color: var(--primary-color);
}

.main-navigation a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* ==================== SECTIONS ==================== */
section {
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    color: #111111;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111111;
}

.section-title p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Futura', 'Century Gothic', sans-serif;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

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

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

/* ==================== FOOTER ==================== */
/* Footer styles are in footer.php */

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .main-navigation ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    section {
        padding: 80px 0;
        min-height: auto;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* Portfolio specific fixes */
.portfolio-section {
    width: 100% !important;
    max-width: 100% !important;
}

.portfolio-section .container {
    width: 100% !important;
    max-width: 1140px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.vendom-portfolio-grid {
    width: 100% !important;
}
