/* 
 * Angkawawa.monster - Main Stylesheet
 * Premium Brazilian Entertainment Portal
 * Author: Cascade
 * Version: 1.0
 */

/* ---- Reset & Base Styles ---- */
:root {
  --primary-color: #e63946;
  --secondary-color: #457b9d;
  --accent-color: #f1c40f;
  --dark-color: #1d3557;
  --light-color: #f1faee;
  --grey-color: #a8dadc;
  --text-color: #333333;
  --text-light: #ffffff;
  --font-main: 'Montserrat', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --radius: 8px;
}

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

html {
  font-size: 62.5%; /* 10px = 1rem */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--text-color);
  background-color: #ffffff;
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

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

section {
  padding: 8rem 0;
}

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

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

.btn.primary:hover {
  background-color: #c83242;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

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

.btn.secondary:hover {
  background-color: #396789;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: var(--dark-color);
}

h1 {
  font-size: 4.8rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

p {
  margin-bottom: 1.6rem;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.section-header h2:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1rem;
  width: 50px;
  height: 4px;
  background: var(--primary-color);
  transform: translateX(-50%);
}

.section-header p {
  color: var(--secondary-color);
  font-size: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Header & Navigation ---- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem 0;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  padding: 1rem 0;
  background-color: #ffffff;
}

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

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

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

nav .menu {
  display: flex;
}

nav .menu li {
  margin-left: 3rem;
}

nav .menu a {
  color: var(--dark-color);
  font-weight: 600;
  padding: 0.5rem 0;
  position: relative;
}

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

nav .menu a:hover:after,
nav .menu a.active:after {
  width: 100%;
}

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

.mobile-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(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4)), url('https://source.unsplash.com/random/1920x1080/?brazil,entertainment') no-repeat center center/cover;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--text-light);
}

.hero h1 {
  font-size: 5.6rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.hero h2 {
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 3rem;
  color: var(--text-light);
}

.hero p {
  font-size: 2rem;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

/* ---- About Section ---- */
.about .content-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.image-wrap {
  position: relative;
}

.image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.feature {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius);
  background-color: #f8f8f8;
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature .icon {
  font-size: 3.6rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.feature h4 {
  margin-bottom: 1rem;
}

/* ---- Services Section ---- */
.services {
  background-color: #f8f8f8;
}

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

.service-card {
  background-color: #ffffff;
  border-radius: var(--radius);
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.service-card .icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.service-card h3 {
  margin-bottom: 1.5rem;
}

/* ---- Games Section ---- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.game-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.game-image {
  height: 200px;
  background: linear-gradient(45deg, #f1c40f, #e74c3c);
}

.game-info {
  padding: 2rem;
  background-color: #ffffff;
}

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

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

.game-info a {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 600;
  transition: var(--transition);
}

.game-info a:hover {
  background-color: var(--secondary-color);
}

.news-sources {
  margin-top: 5rem;
  text-align: center;
  padding: 3rem;
  background-color: #f8f8f8;
  border-radius: var(--radius);
}

.news-sources h3 {
  margin-bottom: 2rem;
}

.news-links ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.news-links a {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #ffffff;
  border-radius: 50px;
  box-shadow: var(--shadow);
  font-weight: 600;
  transition: var(--transition);
}

.news-links a:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

/* ---- Testimonials Section ---- */
.testimonials {
  background-color: var(--dark-color);
  color: var(--text-light);
}

.testimonials .section-header h2 {
  color: var(--text-light);
}

.testimonials-slider {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin: 0 auto;
  max-width: 1000px;
}

.testimonial {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
}

.testimonial .stars {
  color: var(--accent-color);
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.testimonial .quote {
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.testimonial .author {
  font-weight: 600;
}

/* ---- Contact Section ---- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info h3 {
  margin-bottom: 2rem;
}

.contact-methods {
  margin-top: 3rem;
}

.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.contact-method .icon {
  font-size: 2.4rem;
  margin-right: 1.5rem;
  color: var(--primary-color);
}

.contact-form {
  background-color: #f8f8f8;
  padding: 3rem;
  border-radius: var(--radius);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 1.6rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* ---- Footer ---- */
footer {
  background-color: var(--dark-color);
  color: var(--text-light);
  padding: 5rem 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  margin-bottom: 3rem;
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  margin: 0 auto 1.5rem;
}

.footer-logo h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.link-column h4 {
  color: var(--text-light);
  margin-bottom: 2rem;
  position: relative;
}

.link-column h4:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1rem;
  width: 30px;
  height: 3px;
  background-color: var(--primary-color);
}

.link-column ul li {
  margin-bottom: 1rem;
}

.link-column a {
  color: var(--grey-color);
}

.link-column a:hover {
  color: var(--text-light);
}

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

.social-links {
  display: flex;
  gap: 2rem;
}

.social-links a {
  color: var(--text-light);
  font-size: 2rem;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--primary-color);
}

/* ---- Responsive Design ---- */
@media screen and (max-width: 1024px) {
  html {
    font-size: 56.25%; /* 9px = 0.9rem */
  }
  
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-slider {
    flex-direction: column;
    gap: 2rem;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 50%; /* 8px = 0.8rem */
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  nav .menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
  }
  
  nav .menu.active {
    height: 100vh;
    opacity: 1;
  }
  
  nav .menu li {
    margin: 2rem 0;
  }
  
  .about .content-wrap,
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-logo {
    text-align: left;
  }
  
  .footer-logo img {
    margin: 0 0 1.5rem;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 576px) {
  .hero h1 {
    font-size: 4.2rem;
  }
  
  .hero h2 {
    font-size: 2.2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .features {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Animation classes */
.fade-in {
  animation: fadeIn 1s ease;
}

.slide-up {
  animation: slideUp 0.8s ease;
}

.slide-right {
  animation: slideRight 0.8s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
