/*
Theme Name: FTD Neutral Theme
Description: A modern WordPress theme for FoodTada with WooCommerce support
Version: 1.0.2
Author: FoodTada Team
*/

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Basic Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Basic Header */
.basic-header {
  background: #fff;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.site-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

/* Basic Footer */
.basic-footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 2rem 0;
  margin-top: 2rem;
}

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

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
}
