/* styles.css */

/* Import a Google Font */
@import url('https://fonts.googleapis.com/css2?family=Chivo+Mono:ital,wght@0,100..900;1,100..900&display=swap');

/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base styles */

/* Add this near the top of your CSS file, after the body styles */
body {
    font-family: 'Chivo Mono', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    padding: 0 20px; /* This adds padding to the left and right of the entire body */
}

/* Update the container class */
.container {
    width: 100%;
    max-width: 1200px; /* This sets a maximum width for larger screens */
    margin: 0 auto;
    padding: 0 20px; /* This adds padding inside the container */
    overflow: hidden;
}

.bk_clip {
  font-size: 72px;
  font-weight: bold;
  text-transform: uppercase;
  background-image: url('images/main/canyonlands_small.png');
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Update the header styles 
header {
    background-color: #35424a;
    color: #ffffff;
    padding: 30px 20px; /* This adds padding to the top/bottom and left/right 
    min-height: 70px;
    border-bottom: #e8491d 3px solid;
} */

/* Update main content area */
main {
    padding: 20px;
}

/* Update footer styles */
footer {
    padding: 20px;
    background-color: #35424a;
    color: #ffffff;
    text-align: center;
}

/* Update styles for specific sections */
about, #projects, #contact {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Responsive design - update the media query 
@media(max-width: 768px) {
    body {
        padding: 0 10px; /* Slightly less padding on smaller screens 
    }
    
    .container {
        padding: 0 10px;
    }
    
    header {
        padding: 20px 10px;
    }
    
    header #branding,
    header nav,
    header nav li {
        float: none;
        text-align: center;
        width: 100%;
    }

    header {
        padding-bottom: 20px;
    }
} */
