/* General Styles and CSS Variables */
:root {
    --dark-walnut: #483C32;
    --jazzy-walnut: #5E473C;
    --linen: #FAF0E6;
    --antique-gold: #D4AF37;
    --emerald-green: #50C878;
    --fiery-orange: #EBAD31;
    --orange-light: #FFD582;
    --orange: #FEC759;
    --orange-alt: #FFBB82;
    --nature-green: #62876C;
    --nature-green-medium: #86A08D;
    --nature-green-light: #D4DAD5;
    --nature-green-alt: #ACBBB0;
    --blue-gray-dark: #5D647B;
    --blue-gray: #7C8191;
    --blue-gray-light: #CBCCCF;
    --blue-gray-alt: #9EA0AA;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Vollkorn', serif;
    color: var(--dark-walnut);
    background-color: var(--linen);
    line-height: 1.6;
}

p {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-walnut);
    background-color: var(--linen);
    line-height: 1.6;
    font-weight: 300;
}

img {
    max-width: 100%;
}

.line {
  -webkit-transition: width 900ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: width 900ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: width 900ms cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100px;
  height: 1px;
  background: var(--dark-walnut);
  margin: auto;
  margin-bottom: 6px;
  margin-top: 12px;
}

.standout-text {
    font-weight: 200;
    margin: auto;
    text-align: center;
    font-size: 0.75rem;
}

.standout-phrase{
    font-weight: 200;
    margin-left: 1.25rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.standard-text {
    margin-bottom: 0.5rem;
    text-align: justify;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

/* Home Header */
.home-header {
    display: flex;
    flex-direction: column;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25em;
    background: transparent;
    background-color: transparent;
    z-index: 1;
    height: 100px;
}

nav ul {
    display: flex;
    list-style: none;
    margin-left: auto;
    margin-right: 20px;
}

nav ul li {
    margin-left: 1em;
}

nav a {
    color: var(--linen);
    text-decoration: none;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--antique-gold);
}

nav h1 {
    color: var(--linen);
    margin-right: auto;
    margin-left: 20px;
}

/* Hero Section */
#hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    color: var(--linen);
    background: url('images/chair-6.jpg') no-repeat center center/cover;
    margin-top: -100px;
}

#hero h1 {
    font-size: 4rem;
}

#hero p {
    font-size: 1.2rem;
    margin-top: 0.25em;
    margin-bottom: 0.5em;
    background-color: transparent;
    color: var(--linen);
}

.fiery-text {
    color: var(--fiery-orange);
}

#hero .button {
    border: 2px solid var(--nature-green);
    color: var(--nature-green);
}

#hero .button:hover {
    color: var(--linen);
    background:rgba(172,187,176,0.25);
}

/* Buttons */
.button {
    display: inline-block;
    padding: 1em 2em;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    color: var(--dark-walnut);
    border: 2px solid var(--orange-light);
    background-color: transparent;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.button:hover {
    color: var(--pink-alt);
    background:rgba(254, 199, 89,0.25);
}

.button:active {
    background:rgba(235,173,49,0.6);
}

/* Footer */
footer {
    display: flex;
    flex-direction: column;
    padding: 1em;
    background-color: var(--dark-walnut);
    color: var(--linen);
    text-align: center;
    align-content: center;
    align-items: center;
    justify-content: center;
}

footer p {
    background-color: transparent;
    color: var(--linen);
    margin-bottom: 1rem;
    align-items: flex-end;
}

footer a {
    color: var(--fiery-orange);
}

footer a:link, a:visited {
    text-decoration: none;
}

footer a:hover {
    color: #f2ba49!important;
}


footer .material-symbols-outlined {
    line-height: 1.4;
    font-size: 1rem;
    display: inline;
}

/* Media Queries */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2rem;
        text-shadow: 1px 1px 2px var(--dark-walnut);
    }

    #hero p {
        font-size: 1rem;
        text-shadow: 1px 1px 2px black;
    }

    nav ul {
        flex-direction: column;
        margin-right: 5px;
        text-align: right;
    }

    .home-header h1 a {
        color: var(--dark-walnut);
    }

    .home-header h1 a:hover {
        color: var(--antique-gold);
    }

    .button {
        text-shadow: 1px 1px 2px black;
        background:rgba(172,187,176,0.1);
    }
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Page styles */
.page-header h1 {
    color: var(--dark-walnut);
}

.page-header a {
    color: var(--dark-walnut);
}

.half-width {
    width: 50%;
}
