/* Mountain Creek Brewing Co. - Version 1 */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Manrope", Arial, Helvetica, sans-serif;
    color: #2f2f2f;
    background: #fafaf7;
    line-height: 1.6;
}


/* Header */

header{
    background:#fff;
    border-bottom:1px solid #e8e8e8;
    box-shadow:0 2px 8px rgba(0,0,0,.05);
    padding:8px 0;
}

nav{
    max-width:1200px;
    margin:0 auto;
    padding:0 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    width:180px;
    height:auto;
    display:block;
    transition:0.3s ease;
}

.menu{
    display:flex;
    gap:35px;
}

.menu a{
    text-decoration:none;
    color:#23432f;
    font-weight:600;
    transition:.3s;
}

.menu a:hover{
    color:#c89a2b;
}

.menu-toggle{
    display:none;
    font-size:2rem;
    font-weight:400;
    line-height:1;
    cursor:pointer;
    color:#23432f;
    font-family:Arial, Helvetica, sans-serif;
}

/* Hero */

.hero {

    min-height: 85vh;

    background:
    linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    ),
    url("images/newhero.jpeg");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;

    padding: 80px 10%;

    color: white;

}


.hero-content {

    max-width: 650px;

}


.hero h1 {

    font-size: 3rem;
    margin-bottom: 10px;

}


.hero h2 {

    font-size: 1.8rem;
    font-weight: normal;

}



.button {

    display: inline-block;

    margin-top: 25px;

    background: #c89a2b;

    color: white;

    padding: 14px 30px;

    text-decoration: none;

    border-radius: 5px;

}


.button:hover {

    opacity: 0.85;

}



/* Content sections */


.content {

    padding: 60px 10%;

    max-width: 1000px;

}



.content h2 {

    color: #23432f;

}



/* Feature cards */

.card {

    background: white;

    padding: 30px;

    border-radius: 10px;

    box-shadow: 0 3px 10px rgba(0,0,0,0.08);

}


.card h3 {

    color: #23432f;

}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 10% 60px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-top:30px;
}

/* Footer */


footer {

    background: #23432f;

    color: white;

    text-align: center;

    padding: 30px;

}


/* Mobile */

@media (max-width:850px){
    
.logo img{
    width:140px;
}
    nav{
        flex-wrap:wrap;
    }

    .menu-toggle{
        display:block;
    }

    .menu{

        display:none;

        width:100%;

        flex-direction:column;

        margin-top:20px;

        gap:18px;

    }

    .menu.active{
        display:flex;
    }

    .menu a{
        margin:0;
    }

    .hero h1 {

        font-size: 2.2rem;

    }
}


.button{
    transition:.3s;
    font-weight:600;
}

.button:hover{
    transform:translateY(-2px);
}
.releases{
    padding:80px 10%;
    background:#f4f3ef;
}

.release-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,320px));
    justify-content:center;
    gap:30px;
    margin-top:40px;
}
.release{

    background:white;

    border-radius:12px;

    padding:35px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.3s;

    border-left:6px solid #c89a2b;

}

.release:hover{

    transform:translateY(-6px);

}

.release span{

    display:block;

    margin:15px 0 25px;

    color:#666;

}
.small{

    padding:10px 20px;

    font-size:.9rem;

}


.small-hero{

    min-height:45vh;

}
form{
    max-width:700px;
    margin:auto;
}

form label{
    display:block;
    margin-top:25px;
    font-weight:700;
    color:#23432f;
}

form input,
form select,
form textarea{

    width:100%;
    padding:14px;
    margin-top:8px;

    border:1px solid #ddd;

    border-radius:8px;

    font-family:inherit;

    font-size:1rem;

}

form textarea{

    min-height:140px;

}
.card{
    background:#ffffff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:0.25s ease;
    border-left:8px solid #184D47;
}

.card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}
/* Beer Colours */
.lager{
    border-left-color:#F6D155;
}

.pilsner{
    border-left-color:#E8C547;
}

.ipa{
    border-left-color:#E68A00;
}

.pale{
    border-left-color:#C96E1A;
}

.blackipa{
    border-left-color:#4A2F24;
}

.stout{
    border-left-color:#111111;
}

