/* =========================================
   03 Asker - Mehmetçik
   ========================================= */

:root {
    --dark-bg: #1A1A1D;
    --sunset-orange: #D35400;
    --sunset-yellow: #E67E22;
    --text-light: #FDFEFE;
    --text-muted: #BDC3C7;
    
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.mehmetcik-wrapper {
    position: relative;
    width: 100%;
}

/* Sunset Background glow */
.sunset-bg {
    position: fixed;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(211, 84, 0, 0.15) 0%, rgba(26, 26, 29, 1) 50%);
    z-index: 0;
    pointer-events: none;
}

/* Hero Section */
.mehmetcik-hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 20px 150px;
    background: linear-gradient(180deg, rgba(26,26,29,0.5) 0%, rgba(26,26,29,1) 100%);
}

.hero-content {
    max-width: 600px;
    z-index: 3;
}

.mehmetcik-eyebrow {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 6px;
    color: var(--sunset-yellow);
    margin-bottom: 20px;
}

.names {
    font-family: var(--font-heading);
    font-size: 6.5rem;
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(211, 84, 0, 0.4);
}

.hero-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--sunset-orange), transparent);
    margin: 0 auto 30px;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.8;
}

.hero-silhouette {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.1;
    z-index: 1;
}
.silhouette-icon {
    font-size: 25rem;
    color: var(--sunset-orange);
}

/* Details Section */
.mehmetcik-details {
    position: relative;
    z-index: 5;
    padding: 60px 5% 100px;
}

.details-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.mehmetcik-card {
    flex: 1;
    min-width: 300px;
    background-color: #222226;
    border-radius: 5px;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease;
}
.mehmetcik-card:hover {
    transform: translateY(-5px);
}

.card-glow {
    position: absolute;
    top: -50px; left: 50%; transform: translateX(-50%);
    width: 100px; height: 100px;
    background: var(--sunset-orange);
    filter: blur(50px);
    opacity: 0.3;
}

.card-icon {
    font-size: 3.5rem;
    color: var(--sunset-yellow);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.mehmetcik-card h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.highlight {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.mehmetcik-card p {
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}

.btn-mehmetcik {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--sunset-orange);
    border: 2px solid var(--sunset-orange);
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    margin-top: 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}
.btn-mehmetcik:hover {
    background-color: var(--sunset-orange);
    color: var(--text-light);
    box-shadow: 0 0 20px rgba(211, 84, 0, 0.4);
}

/* RSVP Section */
.mehmetcik-rsvp {
    position: relative;
    z-index: 5;
    padding: 100px 5%;
    display: flex;
    justify-content: center;
    background-color: #111113;
}

.rsvp-content {
    background-color: #1A1A1D;
    padding: 60px 50px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    border-radius: 5px;
    border-top: 4px solid var(--sunset-orange);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.rsvp-content h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.rsvp-content p {
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.mehmetcik-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.mehmetcik-form input,
.mehmetcik-form select {
    flex: 1;
    padding: 20px;
    background-color: #222226;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}
.mehmetcik-form input:focus,
.mehmetcik-form select:focus {
    border-color: var(--sunset-orange);
    box-shadow: 0 0 15px rgba(211, 84, 0, 0.2);
}

.btn-mehmetcik-solid {
    padding: 20px;
    background: linear-gradient(90deg, var(--sunset-orange), var(--sunset-yellow));
    color: var(--text-light);
    border: none;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    margin-top: 10px;
}
.btn-mehmetcik-solid:hover {
    opacity: 0.9;
}

.form-message {
    margin-top: 20px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--sunset-yellow);
}

.mehmetcik-footer {
    position: relative;
    z-index: 5;
    background-color: #0A0A0C;
    text-align: center;
    padding: 30px;
    font-size: 0.9rem;
    color: #555;
}
.mehmetcik-footer a {
    color: var(--sunset-orange);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .names { font-size: 4.5rem; }
    .form-row { flex-direction: column; gap: 20px; }
    .rsvp-content { padding: 40px 20px; }
}
