h1
{
    color: black;
    size: 36;
    text-align: center;
    text-decoration: underline; 
    text-transform: uppercase;
}

h2
{
    color: rgb(240, 240, 240);
}

h3
{
	font-family: Georgia;
    	color: grey;
    	font-size: 36;
	font-weight: bold;
    	text-align: center;
    	text-decoration: underline;
    	text-transform: uppercase;
	max-width: 700px;
	background: white;
}

h4
{
	font-family: Georgia;
	font-weight: bold;
	font-size: 20;
    	color: grey;
	max-width: 700px;
	background: white;
    	text-align: center;
}

body {
	font-family: Georgia;
	background: transparent;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: url('../PICTURES/etched-guns.png');
    opacity: 0.2; /* Adjust transparency */
    z-index: -1; /* Keeps it behind other content */
}

/* Minipage Style */

/* Container to align minipages side by side */
.minipage-container {
    display: flex; /* Enables side-by-side layout */
    justify-content: space-between; /* Spaces minipages evenly */
    align-items: flex-start; /* Aligns minipages at the top */
    width: 100%; /* Adjust as needed */
    /*max-width: 800px; /* Prevents excessive stretching */
    margin: 20px auto; /* Centers container */
    background: white; /*#f5f5f5;*/
    padding: 20px;
    border-radius: 10px;
}

/* Individual minipages */
.minipage {
    flex: 1; /* Allows equal width */
    min-width: 300px; /* Ensures they don’t shrink too much */
    /*max-width: 380px; /* Prevents excessive stretching */
    min-height: 150px; /* Adjust height as needed */
    background: white;
    padding: 15px;
    /*box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);*/
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
}

/* Responsive: Stack on smaller screens */
@media (max-width: 768px) 
{
    .minipage-container 
    {
	flex-direction: column;
	align-items: center;
    }

    .minipage 
    {
	width: 90%; /* Makes minipages full-width */
	max-width: none; /* Removes width restriction */
    }
}

p 
{
    display: inline-block; /* Keeps width limited to text */
    border-bottom: 3px solid red; /* Underline effect */
    padding-bottom: 5px;
}

/* Navbar Styling */
.navbar 
{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 15px 20px;
    font-family: Georgia;
    z-index: 1000;
}

.navbar a {
	color: white;
	padding: 10px 15px;
	text-decoration: none;
	line-height: 1; /* prevents stretching */
	display: inline-block; /* ensures consistent layout */
}

.navbar-left 
{
    width: 25%;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
}

.navbar-center 
{
    width: 30%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.navbar-center a 
{
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 5px 10px;
    transition: 0.3s;
}

.navbar-center a:hover 
{
    background: #555;
    color: red;
    border-radius: 5px;
}

.navbar-right 
{
    width: 25%;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.navbar-right i 
{
	color: white;
    	font-size: 20px;
    	cursor: pointer;
    	transition: 0.3s;
}

.navbar-right i:hover 
{
    color: blue;
}

/* Bottom Half - White Background */
.bottom-half 
{
	flex: 1; /* Takes the bottom half of the page */
	/*background: white;*/
	background: url('../PICTURES/guns-wallpaper.png');
	background-color: white; /* Keeps it clean */
	background-size: contain; /* Ensures each gun is visible */
	background-repeat: repeat; /* Makes it seamless */
	background-position: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

/* Paragraph Styling */

.bottom-about-title
{
	text-align: center;
	font-family: Georgia;
	font-size: 40px;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
}

.bottom-title
{
	color: rgb(100, 100, 100); /* Dark grey text */
	text-align: center;
	font-family: Georgia;
	font-size: 24px;
	font-weight: 600;
	text-decoration: underline;
	text-transform: uppercase;
}

.bottom-paragraph 
{
	background: transparent;
	color: rgb(100, 100, 100); /* Dark grey text */
	text-align: center;
	padding: 20px;
	border: none;
	max-width: 1200px;
	margin: auto;
	font-family: Georgia;
	font-size: 24px;
	font-weight: semi-bold;
	line-height: 1.5;
	/* box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); */
}

/* Flexbox Container */
.flex-container 
{
	display: flex;
	flex-direction: column; /* Stacks items vertically */
	align-items: center; /* Centers items horizontally */
	background: white;
	gap: 10px; /* Spacing between items */
	margin-top: 20px;
}

/* Flexbox Items */
.flex-item 
{
	/*background: #eee;*/
	background: white;
	padding: 5px;
	width: 80%;
	text-align: center;
	border-radius: 5px;
}

/* Whitewash cabin wood board */
@import url('https://fonts.googleapis.com/css2?family=IM+Fell+English+SC&display=swap');

.board-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 100vh;*/
    background: transparent; /* Neutral background */
}

/* The wooden board */
.board {
    position: relative;
    width: 100%;
    max-width: 3000px;
    padding: 50px;
    margin: 40px auto;
    background: url('https://www.transparenttextures.com/patterns/wood-pattern.png'); /* Wood texture */
    background-color: rgb(75, 75, 75); /*#8B5A2B; /* Deep brown wood */
    background-size: 100% auto;
    background-position: center;
    border-radius: 8px;
    box-shadow:
0 6px 20px rgba(0, 0, 0, 0.5), /* Deep shadow for depth */
inset 0 -10px 20px rgba(0, 0, 0, 0.4); /* Adds worn wood depth */
    text-align: center;
    font-family: 'IM Fell English SC', serif;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    filter: contrast(1.2) brightness(0.9);
    position: relative;
    border: 5px solid #6B4423; /* Dark border for depth */
}

/* Create visible wooden planks */
.board::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
to bottom,
rgba(0, 0, 0, 0.3) 0px,
rgba(0, 0, 0, 0.3) 2px,
transparent 3px,
transparent 50px
    ); /* Creates wood plank divisions */
    opacity: 0.6;
    pointer-events: none;
}

