/*
Theme Name: Primocys
Theme URI: https://example.com/primocys
Author: Primocys
Description: Custom lightweight WordPress theme with header, footer, blog templates.
Version: 1.0
*/

body{
    font-family: Arial, sans-serif;
    margin:0;
    padding:0;
    background:#f7f7f7;
}

header{
    background:#111;
    color:#fff;
    padding:15px 30px;
}

header a{
    color:#fff;
    text-decoration:none;
    margin-right:15px;
}

footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:20px;
    margin-top:40px;
}

.container{
    max-width:1100px;
    /* margin:auto;
    padding:20px;
    background:#fff; */
}

.post{
    margin-bottom:40px;
}

.post-title{
    font-size:24px;
}
/* SUCCESS MESSAGE */
.form-success-message {
  display: none;
  margin-top: 15px;
}

.success-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #e6f9f0;
  color: #0c7a43;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  animation: fadeIn 0.4s ease;
  border: 1px solid #b6efd3;
}

.success-icon {
  font-size: 18px;
}

/* BUTTON BASE */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* BUTTON TEXT */
.btn-text {
  display: inline-block;
}

/* LOADER WITH TEXT */
.btn-loader {
  display: none; /* hidden initially */
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
}

/* SPINNER */
.btn-loader::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

/* DISABLED BUTTON */
.btn-gradient:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ANIMATIONS */
@keyframes spin {
  to { transform: rotate(360deg); }
}

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