/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: #333300;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #ffffff;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    color: #F56003;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    color: #45454D;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: #ffffff;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.hero-text h1 {
    font-family: 'Anton', sans-serif;
    font-size: 3.5rem;
    color: #45454D;
    margin-bottom: 20px;
}

.hero-text h4 {
    font-size: 1.5rem;
    color: #F56003;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    color: #45454D;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background-color: #F56003;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background-color: #d44d02;
}

.hero-image {
    flex: 1;
    min-width: 300px;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Container for the buttons */
.hero-buttons {
    display: flex;
    flex-direction: row; /* Aligns buttons horizontally in a row */
    flex-wrap: wrap;     /* Allows buttons to wrap on very small screens */
    gap: 15px;           /* Creates space between the buttons in the row */
    margin-top: 30px;    /* Space above the button row */
}

/* Ensure the primary button has consistent styling */
.btn-primary {
    display: inline-block;
    background-color: #F56003; /* The signature orange from the original site */
    color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
    white-space: nowrap; /* Prevents text inside the button from wrapping */
}

.btn-primary:hover {
    background-color: #d44d02;
}

/* Responsive adjustment: Center buttons and stack them on small mobile screens */
@media (max-width: 768px) {
    .hero-buttons {
        justify-content: center; /* Centers buttons in the hero section */
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column; /* Stacks them vertically only on very small screens */
        align-items: center;
    }
}

/* The new secondary button style */
.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #F56003;
    padding: 12px 24px;
    text-decoration: none;
    border: 2px solid #F56003; /* Outlined style to differentiate from primary */
    border-radius: 5px;
    font-weight: bold;
    margin-top: 15px; /* This creates the line spacing between the two buttons */
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #F56003;
    color: #ffffff;
}

/* Filters Section */
.filters {
    background-color: #fae4c8;
    padding: 40px 0;
    text-align: center;
}

.filter-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    background: transparent;
    border: 2px solid #333300;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
}

.filter-btn.active, .filter-btn:hover {
    background-color: #333300;
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
}