/*
 * Aplus Catering Premium Theme - Exact Reference Copy
 * Referans: apluscatering.com.tr
 * Renk Paleti: #08090B (dark bg) + #C8A35A (gold accent)
 * Tipografi: Playfair Display (headings) + Inter (body)
 */

/* ========================================
   CSS VARIABLES - Exact Color Palette
   ======================================== */
:root {
    --primary-gold: #C8A35A;
    --secondary-gold: #A08040;
    --dark-bg: #08090B;
    --deep-dark: #0D0F14;
    --card-bg: #15171C;
    --input-bg: #1A1D24;
    --text-white: #ffffff;
    --text-gray-300: #d1d5db;
    --text-gray-500: #6b7280;
    --text-muted: #a0a0a0;
    --border-subtle: rgba(255, 255, 255, 0.1);
    --shadow-gold: 0 4px 20px rgba(200, 163, 90, 0.15);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

/* ========================================
   GLOBAL RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-bg) !important;
    color: var(--text-white) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography - Exact Reference Match */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif !important;
    color: var(--text-white) !important;
    font-weight: 700 !important;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 96px !important;
    font-weight: 400 !important;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 48px !important;
    font-weight: 700 !important;
}

h3 {
    font-size: 32px !important;
}

h4 {
    font-size: 24px !important;
}

