/* Custom styles for The Centsible Family theme */

/* Typography */
body {
    font-family: Georgia, "Times New Roman", Times, serif;
    line-height: 1.6;
    color: #000000;
    font-size: 13px;
    background: #714f2c;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Century Gothic", Verdana, sans-serif;
    font-weight: bold;
    margin-bottom: 15px;
    color: #C20E3B;
}

h1 {
    font-size: 24px;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 18px;
}

/* Links */
a {
    color: #681a02;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #C20E3B;
    text-decoration: underline;
}

/* Header Customizations */
#header_area {
    background: #714f2c;
}

/* Navigation Customizations */
#menu-nav-menu {   
    border-radius: 0;
    padding: 0;
    text-transform: uppercase;
}

#menu-nav-menu li {
    margin: 0;
}

#menu-nav-menu a {
    color: #C9E27C;
    padding: 14px 12px 12px 12px;
    border-radius: 0;
    transition: background-color 0.3s;
}

#menu-nav-menu a:hover {
    color: #714F2C;
    background: #DCF2FF;
    text-decoration: none;
}

#menu-nav-menu .sub-menu {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 0 0 6px 6px;
}

#menu-nav-menu .sub-menu a {
    padding: 12px 20px;
    color: #714F2C;
}

/* Logo Bar */
#logo-bar {
    background: transparent;
}

.search-header {
    font-family: "Nothing You Could Do", cursive, Arial, sans-serif;
    color: #C20E3B;
    font-size: 18px;
}

/* Content Customizations */
.content {
    background: #fff;
    padding: 20px;
    border-radius: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Footer */
.footer_items {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.footer_items h3 {
    color: #000000;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-family: "Century Gothic", Verdana, sans-serif;
    font-size: 16px;
}

.footer_items .textwidget {
    font-size: 13px;
    line-height: 1.5;
    font-family: "Century Gothic", Verdana, sans-serif;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Forms */
input, textarea, select {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 13px;
}

input:focus, textarea:focus, select:focus {
    border-color: #714F2C;
    outline: none;
}

/* Buttons */
button, .button {
    background: #714F2C;
    color: #C9E27C;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: "Century Gothic", Verdana, sans-serif;
    font-size: 13px;
}

button:hover, .button:hover {
    background: #C20E3B;
    color: #fff;
}

/* Store Grid Styles */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.store-item {
    background: #fff;
    border: 1px solid #e2c48d;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.store-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.store-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 4px;
}

.store-item h3 {
    margin: 10px 0;
    font-size: 18px;
}

.store-item h3 a {
    color: #C20E3B;
    text-decoration: none;
}

.store-item h3 a:hover {
    color: #681a02;
}

.store-item ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.store-item ul li {
    margin: 10px 0;
}

.store-item ul li img {
    max-width: 150px;
    margin: 5px 0;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    #menu-nav-menu {
        flex-direction: column;
    }
    
    #menu-nav-menu li {
        margin: 5px 0;
    }
    
    .content {
        padding: 15px;
    }
    
    .footer_items {
        padding: 15px;
    }
    
    #logo-bar {
        flex-direction: column;
    }
    
    #logo-bar .search-social {
        width: 100%;
        padding: 15px;
    }
    
    .store-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    .store-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Footer Styles --- */
.site-footer {
  background: #f7f3ed;
  border-top: 2px solid #e2c48d;
  margin-top: 40px;
  padding: 0;
  font-size: 16px;
  color: #714f2c;
}
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 20px 20px 20px;
  box-sizing: border-box;
}
.footer-section {
  flex: 1 1 300px;
  min-width: 260px;
  margin-bottom: 30px;
}
.footer-section h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #C20E3B;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #714f2c;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #C20E3B;
}
.footer-about {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.footer-avatar {
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(113,79,44,0.08);
  border: 2px solid #e2c48d;
  width: 100px;
  height: 100px;
  object-fit: cover;
}
.footer-about p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}
.footer-about a {
  color: #C20E3B;
  text-decoration: underline;
  font-weight: 500;
}
.footer-bottom {
  text-align: center;
  padding: 18px 10px 10px 10px;
  background: #e2c48d;
  color: #714f2c;
  font-size: 15px;
  border-radius: 0 0 8px 8px;
}
.footer-bottom a {
  color: #714f2c;
  text-decoration: underline;
}
@media (max-width: 700px) {
  .footer-container {
    flex-direction: column;
    align-items: stretch;
    padding: 30px 10px 10px 10px;
  }
  .footer-section {
    margin-bottom: 20px;
  }
  .footer-about {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
} 