/* ===== EVENT DETAIL PAGE ===== */

.event-page{
    max-width:1000px;
    margin:60px auto;
    padding:0 20px;
}

.event-title{
    text-align:center;
    color:#fff;
    font-size:2.8rem;
    margin-bottom:30px;
}

.event-banner{
    width:50%;
    border-radius:20px;
    display:center;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 15px 40px rgba(0,0,0,.35);
    margin-bottom:40px;
}

.event-details{
    background:rgba(15,23,42,.45);
    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;

    padding:40px;

    box-shadow:0 15px 40px rgba(0,0,0,.35);
}

.event-details p{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:18px;
    font-size:1rem;
}

.event-details strong{
    color:#fff;
}
/* ===== FEEDBACK ===== */

#feedback{
    margin-top:50px;
}

#feedback h2{
    color:white;
    text-align:center;
    margin-bottom:25px;
}

#feedback form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

#feedback input,
#feedback textarea{
    width:100%;
    padding:14px 16px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);
    border-radius:10px;

    color:white;
    box-sizing:border-box;
}

#feedback textarea{
    min-height:150px;
    resize:vertical;
}

#feedback input:focus,
#feedback textarea:focus{
    outline:none;
    border-color:#4d5bf7;
}

#feedback button{
    background:#4d5bf7;
    color:white;

    border:none;
    border-radius:10px;

    padding:14px 22px;

    cursor:pointer;
    font-weight:600;

    transition:.3s;
}

#feedback button:hover{
    background:#ff6b35;
    transform:translateY(-2px);
}

.icon.instagram{
  width:60px;
  height:60px;
  background:#E1306C;
  border-radius:50%;

  display:flex;               /* 🔥 önemli */
  align-items:center;         /* 🔥 dikey ortala */
  justify-content:center;     /* 🔥 yatay ortala */

  margin:0 auto;
  text-decoration:none;
}

.icon.instagram i{
  font-size:30px;
  color:white;
  line-height:1;              /* 🔥 kritik */
}