:root {
    --primary-color: #272727; 
    --secondary-color: #ffdb4d; 
    --terciary-color: #fcfcfc; 
    --light-gray-color: #a5a5a5; 
    --dark-gray-color: #636363; 
    --accent-color: #E25700;
    --blue-color: #2a3f55;
}
html {
    background: var(--primary-color);
    scroll-behavior: smooth;
}
body {
    margin: 0;
    color: var(--primary-color);
    font-family: 'Arial Rounded MT Bold', Arial, sans-serif;
    text-align: center;
}
header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:space-around;
    padding: 30px 0 30px 0;
    background: var(--primary-color);
}
header img {
    width: 120px;
    border-radius: 50%;
    box-shadow: 0 4px 24px var(--primary-color);
}
h1 {
    font-size: 2.5em;
    margin: 20px 0 10px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-color);
}
p {
    color: var(--light-gray-color);
    margin: 0 0 20px 0;
}
nav {
    margin: 30px 0;
}
nav a {
    color: #ffdb4d;
    text-decoration: none;
    font-size: 1.2em;
    text-transform: uppercase;
    margin: 0 18px;
    font-weight: bold;
    transition: color 0.2s;
}
nav a:hover {
    color: var(--accent-color);
    text-decoration: double underline;
}

.content {
    display: block;
    max-width: 1200px;
    margin: 40px auto;
    /*background: #292929;*/
    border-radius: 18px;
    padding: 40px 30px;
    /*box-shadow: 0 2px 8px #0002;*/
}

button {
    width: 200px;
    height: 50px;
    margin-top: 20px;
    background-color: var(--terciary-color);
    color: var(--light-gray-color);
    border: none;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600px;
    font-style: normal;  
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

.white-divisor {
    background-color: var(--terciary-color);
    height: 64px;
    width: 100%;
}


/* Footer Section (CodePen-inspired, Bootstrap-free) */
.footer-main {
  padding: 48px 0 24px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around; /*space-between*/
  align-items: flex-start;
  max-width: 1200px;
  align-items: center;
}
.footer-col {
  flex: 1 1 200px;
  min-width: 180px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center; /*add line*/
  gap: 12px;
}

.footer-title {
  color: var(--secondary-color);
  font-size: 1.1em;
  font-weight: bold;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-title i {
  color: var(--accent-color);
  font-size: 1.2em;
}
.footer-text {
  color: var(--light-gray-color);
  font-size: 1em;
}
.footer-links {
  list-style: none;
  padding-left: 36px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.footer-links a {
  color: var(--light-gray-color);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--accent-color);
  text-decoration: none;
}
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-form input[type="text"] {
  padding: 8px 12px;
  border: 1px solid var(--light-gray-color);
  border-radius: 6px;
  font-size: 1em;
  background: #fafafa;
  color: var(--primary-color);
  font-family: inherit;
}
.footer-btn {
  background: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 0;
  font-size: 1em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 2px 8px #0001;
  transition: background 0.2s;
}
.footer-btn:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}
.footer-bottom {
  background: var(--primary-color);
  padding: 18px 0 8px 0;
  margin: 0 auto;
  max-width: 1200px;
}
.footer-bottom-content {
  display: flex;
  flex-direction: column; /*add this line*/
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}
.footer-social {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  /*padding-left: 32px;*/
  margin: 0;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark-gray-color);
  color: var(--light-gray-color);
  font-size: 1.2em;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--secondary-color);
  color: #fff;
}
.footer-copy {
  color: var(--light-gray-color);
  font-size: 1em;
  /*padding-right: 80px;*/
}
@media (max-width: 900px) {
  .footer-content, .footer-bottom-content {
    flex-direction: column;
    gap: 24px;
  }
  .footer-main, .footer-bottom {
    max-width: 100vw;
    border-radius: 0;
  }
}
@media (max-width: 600px) {
    .content {
        padding: 20px 5vw;
    }
    header img {
        width: 120px;
    }
    .footer-main {
        padding: 24px 0 12px 0;
    }
    .footer-bottom {
        padding: 10px 0 4px 0;
    }
}