/*
Theme Name: Altaybet5
Theme URI: https://altaybet5.com
Author: Altaybet Team
Author URI: https://altaybet5.com
Description: Modern, koyu renkli startup teması - Altaybet bahis ve casino sitesi için özel tasarım
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: altaybet5
*/

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

:root {
    --primary-color: #dd5017;
    --primary-light: #e66b3a;
    --primary-lighter: #f0855d;
    --primary-dark: #c4450f;
    --primary-darker: #ab3a0a;
    --secondary-color: #ff9f80;
    --accent-color: #f0855d;
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --bg-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;
    --border-color: #2a2a2a;
    --gradient-primary: linear-gradient(135deg, #dd5017 0%, #e66b3a 50%, #f0855d 100%);
    --gradient-secondary: linear-gradient(135deg, #c4450f 0%, #dd5017 50%, #e66b3a 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-darker);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-light);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

/* WordPress Admin Bar Support */
body.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

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

.site-logo img {
    height: 50px;
    width: auto;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-navigation a {
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.main-navigation a i {
    font-size: 1.1rem;
    width: 18px;
    text-align: center;
}

.main-navigation a .menu-text {
    display: inline;
}

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

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

/* Admin bar için hero section padding ayarı */
body.admin-bar .hero-section {
    padding-top: calc(8rem + 32px);
}

@media screen and (max-width: 782px) {
    body.admin-bar .hero-section {
        padding-top: calc(8rem + 46px);
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(221, 80, 23, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(230, 107, 58, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-darker);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(221, 80, 23, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-darker);
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.feature-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(221, 80, 23, 0.2);
}

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

.feature-icon i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.feature-link:hover {
    color: var(--primary-light);
    gap: 0.8rem;
}

.feature-link i {
    transition: transform 0.3s ease;
}

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

/* Blog Section */
.blog-section {
    padding: 6rem 2rem;
    background: var(--bg-dark);
    margin-top: 4rem;
}

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

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.blog-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(221, 80, 23, 0.2);
}

.blog-card-image {
    width: 300px;
    min-width: 300px;
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    opacity: 0.8;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    margin-top: 0;
}

.blog-card h3 a {
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.blog-card h3 a:hover {
    color: var(--primary-color);
}

.blog-card-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-card-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}

/* Footer */
.site-footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .main-navigation ul {
        flex-direction: row;
        gap: 1rem;
        text-align: center;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-navigation a .menu-text {
        display: none;
    }

    .main-navigation a {
        padding: 0.5rem;
        border-radius: 8px;
        background: rgba(221, 80, 23, 0.1);
    }

    .main-navigation a:hover {
        background: rgba(221, 80, 23, 0.2);
    }

    .hero-section {
        padding: 6rem 1rem 3rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

    .blog-card {
        flex-direction: column;
    }

    .blog-card-image {
        width: 100%;
        min-width: 100%;
        height: 250px;
    }

    .blog-card-content {
        padding: 1.5rem;
    }
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-content {
    padding-top: 8rem;
    padding-bottom: 4rem;
}

/* Admin bar için page content padding ayarı */
body.admin-bar .page-content {
    padding-top: calc(8rem + 32px);
}

@media screen and (max-width: 782px) {
    body.admin-bar .page-content {
        padding-top: calc(8rem + 46px);
    }
}

/* Page Hero - Medium Style */
.page-hero {
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
    padding: 6rem 2rem 4rem;
    margin-top: 80px;
}

body.admin-bar .page-hero {
    margin-top: calc(80px + 32px);
}

@media screen and (max-width: 782px) {
    body.admin-bar .page-hero {
        margin-top: calc(80px + 46px);
    }
}

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

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

/* Page Content Section - Medium Style */
.page-content-section {
    background: var(--bg-darker);
    padding: 4rem 2rem;
    min-height: 60vh;
}

.page-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.page-article {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid var(--border-color);
}

.page-content-inner {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

.page-content-inner p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.page-content-inner h3 {
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.page-content-inner h4 {
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.page-content-inner ul,
.page-content-inner ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: var(--text-secondary);
}

.page-content-inner li {
    margin-bottom: 0.8rem;
}

.page-content-inner a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-content-inner a:hover {
    color: var(--primary-light);
}

/* Info Cards */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(221, 80, 23, 0.1);
}

.info-card-title {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-card-title i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.info-card-content {
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-card-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--bg-darker);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(221, 80, 23, 0.3);
    color: var(--bg-darker);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: var(--bg-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-intro-content {
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.faq-content {
    margin-top: 4rem;
}

.faq-content .page-content-inner {
    background: transparent;
    padding: 0;
    border: none;
}

.faq-item {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

