/* --- EventumNJ Global Styles --- */
:root {
    --primary: #111111;       /* Jet Black */
    --secondary: #2c2c2c;     /* Anthracite */
    --gold: #D4AF37;          /* Classic Gold */
    --gold-gradient: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --text-dark: #333333;
    --text-light: #f4f4f4;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

/* Global Reset */
html { scroll-behavior: smooth; }
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Montserrat', sans-serif; line-height: 1.7; 
    color: var(--text-dark); background-color: var(--bg-light); overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--primary); }
a { text-decoration: none; color: inherit; transition: 0.4s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* Scroll Animation Class */
.reveal { opacity: 0; transform: translateY(30px); transition: all 1s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- HEADER & NAV --- */
header {
    background: rgba(255, 255, 255, 0.98); 
    box-shadow: 0 4px 30px rgba(0,0,0,0.05); position: fixed;
    width: 100%; top: 0; z-index: 1000; height: 100px;
    display: flex; align-items: center; border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }
nav { display: flex; justify-content: space-between; align-items: center; }

.logo-container img { height: 85px; width: auto; transition: transform 0.3s; }
.logo-container img:hover { transform: scale(1.05); }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { 
    font-weight: 600; color: var(--primary); font-size: 0.90rem; 
    text-transform: uppercase; letter-spacing: 1px; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0;
    background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: #b38728; } 
.nav-links a.active::after { width: 100%; }

.cta-btn {
    background: var(--gold-gradient); color: var(--primary);
    padding: 12px 35px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    border-radius: 50px; white-space: nowrap; border: none; cursor: pointer; display: inline-block;
}
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6); }

.hamburger { display: none; cursor: pointer; z-index: 1001; font-size: 1.8rem; color: var(--primary); }

/* --- HERO SECTIONS --- */
/* Main Home Hero */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1470225620780-dba8ba36b745?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover; background-position: center;
    height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--text-light); margin-top: 0;
    border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; overflow: hidden;
}

/* Sub-Page Hero (Pages) */
.page-hero {
    height: 60vh;
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: white;
    border-bottom-left-radius: 40px; border-bottom-right-radius: 40px;
    margin-top: 0; position: relative;
}
.page-hero::before {
    content: ''; position: absolute; top:0; left:0; width:100%; height:100%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}
.hero-content { position: relative; z-index: 2; width: 100%; padding: 0 20px; animation: fadeInUp 1.2s ease; }

.hero-content h1 { 
    font-size: 3.5rem; margin-bottom: 20px; line-height: 1.1; 
    color: #fff; text-shadow: 0 5px 30px rgba(0,0,0,0.7); text-transform: uppercase;
}
.hero-content p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; font-weight: 300; letter-spacing: 1px; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

/* --- SECTIONS GENERAL --- */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 60px; padding: 0 15px; }
.section-header h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; display: inline-block; position: relative; }
.section-header h2::after {
    content: ''; display: block; width: 60px; height: 3px; background: var(--gold); margin: 10px auto 0;
}
.section-header p { color: #666; font-size: 1.1rem; max-width: 700px; margin: 0 auto; }

/* --- SERVICE GRIDS (New Unified Design) --- */
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px; margin-top: 20px;
}

.service-card {
    background: var(--white); border-radius: 15px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.3s;
    display: flex; flex-direction: column;
}

.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.service-card img { width: 100%; height: 250px; object-fit: cover; }