/* Rugged wood edges */
.board::after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: url('https://www.transparenttextures.com/patterns/rough-cloth.png'); /* Rough edges effect */
    opacity: 0.3;
    border-radius: 12px;
    mix-blend-mode: multiply;
    pointer-events: none;
}

/* Black wash effect with wide horizontal brush strokes */
.brush-strokes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
to right,
rgba(0, 0, 0, 0.15) 0px,
rgba(0, 0, 0, 0.3) 10px,
rgba(0, 0, 0, 0.1) 20px
    ); /* Creates horizontal brush strokes */
    opacity: 0.4;
    mix-blend-mode: multiply;
    pointer-events: none;
}

/* Nails with Phillips screw creases */
.nail {
    position: absolute;
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, #666 30%, #222 80%);
    border-radius: 50%;
    box-shadow: inset 2px 2px 6px rgba(0, 0, 0, 0.8);
}

/* Adding Phillips screw creases */
.nail::before, .nail::after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    width: 16px;
    height: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nail::after {
    transform: translate(-50%, -50%) rotate(90deg); /* Cross shape */
}

/* Nail positions */
.nail:nth-child(1) { top: 10px; left: 10px; }
.nail:nth-child(2) { top: 10px; right: 10px; }
.nail:nth-child(3) { bottom: 10px; left: 10px; }
.nail:nth-child(4) { bottom: 10px; right: 10px; }


.button-container {
    position: relative;
    display: inline-block;
    padding-top: 20px; /* Space for paper clip */
}

/* Ticket-style button */
.email-button {
    background: url('https://www.transparenttextures.com/patterns/wood-pattern.png'); /* Wood texture */
    background-color: #8b5a2b; /* Deep brown */
    color: #f5f5f5; /* Off-white text */
    border: 3px solid black;
    padding: 20px 60px;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.6);
    position: relative;
    transition: all 0.3s ease-in-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: inline-block;
}

.email-button:hover {
    transform: translateY(-3px);
}

/* Paper Clip */
.paper-clip {
    position: absolute;
    top: -15px;
    left: 50%;
    width: 40px;
    height: 60px;
    border: 3px solid silver;
    border-radius: 20px;
    transform: rotate(15deg);
    background-color: transparent;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

/* Inner part of the paper clip */
.paper-clip::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 6px;
    width: 28px;
    height: 44px;
    border: 3px solid silver;
    border-radius: 15px;
}

/* Social media buttons */
/* Cabin Board Style for Buttons */
.social-button {
    position: relative;
    width: auto;
    padding: 15px 50px;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    font-family: 'IM Fell English SC', serif;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
    text-decoration: none;
    cursor: pointer;
    border-radius: 8px;
    border: 5px solid #6B4423; /* Dark border for depth */
    box-shadow:
0 6px 20px rgba(0, 0, 0, 0.5), /* Deep shadow */
inset 0 -10px 20px rgba(0, 0, 0, 0.4); /* Worn wood depth */
    background: url('https://www.transparenttextures.com/patterns/wood-pattern.png'); /* Wood texture */
    background-color: rgb(75, 75, 75); /* Matching deep brown wood */
    background-size: 100% auto;
    background-position: center;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
}

