/*
Theme Name: RAWR Studio
Theme URI: https://rawrstudio.com
Author: RAWR Studio Team
Author URI: https://rawrstudio.com
Description: A brutalist, bold WordPress theme designed for Elementor.
Version: 1.0.0
Text Domain: rawr-studio
*/

:root {
    --rawr-primary: #FF3300;
    --rawr-secondary: #000000;
    --rawr-accent: #6600FF;
    --rawr-white: #FFFFFF;
    --rawr-font-main: 'Inter', sans-serif;
    --rawr-font-display: 'Oswald', sans-serif;
}

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

body {
    font-family: var(--rawr-font-main);
    color: var(--rawr-secondary);
    background-color: var(--rawr-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--rawr-font-display);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--rawr-primary);
}

.site-header {
    padding: 2rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--rawr-secondary);
}

.site-title {
    font-family: var(--rawr-font-display);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.05em;
}

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

.main-navigation a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.site-footer {
    padding: 4rem 5%;
    background: var(--rawr-secondary);
    color: var(--rawr-white);
    margin-top: 4rem;
}

/* Elementor Canvas Override */
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1200px; 
}
