/* 
 * SekinenAO - Main Stylesheet
 * Modern, responsive design for gaming website
 */

/* Base Styles and CSS Reset */
:root {
  --primary-color: #3E54AC;
  --secondary-color: #F99417;
  --accent-color: #FFDEB4;
  --dark-color: #181823;
  --light-color: #F5F5F5;
  --text-color: #333333;
  --light-text: #FFFFFF;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.btn-primary:hover {
  background-color: var(--dark-color);
  color: var(--light-text);
  transform: translateY(-3px);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--light-text);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
  transform: translateY(-3px);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  padding: 1rem 0;
  z-index: 1000;
}

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

.logo a {
  display: flex;
  align-items: center;
  color: var(--dark-color);
  font-size: 1.5rem;
  font-weight: 700;
}

.logo img {
  margin-right: 0.5rem;
}

.nav-list {
  display: flex;
  list-style: none;
}

.nav-list li {
  margin-left: 1.5rem;
}

.nav-list a {
  color: var(--dark-color);
  font-weight: 500;
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

.nav-list a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://source.unsplash.com/random/1920x1080/?gaming') no-repeat center center/cover;
  color: var(--light-text);
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: 0;
  padding-top: 80px;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--light-text);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

/* Featured Games Section */
.featured-games {
  padding: 6rem 0;
  background-color: var(--light-color);
}

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

.game-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.game-image {
  height: 200px;
  background: url('https://source.unsplash.com/random/400x300/?game') no-repeat center center/cover;
}

.game-card:nth-child(2) .game-image {
  background-image: url('https://source.unsplash.com/random/400x300/?casino');
}

.game-card:nth-child(3) .game-image {
  background-image: url('https://source.unsplash.com/random/400x300/?racing');
}

.game-card:nth-child(4) .game-image {
  background-image: url('https://source.unsplash.com/random/400x300/?strategy');
}

.game-info {
  padding: 1.5rem;
}

.game-info h3 {
  margin-bottom: 0.5rem;
}

.game-info p {
  margin-bottom: 1.5rem;
  color: #666;
}

/* Popular Games Section */
.popular-games {
  padding: 6rem 0;
  background-color: var(--dark-color);
}

.popular-games .section-title {
  color: var(--light-text);
}

.popular-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.popular-text {
  color: var(--light-text);
}

.popular-text a {
  color: var(--secondary-color);
}

.popular-text a:hover {
  color: var(--accent-color);
}

.popular-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  transition: var(--transition);
}

.feature:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-right: 1.5rem;
}

.feature-text h3 {
  color: var(--light-text);
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: #ccc;
  margin-bottom: 0;
}

/* Gaming Guides Section */
.gaming-guides {
  padding: 6rem 0;
  background-color: var(--light-color);
}

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

.guide-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.read-more {
  display: inline-block;
  font-weight: 600;
  color: var(--secondary-color);
  margin-top: 1rem;
}

.read-more:hover {
  color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background-color: #f8f9fa;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-content::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  left: -20px;
  top: -20px;
  opacity: 0.1;
  color: var(--primary-color);
}

.testimonial-author p {
  margin-bottom: 0;
}

/* Call to Action */
.cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--light-text);
  text-align: center;
}

.cta h2 {
  color: var(--light-text);
  margin-bottom: 1.5rem;
}

.cta p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.cta .btn {
  background-color: var(--light-text);
  color: var(--primary-color);
}

.cta .btn:hover {
  background-color: var(--accent-color);
  color: var(--dark-color);
}

/* Footer */
.footer {
  padding: 5rem 0 2rem;
  background-color: var(--dark-color);
  color: #ccc;
}

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

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo img {
  margin-bottom: 1rem;
}

.footer-logo p {
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--light-text);
}

.footer h3 {
  color: var(--light-text);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: #ccc;
}

.footer-links ul li a:hover {
  color: var(--secondary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--light-text);
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--secondary-color);
  color: var(--light-text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: #ccc;
}

.footer-legal a:hover {
  color: var(--secondary-color);
}

/* Responsive Design */
@media screen and (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .popular-content {
    grid-template-columns: 1fr;
  }
  
  .popular-text {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-list {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--light-color);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  
  .nav-list.active {
    left: 0;
  }
  
  .nav-list li {
    margin: 1.5rem 0;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    margin-top: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 576px) {
  html {
    font-size: 14px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .testimonials-slider {
    grid-template-columns: 1fr;
  }
  
  .guides-grid {
    grid-template-columns: 1fr;
  }
}

/* Icons (Simple CSS Icons) */
.icon-facebook:before {
  content: "f";
  font-weight: bold;
}

.icon-twitter:before {
  content: "t";
  font-weight: bold;
}

.icon-instagram:before {
  content: "ig";
  font-weight: bold;
}
