/* css/style.css */
:root {
    --primary-color: #B87333; /* Copper */
    --secondary-color: #D9D9D9; /* Aluminum */
    --accent-color: #0056B3; /* Blue */
    --background-color: #F8F9FA; /* Light gray */
    --text-color: #444; /* Dark gray */
    --highlight-color: #FF6F00; /* Orange */
    
    --a1: #FFFFFF;
    --a2: #E0E0E0;
    --a3: #FFD700;
    --a4: #000000;
    --a5: #4A4A4A;
    --a6: #B22222;
    --a7: #800020;
    --a8: #5C4033;
    --a9: #D4AF37;
}
body {
    font-family: 'Roboto', sans-serif, 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    text-align: center;
    background-color: #ffffff;
}

.headerline {
    padding: 10px;
    width: 100%;
    background: #F9F9FC;
    box-shadow: 0 0 0 1px #EAEAEA;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transition: all .3s ease-out;
}
header {
    background-color: #333;
    color: white;
    padding: 1em;
}

.logo img {
    max-width: 100px;
}

nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

main {
    padding: 20px;
}

h1, h2 {
    color: #333;
}

form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

label, input, textarea, button {
    display: block;
    width: 100%;
    margin: 10px 0;
}
.carousel-img {
    height: 400px; /* Set the height for the images */
    object-fit: cover; /* Ensures images are cropped to fit the height without distortion */
    width: 100%; /* Ensures the image takes up the full width */
}

button {
    background-color: #333;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}

.social-media {
    margin-top: 20px;
}
/* Default link styles */
.navbar-nav .nav-link {
    color: var(--text-color); /* White for dark background */
    font-weight: 500;
    transition: color 0.3s ease; /* Smooth color change on hover */
}

/* Hover effect */
.navbar-nav .nav-link:hover {
    color: var(--text-color); /* Highlight color */
}

/* Active link */
.navbar-nav .nav-link.active {
    color: var(--text-color); /* Copper color for active page */
    font-weight: bold; /* Emphasize the active link */
}

.header__col {
    flex: 1;
}
.container {
    padding-top: 20px; /* Adds extra padding only to the container */
}
.nav-link {
    color: #444;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif; /* Headings */
    font-weight: 700;
    color: #444;
}

.navbar-brand, .site-btn {
    font-family: 'Roboto', sans-serif; /* Branding and buttons */
    font-weight: 500;
}

.nav-link {
    font-family: 'Roboto', sans-serif; /* Navigation links */
    font-weight: 500;
}
.transparent {
    color: #eb3136;
    background: none;
    border: 2px solid #eb3136;
    box-shadow: 0 0 0 0 #eb3136;
    border-radius: 30px;
}
/* Hover effect */
.navbar-nav .nav-link {
    color: #444 !important; /* Default color with high specificity */
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #eb3136 !important; /* Hover color with high specificity */
}
.navbar-brand img {
    width: 130px; /* Default width for larger screens */
    height: auto; /* Maintain aspect ratio */
}

/* Mobile */
@media (max-width: 480px) {
    body {
        font-size: 16px;
        padding: 10px;
/*        background-color: lightblue; */
        border-color: #800020;
    }
    
    .container {
        display: flex;
        flex-direction: column; /* Stack items on small screens */
        text-align: center;
    }
    .header__col
  }
  
  /* Tablet */
  @media (min-width: 768px) and (max-width: 1024px) {
 /*   body { background-color: lightgreen; }*/
  }
  
  /* Desktop */
  @media (min-width: 1200px) {
/*    body { background-color: lightcoral; }*/
  }
  .icon-circle {
    width: 100px;
    height: 100px;
    border: 3px solid #eb3136; /* Adjust color */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: grey;
    background: white;
    margin: auto;
}