/*
Theme Name: IF Media Support
Theme URI: https://support.if-media.com/
Author: IF Media
Author URI: https://if-media.com
Description: A custom responsive theme designed for the IF Media support website.
Version: 1.0.0
*/

/* =========================================
   1. Reset & Basics
   ========================================= */
* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

/* Make images responsive */
img, video {
	max-width: 100%;
	height: auto;
	display: block;
}

/* =========================================
   2. Layout
   ========================================= */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

header, footer {
	padding: 2rem 0;
	background-color: #f4f4f4;
}

/* Header Specifics */
.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-title {
	margin: 0;
	font-size: 1.5rem;
}

.site-title a {
	text-decoration: none;
	color: inherit;
}

.main-navigation ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 1.5rem;
}

.main-navigation a {
	text-decoration: none;
	color: #333;
	font-weight: 600;
}

.main-navigation a:hover {
	text-decoration: underline;
}

/* =========================================
   3. Media Queries
   ========================================= */
@media (max-width: 768px) {
	body {
		font-size: 15px;
	}
	
	.container {
		padding: 0 15px;
	}

	.header-inner {
		flex-direction: column;
		text-align: center;
	}

	.main-navigation ul {
		margin-top: 1rem;
		flex-direction: column;
		gap: 0.5rem;
	}
}

/* =========================================
   4. Front Page & Buttons
   ========================================= */
.welcome-hero {
	background-color: #eef2f5;
	padding: 4rem 2rem;
	text-align: center;
	border-radius: 8px;
	margin-bottom: 3rem;
}

.welcome-hero h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #222;
}

.welcome-hero p {
	font-size: 1.25rem;
	color: #555;
	margin-bottom: 2rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.btn {
	display: inline-block;
	padding: 12px 28px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 4px;
	transition: background-color 0.2s ease;
	cursor: pointer;
}

.btn-primary {
	background-color: #0073aa;
	color: #fff;
}

.btn-primary:hover {
	background-color: #005177;
	text-decoration: none;
}
