/*
Theme Name: Sineflix Base
Theme URI: https://sineflix.in
Author: VR Panghal
Author URI: https://sineflix.in
Description: Base theme for Sineflix Group websites
Version: 1.0
License: GPL v2 or later
Text Domain: sineflix
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto;
  line-height: 1.6;
  background: #ffffff;
  color: #111;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

.site-header {
  background: #000;
  color: #fff;
  padding: 15px 0;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.site-footer {
  background: #111;
  color: #aaa;
  padding: 40px 0;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 30px;
}