.social-button:hover {
    transform: translateY(-3px);
}

/* Create visible wooden planks */
.social-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
to bottom,
rgba(0, 0, 0, 0.3) 0px,
rgba(0, 0, 0, 0.3) 2px,
transparent 3px,
transparent 50px
    );
    opacity: 0.6;
    pointer-events: none;
}

/* Rugged wood edges */
.social-button::after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: url('https://www.transparenttextures.com/patterns/rough-cloth.png'); /* Rough edges */
    opacity: 0.3;
    border-radius: 12px;
    mix-blend-mode: multiply;
    pointer-events: none;
}

/* Black wash effect with wide horizontal brush strokes */
.brush-strokes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
to right,
rgba(0, 0, 0, 0.15) 0px,
rgba(0, 0, 0, 0.3) 10px,
rgba(0, 0, 0, 0.1) 20px
    );
    opacity: 0.4;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.social-button:hover {
    transform: translateY(-3px);
}

/* Extra large icons */
.icon {
    font-size: 40px; /* EVEN BIGGER */
}

.facebook { color: #1877f2; }  /* Facebook Blue */
.instagram { color: #e1306c; } /* Instagram Pink */
.twitter { color: #1da1f2; }   /* Twitter/X Blue */
.email { color: #ffcc00; }     /* Email Yellow */

.thematic-navbar {
    background: url('https://www.transparenttextures.com/patterns/wood-pattern.png'), url('../PICTURES/guns-wallpaper.png');
    background-blend-mode: overlay; /* Combines textures */
    background-size: cover;
    background-position: center;
    border-bottom: 5px solid #6B4423; /* Dark wood border */
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.thematic-navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.thematic-navbar li {
    margin: 0 20px;
}

.thematic-navbar a {
    text-decoration: none;
    color: #F5F5F5; /* Off-white for contrast */
    font-size: 20px;
    font-family: 'IM Fell English SC', serif;
    padding: 10px 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
    transition: all 0.3s ease-in-out;
}

.thematic-navbar a:hover {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.menu-item {
      position: relative;
      color: white;
      padding: 10px 20px;
      cursor: pointer;
      user-select: none;
}

.menu-item::after {
      content: " ▾";
      font-size: 0.8em;
}

  .navbar .dropdown {
    position: relative;
  }

  .navbar .dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #444;
    min-width: 160px;
    z-index: 1;
    border-radius: 4px;
  }

  .navbar .dropdown-content a {
    display: block;
    padding: 10px;
    color: white;
    text-decoration: none;
  }

  .navbar .dropdown:hover .dropdown-content {
    display: block;
  }

  .navbar a:hover, .navbar .dropdown-content a:hover {
    background-color: #555;
  }

@keyframes flickerFadeIn {
    0% { opacity: 0; transform: scale(0.9) rotate(0deg); }
    15% { opacity: 0.3; }
    30% { opacity: 0.1; }
    45% { opacity: 0.5; }
    60% { opacity: 0.2; }
    75% { opacity: 0.8; transform: scale(1) rotate(-2deg); }
    90% { opacity: 1; transform: scale(1.05) rotate(2deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

.pcfoa-logo {
    width: 100%; /* Adjust as needed */
    max-width: 600px;
    display: block;
    margin: 0 auto;
    opacity: 0;
    animation: flickerFadeIn 2.5s ease-in-out forwards;
}

.navbar-new {
    position: relative;
    background: url('https://www.transparenttextures.com/patterns/wood-pattern.png'); /* Matching the theme */
    background-size: cover;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    box-shadow: inset 0 -5px 10px rgba(0, 0, 0, 0.3);
}

/* Screw Styling */
.screw {
	position: absolute;
	width: 24px;
	height: 24px;
	background: url('your-screw-image.png') no-repeat center center;
	background-size: contain;
}

/* Top-left and top-right screws */
.screw-top-left { top: -10px; left: -10px; }
.screw-top-right { top: -10px; right: -10px; }

/* Bottom-left and bottom-right screws */
.screw-bottom-left { bottom: -10px; left: -10px; }
.screw-bottom-right { bottom: -10px; right: -10px; }

.footer {
    font-family: Georgia, serif;
    font-size: 16px;
    color: black;
    text-align: center;
    padding: 20px;
    background: none;
}

.footer::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px; /* Line thickness */
    background: black; /* Line color */
    margin-bottom: 10px; /* Space between line and text */
}

.beating-heart {
    display: inline-block;
    font-size: 32px; /* Adjust size as needed */
    animation: heartbeat 1s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
    75% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

