@charset "UTF-8";
/*
Theme Name: umitinrotasi.com
Theme URI: https://umitinrotasi.com
Author: ÜMİT SANCAR
Author URI: https://umitinrotasi.com
Description: umitinrotasi.com'a ait olup izinsizce kullanıldığı takdirde yasal işlemler başlatılacaktır.
Version: 1.0
Text Domain: umitinrotasi.com
*/
 * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Ginto, ui-sans-serif, system-ui, sans-serif;
      background-color: #fff9f4;
      color: #333;
      font-size: 14px;
		overflow-x:hidden;
    }

    header {
      background-color: #fff9f4;
      padding: 1rem 2rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      z-index: 10;
		width:100%;
    }

    .solheader {
      display: flex;
      flex-direction: column;
    }

    .logo-top {
      display: flex;
      align-items: center;
    }

    .logo-top img {
      height: 60px;
      width: 60px;
      border-radius: 50%;
      object-fit: contain;
      margin-right: 10px;
    }

    .logo-text {
      font-family: "Winky Sans", sans-serif;
      font-size: 1.5rem;
      font-weight: 600;
      color: #333;
    }

    .sagheader {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 24px;
      height: 18px;
      cursor: pointer;
      z-index: 15;
    }

    .menu-toggle span {
      height: 3px;
      background-color: #333;
      border-radius: 3px;
      transition: 0.3s ease;
    }

    nav {
      display: flex;
      gap: 1.5rem;
    }

    nav a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: color 0.2s;
    }

    nav a:hover {
      color: #4F46E5;
    }


    /* Arka plan karartma efekti */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(0, 0, 0, 0.5);
      display: none;
      z-index: 9;
      transition: opacity 0.3s ease;
    }

    .overlay.show {
      display: block;
    }


    footer {
      position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  font-size: 12px;
    background-color: #fff9f4;
    color: #333;
    text-align: center;
  }
  footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 6px;
	  font-weight:600;
	    font-size: 12px;

  }
  a {
    color: #333;
    text-decoration: none;
  }

  .grid-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 10px 6px;
    }

    .post-card {
      background-color: #fff;
		border:1px solid #ddd;
      border-radius:16%;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
		padding:10px;
		
    }

    .post-card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
	  border-radius: 16%;
    }

    .post-title a{
      padding: 10px;
      font-size: 24px;
      font-weight: 600;
    }

.post-author a{
	font-size:12px;
	color: #666;
}
.post-date a{
	font-size:12px;
	color: #666;
}

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    main {
      padding: 14px;
      text-align: center;
      margin-bottom: 100px;
    }

#content {
 max-width: 800px;
 margin: 20px auto;
 background: white;
padding: 20px;
 border-radius: 10px;
 box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
h1 {
 font-size: 28px;
text-align: center;
 }
p {
 font-size: 16px;
 margin: 15px 0;
text-align: left;
line-height:1.4;
}
.contentimg {
	display: block;
  margin: auto;
  width: 60%;
	border-radius: 12px;
	padding: 10px;
}
.instagram-banner {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  padding: 12px 18px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  max-width:600px;
	margin:auto;
	margin:20px auto;
}

.instagram-banner a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 16px;
}

.instagram-banner img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}


.comment-section-container {
    margin-top: 60px;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
   
}

.comments-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #333;
}



.comment-author {
    font-weight: 600;
    color: #222;
}

.comment-meta {
    font-size: 13px;
    color: #999;
}

.comment-content {
    margin-top: 10px;
    font-size: 14px;
    color: #444;
}

.comment-reply-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
    color: #0073aa;
    text-decoration: none;
}

.comment-reply-link:hover {
    text-decoration: underline;
}

.no-comments {
    font-style: italic;
    color: #777;
}

.comment-form-wrapper {
    margin-top: 50px;
}

.comment-form .form-group {
    margin-bottom: 20px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
    transition: all 0.2s ease-in-out;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0,115,170,0.2);
    outline: none;
}

.submit-btn {
    background-color: #0073aa;
    color: #fff;
    padding: 12px 24px;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background-color: #005f8d;
}

.email-warning {
    margin-top: 15px;
    padding: 12px;
    background-color: #ffecec;
    border: 1px solid #e57373;
    color: #d32f2f;
    border-radius: 5px;
    font-size: 14px;
}
.chat-comment {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    animation: fadeInUp 0.4s ease;
}

.chat-bubble-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.chat-avatar img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.chat-bubble {
    background-color: #e6f3ff;
    padding: 8px 10px;
    border-radius: 20px;
    position: relative;
    max-width: 100%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    font-size: 12px;
    line-height: 1;
}

.chat-meta {
    font-size: 12px;
    color: #555;
    margin-bottom: 2px;
}

.chat-time {
    color: #999;
    font-style: italic;
    margin-left: 10px;
}

.chat-content p{
	font-size:14px;
}

.chat-reply {
    margin-top: 2px;
    font-size: 12px;
}

.chat-reply a {
    color: #0073aa;
    text-decoration: none;
}

.chat-reply a:hover {
    text-decoration: underline;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.comment-section-container .children .chat-bubble{
	background-color:#fff9f4;
}
.logged-in-as a{
	color: #0073aa;
}




    /* Mobil Stil */
    @media (max-width: 768px) {
      .menu-toggle {
        display: flex;
      }

      nav {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #fff9f4;
        flex-direction: column;
        width: 200px;
        padding: 1rem;
        box-shadow: 0 8px 16px rgba(0,0,0,0.05);
        display: none;
        animation: fadeIn 0.3s ease forwards;
        z-index: 10;
      }

      nav.show {
        display: flex;
      }

      nav a {
        padding: 0.5rem 0;
      }

      .sagheader nav {
        display: none;
      }

      .sagheader nav.show {
        display: flex;
      }
		
		 .grid-container {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
		
    }
    @media(max-width: 640px){
      .post-card img {
        height: 300px;
      }
		 .grid-container {
      max-width:460px;
    }
.contentimg {
  width: 100%;

}
    }