p,
span,
li,
a {
    font-family: 'Inter', sans-serif !important;
    color: var(--text-gray-300) !important;
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */
.container {
    max-width: 1280px !important;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Remove all boxy layouts */
.bg-area,
.feature-area,
.services-area,
.about-area,
.choose-area,
.portfolio-area,
.team-area,
.price-area,
.blog-area,
.brand-area {
    background-color: var(--dark-bg) !important;
    border: none !important;
    box-shadow: none !important;
    padding: 90px 0 !important;
}

/* ========================================
   HEADER & NAVIGATION - Sticky, Transparent
   ======================================== */
.header-area {
    background: rgba(8, 9, 11, 0.95) !important;
    backdrop-filter: blur(10px);
    position: sticky !important;
    top: 0;
    z-index: 9999;
    height: 80px;
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.header-area.sticky {
    background: rgba(8, 9, 11, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Navigation Menu - Uppercase, Bold, Wide Spacing */
.nav-menu li a,
.navbar-nav li a,
.menu-item a {
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    color: var(--text-white) !important;
    padding: 10px 20px !important;
    transition: var(--transition);
}

.nav-menu li a:hover,
.navbar-nav li a:hover,
.menu-item a:hover,
.nav-menu li a.active,
.navbar-nav li a.active {
    color: var(--primary-gold) !important;
    background: transparent !important;
}

/* CTA Button in Header - Pulse Effect */
.header-cta-button,
.btn-header-cta {
    background: transparent !important;
    border: 2px solid var(--primary-gold) !important;
    color: var(--primary-gold) !important;
    padding: 12px 30px !important;
    border-radius: var(--radius-sm) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    animation: pulse-border 2s infinite;
    transition: var(--transition);
}

.header-cta-button:hover,
.btn-header-cta:hover {
    background: var(--primary-gold) !important;
    color: #000 !important;
}

@keyframes pulse-border {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(200, 163, 90, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(200, 163, 90, 0);
    }
}

/* ========================================
   HERO / SLIDER SECTION - Full Screen
   ======================================== */
.slider,
.slider-item {
    min-height: 100vh !important;
    height: 100vh !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
}

.bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8, 9, 11, 0.85) 0%, rgba(13, 15, 20, 0.75) 100%);
    z-index: 1;
}

.slider .container {
    position: relative;
    z-index: 2;
}

.slider-text h1 {
    font-size: 96px !important;
    font-weight: 400 !important;
    color: #fff !important;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.slider-text p {
    font-size: 22px !important;
    color: #eee !important;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    animation: fadeInUp 1.2s ease;
}

.slider-text ul li a {
    background: var(--primary-gold) !important;
    color: #000 !important;
    padding: 18px 50px !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600 !important;
    border-radius: var(--radius-sm);
    display: inline-block;
    transition: var(--transition);
    animation: fadeInUp 1.4s ease;
}

.slider-text ul li a:hover {
    background: var(--secondary-gold) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   CARDS - Services, Features, etc.
   ======================================== */
.services-item,
.feature-item,
.choose-item,
.portfolio-group,
.blog-item,
.price-item,
.team-item {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: none !important;
}

.services-item:hover,
.feature-item:hover,
.blog-item:hover {
    border-color: var(--primary-gold) !important;
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold) !important;
}

/* Service Cards - 3 Column Grid */
.services-area .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.services-item h3,
.feature-item h4,
.blog-item h3 {
    font-family: 'Playfair Display', serif !important;
    color: var(--text-white) !important;
    font-size: 24px !important;
    margin-bottom: 15px;
}

.services-item p,
.feature-item p,
.blog-item p {
    color: var(--text-muted) !important;
    font-size: 14px;
    line-height: 1.8;
}

/* ========================================
   BUTTONS - Primary & Secondary
   ======================================== */
.btn,
.button-bn a,
.button-df a,
.btn-primary,
.btn1,
.btn2 {
    background: var(--primary-gold) !important;
    color: #000 !important;
    border: none !important;
    padding: 12px 30px !important;
    border-radius: var(--radius-sm) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
}

.btn:hover,
.button-bn a:hover,
.button-df a:hover,
.btn-primary:hover,
.btn1:hover,
.btn2:hover {
    background: var(--secondary-gold) !important;
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Secondary Buttons - Transparent with Gold Border */
.btn-secondary,
.btn-outline {
    background: transparent !important;
    border: 2px solid var(--primary-gold) !important;
    color: var(--primary-gold) !important;
}

.btn-secondary:hover,
.btn-outline:hover {
    background: var(--primary-gold) !important;
    color: #000 !important;
}

/* ========================================
   FORMS - Dark Input Fields
   ======================================== */
.form-control,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select {
    background: var(--input-bg) !important;
    border: 1px solid var(--border-subtle) !important;
    color: var(--text-white) !important;
    padding: 12px 20px !important;
    border-radius: var(--radius-sm) !important;
    font-size: 14px !important;
    transition: var(--transition);
}

.form-control:focus,
input:focus,
select:focus {
    background: var(--input-bg) !important;
    border-color: var(--primary-gold) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(200, 163, 90, 0.1) !important;
}

textarea.form-control,
textarea {
    background: var(--deep-dark) !important;
    border: 1px solid var(--border-subtle) !important;
    color: var(--text-white) !important;
    padding: 15px 20px !important;
    border-radius: var(--radius-sm) !important;
    min-height: 120px;
    resize: vertical;
}

textarea:focus {
    background: var(--deep-dark) !important;
    border-color: var(--primary-gold) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(200, 163, 90, 0.1) !important;
}

::placeholder {
    color: var(--text-gray-500) !important;
    opacity: 1;
}

/* ========================================
   HEADLINES & SECTION TITLES
   ======================================== */
.headline h2,
.headline-left h2 {
    color: var(--primary-gold) !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 48px !important;
    text-align: center;
    margin-bottom: 15px;
}

.headline h3,
.headline-left h3 {
    color: var(--text-gray-300) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    text-align: center;
    margin-bottom: 50px;
}

.headline-left h2,
.headline-left h3 {
    text-align: left !important;
}

/* ========================================
   FOOTER - Contact Cards Style
   ======================================== */
.footer-area {
    background: var(--deep-dark) !important;
    border-top: 1px solid var(--border-subtle);
    padding: 90px 0 30px !important;
}

.footer-item {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: var(--radius-md) !important;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.footer-item:hover {
    border-color: var(--primary-gold) !important;
    transform: translateY(-5px);
}

.footer-item i {
    color: var(--primary-gold) !important;
    font-size: 32px;
    margin-bottom: 15px;
}

.footer-item h4 {
    color: var(--text-white) !important;
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-item p,
.footer-item a {
    color: var(--text-gray-300) !important;
    font-size: 14px;
}

/* Social Icons */
.social-icon a,
.footer-social a {
    color: var(--primary-gold) !important;
    font-size: 18px;
    margin: 0 10px;
    transition: var(--transition);
}

.social-icon a:hover,
.footer-social a:hover {
    color: var(--secondary-gold) !important;
    transform: scale(1.2);
}

/* ========================================
   SPACING UTILITIES
   ======================================== */
.pt_30 {
    padding-top: 30px !important;
}

.pt_60 {
    padding-top: 60px !important;
}

.pt_90 {
    padding-top: 90px !important;
}

.pb_30 {
    padding-bottom: 30px !important;
}

.pb_60 {
    padding-bottom: 60px !important;
}

.pb_90 {
    padding-bottom: 90px !important;
}

.mt_30 {
    margin-top: 30px !important;
}

.mt_60 {
    margin-top: 60px !important;
}

.mb_30 {
    margin-bottom: 30px !important;
}

.mb_60 {
    margin-bottom: 60px !important;
}

/* ========================================
   REMOVE ALL BLUE COLORS - CRITICAL
   ======================================== */
.btn-info,
.btn-primary,
.bg-primary,
.text-primary,
a.text-primary,
.badge-primary,
.alert-primary {
    background-color: var(--primary-gold) !important;
    border-color: var(--primary-gold) !important;
    color: #000 !important;
}

/* Override any remaining blue */
*[style*="background: #"] {
    background: var(--dark-bg) !important;
}

*[style*="color: #0"] {
    color: var(--text-white) !important;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    h1 {
        font-size: 64px !important;
    }

    h2 {
        font-size: 36px !important;
    }

    .slider-text h1 {
        font-size: 64px !important;
    }

    .slider-text p {
        font-size: 18px !important;
    }

    .services-area .row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 48px !important;
    }

    h2 {
        font-size: 28px !important;
    }

    .slider-text h1 {
        font-size: 48px !important;
    }

    .slider-text p {
        font-size: 16px !important;
    }

    .services-area .row {
        grid-template-columns: 1fr;
    }

    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */
.fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slide-up {
    animation: slideUp 0.6s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* ========================================
   ICONS - Gold Color
   ======================================== */
.fa,
.fas,
.far,
.fab,
i[class*="fa-"] {
    color: var(--primary-gold) !important;
}

/* ========================================
   END OF THEME
   ======================================== */