/*
Theme Name: Sutra Tema
Theme URI: https://sutramatbaaveinsaat.com
Author: Sutra Matbaa Kagit Imalat Ltd. Sti.
Author URI: https://sutramatbaaveinsaat.com
Description: Sutra Matbaa ve Insaat kurumsal web sitesi temas?
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: sutra-tema
*/

/* ================================
   RESET & BASE
================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #1a2744;
    --anthracite: #2d3142;
    --orange: #e85d04;
    --orange-light: #f48c06;
    --white: #ffffff;
    --light-gray: #f5f6fa;
    --gray: #6b7280;
    --dark-gray: #374151;
    --border: #e5e7eb;
    --font: 'Inter', 'Roboto', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ================================
   TYPOGRAPHY
================================ */
h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--anthracite);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.8rem); }

/* ================================
   LAYOUT
================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.section-title p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   HEADER / NAV
================================ */
.site-header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
}

.site-logo .logo-icon {
    width: 44px;
    height: 44px;
    background: var(--orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.site-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.site-logo .logo-name {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1;
}

.site-logo .logo-sub {
    font-size: 0.65rem;
    opacity: 0.75;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.main-nav ul {
    display: flex;
    gap: 0.25rem;
}

.main-nav a {
    color: rgba(255,255,255,0.85);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

.main-nav a:hover, .main-nav .current-menu-item a {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 600;
}

.header-contact .phone-icon { color: var(--orange); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ================================
   HERO
================================ */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, #243060 50%, var(--anthracite) 100%);
    color: var(--white);
    padding: 6rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(232,93,4,0.12) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
    display: inline-block;
    background: rgba(232,93,4,0.2);
    border: 1px solid rgba(232,93,4,0.4);
    color: #fca855;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 span { color: var(--orange-light); }

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================
   BUTTONS
================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(232,93,4,0.35);
}

.btn-primary:hover {
    background: #c94e00;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232,93,4,0.45);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

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

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

/* ================================
   HAKKIMIZDA
================================ */
.about-section {
    background: var(--light-gray);
}

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

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.stat-card .stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    display: block;
}

.stat-card .stat-label {
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.about-image-placeholder {
    background: linear-gradient(135deg, var(--navy), #243060);
    border-radius: 16px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
    box-shadow: 0 20px 60px rgba(26,39,68,0.3);
}

/* ================================
   SEKTOR KARTI
================================ */
.sectors {
    background: var(--white);
}

.sector-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.sector-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.sector-card-image {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.sector-card-image.print-bg {
    background: linear-gradient(135deg, #1a2744 0%, #243060 100%);
}

.sector-card-image.construction-bg {
    background: linear-gradient(135deg, #2d3142 0%, #434865 100%);
}

.sector-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
}

.sector-card-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sector-card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.sector-card-body p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    flex: 1;
    line-height: 1.7;
}

.sector-card .btn {
    align-self: flex-start;
}

/* ================================
   URUN LISTESI
================================ */
.products-section {
    background: var(--light-gray);
}

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

.product-category {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    border-top: 4px solid var(--orange);
}

.product-category h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-category h3::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
}

.product-list li {
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.product-list li::before {
    content: '✓';
    color: var(--orange);
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ================================
   ILETISIM
================================ */
.contact-section {
    background: var(--navy);
    color: var(--white);
}

.contact-section .section-title h2 { color: var(--white); }
.contact-section .section-title p { color: rgba(255,255,255,0.7); }

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

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255,255,255,0.08);
    padding: 1.25rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.contact-item p, .contact-item a {
    color: var(--white);
    font-weight: 500;
    line-height: 1.4;
}

.contact-item a:hover { color: var(--orange-light); }

.contact-form-wrap {
    background: rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-form-wrap h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

/* CF7 styling */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    transition: border-color 0.2s;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder { color: rgba(255,255,255,0.45); }

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255,255,255,0.15);
}

.wpcf7-form textarea { height: 130px; resize: vertical; }

.wpcf7-form input[type="submit"] {
    background: var(--orange) !important;
    color: white !important;
    border: none !important;
    padding: 0.85rem 2rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    width: 100% !important;
    font-size: 1rem !important;
    margin-bottom: 0 !important;
    transition: background 0.2s, transform 0.2s !important;
}

.wpcf7-form input[type="submit"]:hover {
    background: #c94e00 !important;
    transform: translateY(-1px) !important;
}

/* ================================
   FOOTER
================================ */
.site-footer {
    background: #0f1827;
    color: rgba(255,255,255,0.7);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1.5rem;
}

.footer-brand .logo { color: white; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }

.footer-col h4 {
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--orange-light); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-instagram a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}

.footer-instagram a:hover { color: var(--orange-light); }

/* ================================
   PAGE HERO
================================ */
.page-hero {
    background: linear-gradient(135deg, var(--navy), #243060);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 { color: white; margin-bottom: 0.75rem; }
.page-hero .breadcrumb { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.6); }
.page-hero .breadcrumb a:hover { color: var(--orange-light); }

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
    .about-grid,
    .sector-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image-placeholder { height: 280px; }

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

    .main-nav { display: none; }
    .main-nav.open { display: block; }
    .main-nav.open ul { flex-direction: column; padding: 1rem 0; }
    .nav-toggle { display: block; }

    .header-inner { flex-wrap: wrap; gap: 0.5rem; }
    .header-contact { order: 3; width: 100%; justify-content: center; padding: 0.5rem 0; border-top: 1px solid rgba(255,255,255,0.1); }
}

@media (max-width: 600px) {
    .hero { padding: 4rem 0 3rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .section { padding: 3.5rem 0; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}
