/*
Theme Name: Towerhouse Studio
Theme URI: https://towerhouse.studio
Author: Towerhouse Studio
Author URI: https://towerhouse.studio
Description: A custom WordPress theme for Towerhouse Studio
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: towerhouse-studio
*/

/* WebKit scrollbar styles */
html::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
    border-radius: 10px;
    background-color: var(--color-3);
}

html::-webkit-scrollbar {
    width: 7px;
    background-color: var(--color-3);
}

html::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
    background-color: #393c43;
}

/* Standard scrollbar styles */
html {
    scrollbar-width: thin;
    scrollbar-color: #393c43 var(--color-3);
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--color-3);
    line-height: 20px;
    margin: 0px;
    color: #333
}

section {
    padding: 2.5rem 0;
    position: relative; /* Ensure proper stacking context */
}

* {
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.w-button {
    color: #fff;
    line-height: inherit;
    cursor: pointer;
    background-color: var(--color-1);
    border: 0;
    border-radius: 0;
    padding: 9px 15px;
    text-decoration: none;
    display: inline-block;
}

a {
    color: var(--color-1);
    text-decoration: underline;
    background-color: transparent;
}

/* Centralized Responsive Font Sizes (from hero-home.css) */

h1 {
  font-size: 6rem;
  line-height: 6rem;
}

h2 {
  font-size: 3rem;
  line-height: 4rem;
}

button,
.btn-primary,
.btn-secondary {
  font-size: 1.125rem;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 4rem;
    line-height: 4.5rem;
  }
  h2 {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
  button,
  .btn-primary,
  .btn-secondary {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  button,
  .btn-primary,
  .btn-secondary {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  h2 {
    font-size: 1rem;
  }
  button,
  .btn-primary,
  .btn-secondary {
    font-size: 0.9rem;
  }
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 10px;
    font-weight: bold;
}
