/* Custom CSS for Kill Shot Landing Page */

/* @font-face rules for custom web fonts */
/* Note: Font files should be placed in css/fonts/ directory */

@font-face {
	font-family: "Thriller Bold";
	src: url('fonts/thriller-bold.woff2') format('woff2'),
		 url('fonts/thriller-bold.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Action Script";
	src: url('fonts/action-script.woff2') format('woff2'),
		 url('fonts/action-script.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

/* Smooth scrolling */
html {
	scroll-behavior: smooth;
}

/* Base typography */
body {
	font-family: Georgia, "Times New Roman", serif;
	line-height: 1.6;
	color: #333;
}

/* Headings with custom fonts inspired by book cover */
h1 {
	font-family: "Thriller Bold", Impact, "Arial Black", sans-serif;
	font-weight: normal;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

h2 {
	font-family: "Action Script", "Brush Script MT", cursive;
	font-weight: normal;
}

/* Navigation styling */
.navbar {
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	padding: 0.75rem 1rem;
}

.navbar-brand {
	font-family: "Thriller Bold", Impact, "Arial Black", sans-serif;
	letter-spacing: 0.1em;
	font-size: 1.5rem;
	padding: 0.5rem 0;
}

.navbar-nav .nav-link {
	padding: 0.5rem 1rem;
	transition: all 0.3s ease;
	border-radius: 4px;
	margin: 0 0.25rem;
}

.navbar-nav .nav-link:hover {
	background-color: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

.navbar-nav .nav-link:focus {
	background-color: rgba(255, 255, 255, 0.15);
}

.dropdown-menu {
	border: none;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
	padding: 0.5rem 1rem;
	transition: background-color 0.2s ease;
}

.dropdown-item:hover {
	background-color: #f8f9fa;
}

/* Carousel captions */
.carousel-caption h3 {
	font-family: "Thriller Bold", Impact, "Arial Black", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* Blockquotes for reviews */
blockquote {
	font-style: italic;
	border-left: 4px solid #333;
	padding-left: 1em;
}

blockquote footer {
	font-style: normal;
	font-size: 0.9em;
	margin-top: 0.5em;
}

/* Form styling */
form fieldset {
	border: 1px solid #ddd;
	padding: 1em;
	margin: 1em 0;
}

form legend {
	font-weight: bold;
	padding: 0 0.5em;
}

form label {
	display: block;
	margin-top: 0.5em;
	font-weight: bold;
}

form input,
form select {
	width: 100%;
	padding: 0.5em;
	margin-top: 0.25em;
	border: 1px solid #ccc;
}

form button {
	padding: 0.75em 1.5em;
	margin-top: 1em;
	background-color: #333;
	color: #fff;
	border: none;
	cursor: pointer;
}

form button:hover {
	background-color: #555;
}


/* Image styling */
figure img {
	max-width: 100%;
	height: auto;
}

/* Book cover image sizing */
#about > figure {
	max-width: 300px;
	margin: 0 0 1em 0;
}

#about > figure img {
	max-width: 100%;
	height: auto;
	max-height: 400px;
	object-fit: contain;
}

/* Author image sizing */
#about article figure {
	max-width: 200px;
	margin: 0 0 1em 0;
}

#about article figure img {
	max-width: 100%;
	height: auto;
}

/* Section spacing */
section {
	margin: 2em 0;
}

/* Article spacing */
article {
	margin: 1em 0;
}

/* Footer */
footer {
	margin-top: 2em;
	padding-top: 1em;
	border-top: 1px solid #ddd;
	text-align: center;
}

/* Carousel styling */
.carousel {
	margin-bottom: 2em;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}

.carousel-inner {
	max-height: 300px;
	overflow: hidden;
}

.carousel-item img {
	width: 100%;
	height: 300px;
	object-fit: contain;
	object-position: center;
}

/* Accordion styling */
.accordion {
	margin: 1em 0;
}

/* Tab panel styling */
.nav-tabs {
	margin-bottom: 1em;
}

.tab-content {
	padding: 1em 0;
}

/* Responsive image handling */
img {
	max-width: 100%;
	height: auto;
}