.card-content { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.card-content h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--primary); font-family: 'Playfair Display', serif; }
.card-content p { font-size: 0.95rem; color: #666; margin-bottom: 20px; flex-grow: 1; }
.card-link { color: #b38728; font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }
.card-link i { margin-left: 5px; transition: 0.3s; }
.card-link:hover i { transform: translateX(5px); }

/* --- FEATURES / ICONS SECTION --- */
.features-section { background: var(--primary); color: #fff; text-align: center; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
.feature-item i { font-size: 3rem; color: var(--gold); margin-bottom: 20px; }
.feature-item h3 { color: #fff; margin-bottom: 15px; font-size: 1.3rem; }
.feature-item p { color: #ccc; font-size: 0.95rem; }

/* --- CONTACT FORM --- */
.contact-wrapper {
    display: flex; flex-wrap: wrap; gap: 50px; background: #fff;
    padding: 60px; box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    border: 1px solid #eee; border-radius: 40px;
}
.contact-info { flex: 1; min-width: 300px; }
.contact-form { flex: 1.5; min-width: 300px; }
input, select, textarea {
    width: 100%; padding: 18px; margin-bottom: 20px;
    border: 2px solid #eee; background: #fdfdfd; border-radius: 12px;
    font-family: 'Montserrat', sans-serif; transition: 0.3s;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); outline: none; }

/* --- FOOTER --- */
footer { background: #0f0f0f; color: #888; padding: 80px 0 30px; margin-top: 60px; border-top: 5px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 50px; }
.footer-col h4 { color: #fff; margin-bottom: 25px; font-size: 1.4rem; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a:hover { color: var(--gold); }
.social-icons a { 
    color: #fff; margin-right: 15px; font-size: 1.2rem; 
    background: rgba(255,255,255,0.1); width: 40px; height: 40px; 
    display: inline-flex; align-items: center; justify-content: center; border-radius: 50%;
}
.social-icons a:hover { background: var(--gold); color: #000; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    header { height: 80px; }
    .logo-container img { height: 60px; }
    .nav-links {
        position: absolute; right: 0; height: 100vh; top: 80px;
        background-color: #fff; display: flex; flex-direction: column;
        align-items: center; justify-content: center; width: 100%;
        transform: translateX(100%); transition: 0.4s; border-top: 1px solid #eee;
    }
    .nav-links.nav-active { transform: translateX(0%); }
    .hamburger { display: block; }
    #hero, .page-hero { border-radius: 0; }
    .hero-content h1 { font-size: 2rem; }
    .contact-wrapper { padding: 30px; }
}

/* =========================================
   HOME PAGE REDESIGN (ANA SAYFA ÖZEL)
   ========================================= */

/* 1. New Cinematic Hero */
#hero-home {
    background: url('../img/main3.jpg') no-repeat center center/cover;
    height: 100vh; /* Tam ekran */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 0; /* Header fixed olduğu için margin'e gerek yok */
}

.hero-overlay {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
    z-index: 1;
}

#hero-home .hero-content {
    z-index: 2;
    padding: 0 20px;
    max-width: 900px;
}

#hero-home h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}
#hero-home h1 span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold);
}

.btn-group {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-btn {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 35px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    transition: 0.3s;
}
.secondary-btn:hover {
    background: #fff;
    color: #000;
}

/* Animations for Hero */
.animate-fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 1s forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* 2. Split Section (Image Left / Text Right) */
.split-section { background: #fff; padding: 100px 0; }
.split-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}
.split-image { flex: 1; position: relative; }
.split-image img { 
    border-radius: 20px; 
    box-shadow: 20px 20px 0px var(--bg-light); 
}
.img-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: #fff;
    padding: 30px;
    border-radius: 50%;
    width: 150px; height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 4px solid #fff;
}
.img-badge span { display: block; font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }

.split-text { flex: 1; }
.split-text h2 { font-size: 3rem; margin-bottom: 25px; line-height: 1.2; }
.split-text em { font-family: 'Playfair Display', serif; color: var(--gold); }
.split-text p { margin-bottom: 20px; font-size: 1.05rem; color: #555; }
.text-link { color: var(--primary); font-weight: 700; text-transform: uppercase; border-bottom: 2px solid var(--gold); padding-bottom: 5px; }
.text-link:hover { color: var(--gold); }

/* 3. Modern Home Service Cards */
.service-card-home {
    display: block; /* Link kapsayıcı */
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.card-img-holder { position: relative; height: 350px; overflow: hidden; }
.card-img-holder img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.overlay-hover {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.4s;
}
.overlay-hover i { font-size: 2rem; color: #fff; border: 2px solid #fff; padding: 15px; border-radius: 50%; }

.service-card-home:hover .card-img-holder img { transform: scale(1.1); }
.service-card-home:hover .overlay-hover { opacity: 1; }

.card-body-home {
    position: absolute; bottom: 20px; left: 20px; right: 20px;
    background: #fff; padding: 20px; border-radius: 10px;
    text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.card-body-home h3 { font-size: 1.4rem; margin-bottom: 5px; color: var(--primary); }
.card-body-home p { font-size: 0.9rem; color: #777; margin: 0; }

/* 4. Stats Strip */
.stats-section { background: var(--primary); color: #fff; padding: 60px 0; }
.stats-grid { display: flex; justify-content: space-around; text-align: center; flex-wrap: wrap; gap: 30px; }
.stat-item h2 { font-size: 3.5rem; color: var(--gold); margin-bottom: 10px; }
.stat-item p { text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }

/* 5. Parallax CTA */
.parallax-cta {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1519741497674-611481863552?q=80&w=1920');
    background-attachment: fixed; /* Parallax Etkisi */
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}
.cta-content h2 { font-size: 3rem; color: #fff; margin-bottom: 20px; }
.cta-content p { font-size: 1.3rem; margin-bottom: 40px; color: #ddd; }
.btn-large { padding: 15px 50px; font-size: 1.1rem; }

/* Responsive Home Fixes */
@media (max-width: 992px) {
    #hero-home h1 { font-size: 3rem; }
    .split-wrapper { flex-direction: column; text-align: center; }
    .split-image img { box-shadow: none; width: 100%; }
    .img-badge { right: 50%; transform: translateX(50%); bottom: -40px; }
    .split-text { margin-top: 40px; }
}