/*
Theme Name: Michel
Description: dehdhed
Author: ww
Version: 1.0.0
*/


/* Design System Variables */
:root {
  --border-radius: 8px;
  --shadow: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
  --primary-color: #3b82f6;
  --secondary-color: #64748b;
  --background-color: #ffffff;
  --text-color: #1f2937;
}

/* Neomorphism Design */
body {
  background: linear-gradient(145deg, #f0f0f0, #cacaca);
}

.btn, .wp-block-button__link {
  background: linear-gradient(145deg, #3b82f6, #64748b);
  box-shadow: 8px 8px 16px #bebebe, -8px -8px 16px #ffffff;
  border: none;
  transition: all 0.3s ease;
}

.btn:hover, .wp-block-button__link:hover {
  box-shadow: inset 8px 8px 16px #bebebe, inset -8px -8px 16px #ffffff;
}

.card, .widget, .post {
  background: #e0e0e0;
  box-shadow: 12px 12px 24px #bebebe, -12px -12px 24px #ffffff;
  border: none;
}

.site-header {
  background: #e0e0e0;
  box-shadow: 0 8px 16px #bebebe, 0 -8px 16px #ffffff;
}

/* Common Modern Elements */
* {
  border-radius: var(--border-radius);
}

.btn, .wp-block-button__link,
input, textarea, select {
  border-radius: var(--border-radius);
}

/* Animations */
.btn, .card, .widget, .post {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive improvements */
@media (max-width: 768px) {
  .card, .widget, .post {
    margin-bottom: 1rem;
  }
  
  .btn, .wp-block-button__link {
    width: 100%;
    text-align: center;
  }
}


/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.site-header {
  background: #ffffff;
  padding: 1rem 0;
  
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  
  
}

.site-title {
  font-size: 2rem;
  font-weight: bold;
  color: #3b82f6;
  text-decoration: none;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  
}

.main-navigation a {
  color: #1f2937;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-navigation a:hover {
  color: #3b82f6;
}

/* Main Content */
.site-main {
  min-height: 60vh;
  padding: 2rem 0;
}

.post, .page {
  margin-bottom: 2rem;
}

.entry-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #3b82f6;
}

.entry-content {
  line-height: 1.8;
}

.entry-content h1, .entry-content h2, .entry-content h3 {
  margin: 1.5rem 0 1rem;
  color: #3b82f6;
}

.entry-content p {
  margin-bottom: 1rem;
}

/* Footer Styles */
.site-footer {
  background: #f9fafb;
  color: #1f2937;
  padding: 2rem 0;
  margin-top: 3rem;
  border-top: 1px solid #e5e7eb;
  
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-navigation ul {
    flex-direction: column;
    gap: 1rem;
  }
  
  .entry-title {
    font-size: 2rem;
  }
  
  .container {
    padding: 0 15px;
  }
}

/* WordPress Specific */
.alignleft {
  float: left;
  margin: 0 1rem 1rem 0;
}

.alignright {
  float: right;
  margin: 0 0 1rem 1rem;
}

.aligncenter {
  display: block;
  margin: 0 auto 1rem;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.875rem;
  color: #64748b;
  text-align: center;
  margin-top: 0.5rem;
}

/* Widget Styles */
.widget {
  margin-bottom: 2rem;
}

.widget-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #3b82f6;
}

.widget ul {
  list-style: none;
  padding: 0;
}

.widget ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.widget ul li:last-child {
  border-bottom: none;
}

.widget ul li a {
  color: #1f2937;
  text-decoration: none;
}

.widget ul li a:hover {
  color: #3b82f6;
}

/* Header Widget Area */
.header-widget-area {
  text-align: right;
  margin-bottom: 1rem;
}

.header-widget {
  display: inline-block;
  margin-left: 1rem;
}

/* Footer Widgets */
.footer-widgets {
  background: #f3f4f6;
  color: #1f2937;
  padding: 3rem 0;
}

.footer-widget {
  margin-bottom: 1.5rem;
}

.footer-widget-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #3b82f6;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #3b82f6;
  color: white;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #64748b;
  transform: translateY(-2px);
}
