/*
Theme Name: AJB One-Page Theme
Theme URI: http://example.com/
Author: Alex Binns
Author URI: http://example.com/
Description: One-page responsive WordPress theme converted from static HTML/CSS. Sections are editable using the Block Editor (Gutenberg). Set a Page as the static front page and edit content with blocks.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: ajb-onepage
*/


/* --------------------------------------------------
   Original CSS from websiteCss.css
   -------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel&display=swap');

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

body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #111;
  line-height: 1.6;
}

header {
  background-color: #000;
  color: #fff;
  padding:20px;
  text-align: center;
  position:sticky;
  top:0;
  z-index:10;
	
}

header h1 {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

nav {
  margin-top: 0px;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ccc;
}

section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.hero {
  background-color: #f4f4f4;
  text-align: center;
  padding: 60px 20px;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.hero a {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.hero a:hover {
  background-color: #333;
}

.about, .gallery, .contact {
  background-color: #fff;
}

.about h2, .gallery h2, .contact h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-family: 'Cinzel', serif;
}

.gallery img {
  width: 100%;
  max-width: 300px;
  margin: 10px;
  border: 2px solid #000;
  border-radius: 5px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

input, textarea {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: #000;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #444;
}

.top{
	background-color:black;
	text-align:center;
}

@media (max-width: 768px) {
  nav a {
    display: block;
    margin: 10px 0;
  }

  .gallery img {
    max-width: 100%;
  }
}

