:root {
    --primary: #7F5539;
    --secondary: #EDE0D4;
    --accent1: #A68A64;
    --accent2: #656D4A;
    --accent3: #414833;
}

body{
    font-family: 'Roboto', 'Lato', sans-serif;
    margin:0;
    background-color: var(--secondary);
    color: var(--accent3);
}

electric-grid, acoustic-grid{
    display:flex;
    flex-direction:column;
    align-items:center;
    margin-top:30px;
}

button{
    padding:10px 20px;
    background: var(--primary);
    color:white;
    border:none;
    cursor:pointer;
    margin-top:20px;
}
button:hover{
    background: var(--accent2);
}
button a{
    color:white;
    text-decoration:none;
}

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    background: var(--primary);
    color: white;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent3);
}

.hero{
    text-align:center;
    margin-bottom:30px;
}

.hero h1{
    font-size:3rem;
    margin-bottom:20px;
    font-family: 'Rock Salt', cursive;
    color: var(--primary);
}

.hero img{
    width:80%;
    max-width:300px;
    height:auto;
}

.guitar-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:30px;
    margin-top:40px;
}

.guitar-grid section{
    text-align:center;
    background: white;
    padding:15px;
    border: 1px solid var(--accent1);
}

.guitar-grid img{
    width:100%;
    height:180px;
    object-fit:contain;
    margin-bottom:15px;
}

.guitar-grid h3{
    margin-bottom:10px;
}

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

nav a{
    margin-left:20px;
    text-decoration:none;
    color: white;
}
nav a:hover{
    color: var(--accent1);
}

main{
    padding:40px;
}

.grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    margin-top:30px;
}

.card{
    border:2px solid var(--accent1);
    padding:20px;
    text-align:center;
    background: white;
}

.card img{
    width:100%;
    height:200px;
    object-fit:cover;
    margin-bottom:10px;
}

footer{
    margin-top:40px;
    padding:20px;
    text-align:center;
    background: var(--accent3);
    color: white;
}

@media (max-width: 768px){
    .guitar-grid{
        grid-template-columns: 1fr;
    }
}
