/*
Theme Name: DT68M Theme
Theme URI: https://dt68m.com
Author: DT68M
Author URI: https://dt68m.com
Description: A custom WordPress theme for DT68M website
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dt68m-theme
Tags: custom-background, threaded-comments, translation-ready
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

.main-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.site-logo img {
  height: 50px;
  width: auto;
}

.site-logo span {
  color: #f1c40f;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  text-transform: uppercase;
  font-size: 14px;
}

.main-nav a:hover {
  color: #f1c40f;
}

.main-nav a.active {
  color: #f1c40f;
}



.hero-section {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23c0392b" width="100" height="100"/></svg>');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.hero-section h1 {
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-btn {
  display: inline-block;
  background: #f1c40f;
  color: #c0392b;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 18px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(241,196,15,0.4);
}

.warning-box {
  background: #fff3cd;
  border: 2px solid #ffc107;
  padding: 40px 20px;
  margin: 40px 0;
  border-radius: 10px;
}

.warning-box h2 {
  color: #856404;
  margin-bottom: 20px;
  font-size: 28px;
}

.warning-box ul {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

.warning-box li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #856404;
}

.warning-box li:before {
  content: "⚠️";
  position: absolute;
  left: 0;
}

.content-block {
  background: white;
  padding: 60px 20px;
  margin: 40px 0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.content-block h2 {
  color: #c0392b;
  margin-bottom: 30px;
  font-size: 32px;
  text-align: center;
}

.content-block p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.feature-item {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item h3 {
  color: #c0392b;
  margin-bottom: 15px;
  font-size: 22px;
}

.feature-item p {
  color: #666;
  line-height: 1.6;
}

.blog-section {
  background: white;
  padding: 60px 20px;
  margin: 40px 0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-section h2 {
  color: #c0392b;
  margin-bottom: 30px;
  font-size: 32px;
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #ddd;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  color: #c0392b;
  margin-bottom: 10px;
  font-size: 18px;
}

.blog-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.site-footer {
  background: #2c3e50;
  color: white;
  padding: 40px 20px;
  margin-top: 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h3 {
  color: #f1c40f;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-col p,
.footer-col a {
  color: #ecf0f1;
  line-height: 1.8;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: #f1c40f;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #34495e;
  color: #95a5a6;
}

@media (max-width: 768px) {
  .main-nav ul {
    display: none;
  }
  
  .hero-section h1 {
    font-size: 32px;
  }
  
  .hero-section p {
    font-size: 16px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.page-content {
  background: white;
  padding: 60px 20px;
  margin: 40px 0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-content h1 {
  color: #c0392b;
  margin-bottom: 30px;
  font-size: 36px;
  text-align: center;
}

.page-content h2 {
  color: #c0392b;
  margin: 30px 0 20px;
  font-size: 28px;
}

.page-content p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.page-content ul {
  margin: 20px 0;
  padding-left: 30px;
}

.page-content li {
  margin-bottom: 10px;
  color: #555;
  line-height: 1.8;
}