/* =========================================
   06 Minimal Corporate (Kurumsal Toplantı)
   ========================================= */

:root {
    --bg-light: #F9FAFB;
    --text-main: #111827;
    --text-muted: #6B7280;
    --border-color: #E5E7EB;
    --accent: #2563EB;
    --accent-hover: #1D4ED8;
    --white: #FFFFFF;
    
    --font-main: 'Inter', sans-serif;
}

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

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

.minimal-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--white);
    min-height: 100vh;
    box-shadow: 0 0 50px rgba(0,0,0,0.03);
}

/* Header */
.minimal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%;
    border-bottom: 1px solid var(--border-color);
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-main);
}
.logo i {
    color: var(--accent);
    font-size: 1.5rem;
}
.header-right {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero Section */
.minimal-hero {
    padding: 100px 5% 80px;
}

.hero-content {
    max-width: 800px;
}

.minimal-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.names {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-muted);
    max-width: 650px;
}

/* Details Section */
.minimal-details {
    padding: 40px 5% 80px;
}

.details-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.minimal-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}
.minimal-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: #D1D5DB;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--text-muted);
}
.card-header i {
    font-size: 1.5rem;
}
.card-header h3 {
    font-size: 1rem;
    font-weight: 500;
}

.card-body {
    border-left: 2px solid var(--accent);
    padding-left: 20px;
}

.highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 5px;
}

.card-body p {
    color: var(--text-muted);
}

.link-minimal {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    margin-top: 15px;
    transition: gap 0.3s ease;
}
.link-minimal:hover {
    gap: 10px;
    color: var(--accent-hover);
}

/* RSVP Section */
.minimal-rsvp {
    padding: 80px 5%;
    background-color: var(--text-main);
    color: var(--white);
}

.rsvp-content {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.rsvp-left {
    flex: 1;
    min-width: 300px;
}
.rsvp-left h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}
.rsvp-left p {
    color: #9CA3AF;
    font-size: 1.1rem;
}

.rsvp-right {
    flex: 1;
    min-width: 300px;
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.minimal-form input,
.minimal-form select {
    padding: 15px;
    background-color: #1F2937;
    border: 1px solid #374151;
    border-radius: 6px;
    color: var(--white);
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}
.minimal-form input:focus,
.minimal-form select:focus {
    border-color: var(--accent);
}

.btn-minimal {
    padding: 15px;
    background-color: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-minimal:hover {
    background-color: var(--accent-hover);
}

.form-message {
    margin-top: 15px;
    font-size: 1rem;
    color: #34D399; /* Emerald 400 */
}

/* Footer */
.minimal-footer {
    padding: 30px 5%;
    text-align: center;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}
.minimal-footer a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .names { font-size: 3rem; }
    .rsvp-content { flex-direction: column; gap: 30px; }
}

/* Logo Area */
.company-logo-area {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}
.sample-logo-img {
    max-width: 150px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Program Flow */
.program-flow-section {
    position: relative;
    z-index: 5;
    padding: 80px 5%;
    background-color: rgba(255, 255, 255, 0.03);
}
.program-container {
    max-width: 800px;
    margin: 0 auto;
}
.program-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
}
.program-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.timeline-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid #888;
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
}
.timeline-item:hover {
    transform: translateX(10px);
    border-left-color: #555;
}
.timeline-item .time {
    font-size: 1.8rem;
    font-weight: 700;
    width: 120px;
    text-align: left;
    border-right: 1px solid rgba(128,128,128,0.2);
    margin-right: 30px;
    color: inherit;
}
.timeline-item .event {
    flex: 1;
    text-align: left;
}
.timeline-item .event h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 600;
}
.timeline-item .event p {
    font-size: 0.95rem;
    opacity: 0.8;
}

@media (max-width: 600px) {
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .timeline-item .time {
        border-right: none;
        border-bottom: 1px solid rgba(128,128,128,0.2);
        margin-right: 0;
        margin-bottom: 15px;
        padding-bottom: 10px;
        width: 100%;
    }
}
