:root {
    --dark-bronze: #3E2E1F;
    --parchment: #F1E8D8;
    --dark-red: #7A2F2F;
    --stone-gray: #4A4A4A;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--stone-gray);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    color: var(--dark-bronze);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

h1 {
    font-size: 2.5rem;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    h1 {
        font-size: 2.2rem;
    }
}
@media screen and (max-width: 767px) {
    h1 {
        font-size: 1.8rem;
    }
}

h2 {
    font-size: 2.2rem;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    h2 {
        font-size: 2rem;
    }
}
@media screen and (max-width: 767px) {
    h2 {
        font-size: 1.5rem;
    }
}

.orbitron {
    font-family: 'Orbitron', sans-serif;
}

header {
    background-color: var(--dark-bronze);
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

header .link {
    color: var(--parchment);
}

header .link:hover {
    color: var(--dark-red);
}

#mobile-menu {
    background-color: var(--dark-bronze);
    transition: transform 0.3s ease-out;
    transform: translateY(-100%);
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    display: none;
}
#mobile-menu.open {
    transform: translateY(0%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#mobile-menu a {
    padding: 1rem 0;
    font-size: 1.5rem;
}

.hero-bg {
    background-image: url('uploads/media/golden-axe-hero-background_14.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.hero-bg > * {
    z-index: 1;
}

.newsletter-form input {
    background-color: rgba(241, 232, 216, 0.2);
    border-color: var(--parchment);
    color: var(--parchment);
}
.newsletter-form input::placeholder {
    color: rgba(241, 232, 216, 0.7);
}
.newsletter-form button {
    background-color: var(--dark-red);
    border-color: var(--dark-red);
}

section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.bg-dark-bronze {
    background-color: var(--dark-bronze);
    color: var(--parchment);
}
.bg-parchment {
    background-color: var(--parchment);
    color: var(--dark-bronze);
}
.dark-bronze {
    color: var(--dark-bronze);
}
.dark-red {
    color: var(--dark-red);
}

button {
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    white-space: normal;
    word-break: break-word;
    text-align: center;
    display: inline-block;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.grid-reviews {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
 .grid-reviews div {
    width: 350px;
 }

.categories-carousel {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.categories-carousel::-webkit-scrollbar {
    display: none;
}
.categories-carousel button {
    background-color: var(--dark-red);
}
.categories-carousel button:hover {
    background-color: #a04242;
}

.contact-form input,
.contact-form textarea {
    background-color: rgba(241, 232, 216, 0.2);
    border-color: var(--parchment);
    color: var(--parchment);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(241, 232, 216, 0.7);
}
.contact-form button {
    background-color: var(--dark-red);
    border-color: var(--dark-red);
}
.error-message {
    color: var(--dark-red);
    font-size: 0.8rem;
    display: none;
}

footer {
    background-color: var(--stone-gray);
    color: rgba(241, 232, 216, 0.8);
}
footer h4 {
    color: var(--parchment);
}
footer a {
    color: rgba(241, 232, 216, 0.8);
}
footer a:hover {
    color: var(--dark-red);
}
.word-break-all {
    word-break: break-all;
}

.instagram-carousel-container {
    position: relative;
    height: 10rem;
    overflow: hidden;
}
.instagram-carousel {
    transition: transform 0.5s ease-in-out;
}
.instagram-carousel img {
    height: 10rem;
    width: 10rem;
    object-fit: cover;
}
.instagram-carousel-prev,
.instagram-carousel-next {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: var(--parchment);
    cursor: pointer;
    height: 100%;
    width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease-in-out;
}
.instagram-carousel-prev:hover,
.instagram-carousel-next:hover {
    background-color: rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 60em) {
    .instagram-carousel-prev,
    .instagram-carousel-next {
        display: none;
    }
}

#cookie-banner {
    background-color: var(--dark-bronze);
    color: var(--parchment);
    border-top: 1px solid rgba(241, 232, 216, 0.2);
    display: none;
}
#cookie-banner button {
    border: 1px solid var(--dark-red);
}
#cookie-banner #accept-all-cookies {
    background-color: var(--dark-red);
    color: var(--parchment);
}
#cookie-banner #configure-cookies {
    background-color: var(--parchment);
    color: var(--dark-bronze);
    border-color: var(--parchment);
}

#cookie-modal {
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
}
#cookie-modal > div {
    background-color: var(--parchment);
    color: var(--dark-bronze);
    max-height: 80vh;
    overflow-y: auto;
}
#cookie-modal h3 {
    color: var(--dark-bronze);
}
#cookie-modal button {
    background-color: var(--dark-red);
    color: var(--parchment);
    border-color: var(--dark-red);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.scale-up {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animated {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}/* Styles for the main content wrapper */
.policyScopeWrap {
    padding: 25px 20px; /* Adds internal spacing to the top/bottom and sides */
}

/* Heading styles within the policy scope */
.policyScopeWrap h1 {
    font-size: 1.75rem; /* A moderately large heading, not overly dominant */
    line-height: 1.2;
    margin-top: 1.8em; /* Spacing above the heading */
    margin-bottom: 0.8em; /* Spacing below the heading */
    font-weight: 700; /* Bold text for primary heading */
}

.policyScopeWrap h2 {
    font-size: 1.5rem; /* Secondary heading size */
    line-height: 1.25;
    margin-top: 1.6em;
    margin-bottom: 0.7em;
    font-weight: 600;
}

.policyScopeWrap h3 {
    font-size: 1.25rem; /* Tertiary heading size */
    line-height: 1.3;
    margin-top: 1.4em;
    margin-bottom: 0.6em;
    font-weight: 600;
}

.policyScopeWrap h4 {
    font-size: 1.1rem; /* Smaller heading, slightly larger than body text */
    line-height: 1.4;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    font-weight: 500;
}

.policyScopeWrap h5 {
    font-size: 1rem; /* Body text size, useful for sub-headings or emphasized text */
    line-height: 1.5;
    margin-top: 1em;
    margin-bottom: 0.4em;
    font-weight: 500;
}

/* Paragraph styles */
.policyScopeWrap p {
    font-size: 1rem; /* Standard body text size */
    line-height: 1.6; /* Improved readability for paragraphs */
    margin-bottom: 1em; /* Spacing between paragraphs */
}

/* Unordered list styles */
.policyScopeWrap ul {
    list-style-type: disc; /* Standard bullet points */
    margin-top: 1em;
    margin-bottom: 1em;
    padding-left: 2em; /* Indentation for bullet points */
}

/* List item styles */
.policyScopeWrap li {
    font-size: 1rem; /* Standard body text size */
    line-height: 1.6; /* Matches paragraph line-height for consistency */
    margin-bottom: 0.5em; /* Spacing between list items */
}
section {
    overflow: hidden;
}
@media  (max-width: 767px) {
    .grid-reviews div {
        width: 320px;
    }
   header span {
    font-size: 14px !important;
   }
}