
/* Custom styles that extend Tailwind */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&family=Oswald:wght@400;700&family=Montserrat:wght@400;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

/* Hero section enhancements */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('LOGO.jpg') no-repeat center center;
    background-size: cover;
    background-blend-mode: normal;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 4rem;
    filter: brightness(1.2) contrast(1.1);
}

/* Shop hero section */
.shop-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('image.webp') no-repeat center center;
    background-size: cover;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
    filter: brightness(1.1) contrast(1.05);
}

/* Product card enhancements */
.product-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Testimonial card styling */
.testimonial-card {
    background: white;
    border-radius: 8px;
    position: relative;
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: -10px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
}
/* Custom button styles */
.btn-tactical {
    background-color: #212529;
    color: white;
    font-weight: bold;
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    transition: all 300ms;
}

.btn-tactical:hover {
    background-color: #1a1e21;
}

.btn-olive {
    background-color: #556344;
    color: white;
    font-weight: bold;
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    transition: all 300ms;
}

.btn-olive:hover {
    background-color: #424f35;
}

/* Custom card hover effect */
.card-hover {
    transition: all 300ms;
    transform: translateZ(0);
}

.card-hover:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Hero section overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

/* Custom input focus */
.input-focus:focus {
    outline: none;
    box-shadow: 0 0 0 2px #6c7b56;
    border-color: transparent;
}
