@charset "utf-8";
/* CSS Document */

/* Hero Section */
.hero {
    background: url('../img/background.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: white;
    position: relative;
}

/* Logo */
.logo {
    max-width: 600px;
    width: 100%;
    margin-bottom: 20px;
}

/* Common Button Styles */
.btn {
    font-size: 1.2rem; /* Larger text */
    padding: 12px 24px; /* Consistent padding */
    text-transform: uppercase;
    font-family: 'Germania One', sans-serif;
    border-radius: 8px; /* Rounded corners for all buttons */
    transition: all 0.3s ease-in-out;
}

/* Flipped Background Colors for "More Info" */
.btn-primary {
    background-color: #003d82; /* Was hover before */
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3; /* Was default before */
    color: white;
}


/* Secondary Button (Matches Bierhaus Theme) */
.btn-secondary {
    background-color: #8B5A2B; /* Rustic Brown */
    border: none;
    color: #F5E6C8; /* Cream Text */
}

.btn-secondary:hover {
    background-color: #6E3E1B; /* Darker Brown */
    color: #FFD700; /* Gold Hover Effect */
}

/* Outline Button */
.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background-color: white;
    color: #0056b3;
}


/* Sections */
.section {
    padding: 100px 20px 60px; /* Prevent navbar from obstructing */
    text-align: center;
}

/* Contact Form */
.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 1rem;
}

.contact-form button {
    width: 100%;
}



/* Footer */
.footer {
    background-color: rgb(33, 37, 41);
    box-sizing: border-box;
    color: rgb(255, 255, 255);
    display: block;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 400;
    height: 296px;
    line-height: 24px;
    padding-top: 128px;
    padding-bottom: 128px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.footer-links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
    color: #FFD700; /* Gold Hover Effect */
}

/* Footer Text */
.footer p {
    box-sizing: border-box;
    color: rgb(255, 255, 255);
    display: block;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 400;
    height: 24px;
    line-height: 24px; /* Ensures proper text alignment */
    margin: 0; /* Prevents unnecessary spacing */
}




/* Mini Hero Section */
.mini-hero {
    height: 40vh;
    background: url('../img/background.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 40px;
}

/* Specifically target only logo inside .mini-hero */
.mini-hero .mini-hero-logo {
    max-width: 240px;
    height: auto;
    margin-bottom: 10px;
}

/* Optional Heading */
.mini-hero-title {
    font-family: 'Germania One', sans-serif;
    font-size: 2rem;
    color: white;
    margin-top: 10px;
}

/* Tagline under logo */
.mini-hero-tagline {
    font-family: 'Germania One', sans-serif;
    color: white;
    font-size: 1.2rem;
    margin: 0;
}