/* =========================================
   04 Creative Agency (Kurumsal)
   ========================================= */

:root {
    --bg-color: #F4F4F5;
    --text-dark: #18181B;
    --brand-purple: #7C3AED;
    --brand-pink: #EC4899;
    --brand-orange: #F97316;
    --white: #FFFFFF;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
}

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

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

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

/* Abstract Background Shapes */
.shape {
    position: absolute;
    filter: blur(80px);
    z-index: 0;
    border-radius: 50%;
    animation: floatShape 10s ease-in-out infinite alternate;
}
.shape-1 {
    top: -100px; left: -100px;
    width: 400px; height: 400px;
    background-color: rgba(124, 58, 237, 0.4);
}
.shape-2 {
    top: 40%; right: -150px;
    width: 500px; height: 500px;
    background-color: rgba(236, 72, 153, 0.4);
    animation-delay: -5s;
}
.shape-3 {
    bottom: -150px; left: 20%;
    width: 600px; height: 300px;
    background-color: rgba(249, 115, 22, 0.4);
    animation-delay: -2s;
}
@keyframes floatShape {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Hero Section */
.creative-hero {
    position: relative;
    z-index: 5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
}

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

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(90deg, var(--brand-purple), var(--brand-pink));
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: 30px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.names {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 0.9;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--text-dark);
}

.tagline {
    font-size: 1.2rem;
    font-weight: 400;
    color: #3F3F46;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.creative-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.5);
    transition: transform 0.3s ease;
}
.creative-card:hover {
    transform: translateY(-10px);
}

.card-icon-wrapper {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--brand-purple), var(--brand-pink));
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    transform: rotate(-10deg);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--white);
}

.creative-card h2 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #71717A;
    margin-bottom: 10px;
}

.highlight {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.btn-creative {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--text-dark);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    margin-top: 20px;
    transition: all 0.3s ease;
}
.btn-creative:hover {
    background-color: var(--brand-orange);
}

/* RSVP Section */
.creative-rsvp {
    position: relative;
    z-index: 5;
    padding: 100px 5% 150px;
    display: flex;
    justify-content: center;
}

.rsvp-content {
    background-color: var(--text-dark);
    padding: 60px 50px;
    border-radius: 40px;
    max-width: 650px;
    width: 100%;
    text-align: center;
    color: var(--white);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.rsvp-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.rsvp-content p {
    color: #A1A1AA;
    margin-bottom: 30px;
}

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

.creative-form input,
.creative-form select {
    padding: 18px;
    background-color: #27272A;
    border: 2px solid transparent;
    border-radius: 15px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}
.creative-form input:focus,
.creative-form select:focus {
    border-color: var(--brand-purple);
    background-color: #18181B;
}

.btn-creative-solid {
    padding: 18px;
    background: linear-gradient(90deg, var(--brand-purple), var(--brand-pink));
    color: var(--white);
    border: none;
    border-radius: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}
.btn-creative-solid:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.form-message {
    margin-top: 20px;
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--brand-orange);
}

.creative-footer {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 30px;
    font-size: 0.9rem;
    color: #A1A1AA;
}
.creative-footer a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
    .names { font-size: 4rem; }
    .creative-card { padding: 40px 20px; }
    .rsvp-content { padding: 40px 20px; }
}

/* 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%;
    }
}
