/*
Theme Name: TTK Website
Description: A custom WordPress theme for Google Cloud deployment
Author: Loikka.io
Version: 1.0.0
License: GPL v2 or later
Text Domain: ttk-website
*/

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

body {
  font-family: "Raleway", sans-serif;
  line-height: 1.5;
  color: #1D293D;
  background-color: #fff;
  overflow-x: hidden; /* Prevent horizontal scroll from full-width blocks */
}

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

.site-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
}

.site-description {
  color: #7f8c8d;
  font-size: 0.9rem;
}

/* Navigation */
.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.main-navigation a {
  text-decoration: none;
  color: #34495e;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-navigation a:hover {
  color: #3498db;
}

/* Content */
.site-main {
  max-width: 1504px;
  margin: 0 auto;
  padding: 0 2rem;
}

.entry-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.entry-content {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.entry-content p {
  margin-bottom: 1.5rem;
}

/* Allow full-width blocks to break out of container */
.entry-content > .alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.entry-content > .alignwide {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #2980b9;
}

/* Footer */
/* .site-footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 2rem 0;
  margin-top: 4rem;
} */

/* Responsive Design */
@media (max-width: 768px) {
  /* .site-main {
    padding: 1rem;
  } */

  .entry-title {
    font-size: 2rem;
  }

  .main-navigation ul {
    flex-direction: column;
    gap: 1rem;
  }
}
