* {
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}


body {
    background:seagreen;
    color:#222;
}


header {
    background:#111;
    color:green;
    padding:20px;
}


nav {
    display:flex;
    justify-content:space-between;
    align-items:center;
}


nav ul {
    display:flex;
    list-style:none;
    gap:25px;
}


nav a {
    color:white;
    text-decoration:none;
}


.hero {

    height:600px;

    background:
    linear-gradient(
    rgba(0,0,0,.6),
    rgba(0,0,0,.6)
    ),
    url("/static/images/shop.jpg");

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

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    color:white;

}


.hero h2 {
    font-size:48px;
}


.button {

    display:inline-block;
    margin-top:25px;
    padding:15px 30px;

    background:#4B0082;
    color:white;

    text-decoration:none;

    border-radius:5px;
}


.cards {

display:flex;
gap:25px;
justify-content:center;

}


.card {

    background:#transparent;
    color:black;

    padding:30px;

    width:300px;


}


section {

padding:60px;

text-align:center;

}


footer {

background:#111;
color:white;

padding:20px;

text-align:center;

}

.estimate-form {

    max-width:600px;
    margin:auto;
    background:white;
    padding:40px;
    border-radius:10px;
    box-shadow:0 5px 20px #ccc;

}


.estimate-form input,
.estimate-form textarea {

    width:100%;
    padding:12px;
    margin-bottom:20px;
    border:1px solid #ccc;
    border-radius:5px;

}


.estimate-form textarea {

    height:120px;

}


.estimate-form button {

    background:#d71920;
    color:white;
    border:none;
    padding:15px 30px;
    font-size:16px;
    cursor:pointer;

}


.estimate-form button:hover {

    background:#a90000;

}

.estimate-form button:hover {

    background:#a90000;

}


/* ADMIN LOGOUT BUTTON */

.logout-button {

    display:inline-block;
    margin-top:15px;
    padding:10px 20px;

    background:#d71920;
    color:white;

    text-decoration:none;

    border-radius:5px;

    font-size:16px;
}


.logout-button:hover {

    background:#a90000;

}

.estimate-header {

    display:flex;
    justify-content:space-between;
    align-items:center;

}


.home-button {

    margin-top:0;

}

.brand {

    display:flex;
    align-items:center;
    gap:15px;

}


.logo {

    width:80px;
    height:auto;

}


.brand h1 {

    position:absolute;
    left:50%;
    transform:translateX(-50%);

}

.hero .button:first-child {

    margin-bottom:40px;

}

.location-button {

    margin-right:80px;

}

.second-location {

    transform: translateX(50px);

}

.thank-you-container {

    max-width: 600px;

    margin: 80px auto;

    text-align: center;

    padding: 40px;

}

.estimate-header-box {

    background-color: #0077BE;

    color:pink;

    padding: 15px;

    border-radius: 12px;

    margin-bottom: 15px;

}



.status-box {

    background-color: #D4AF37;

    padding: 20px;

    border-radius: 12px;

    margin-bottom: 20px;

}

/* STATUS DROPDOWN */

.status-select {

    padding: 10px;

    border-radius: 8px;

    font-size: 16px;

    font-weight: bold;

    cursor: pointer;

}



/* Not Started */

.status-select.not-started {

    background-color: #333333;

    color: #F8F9FA;

}



/* Contacting Customer */

.status-select.contacting {

    background-color: #dbeafe;

    color: #1e3a8a;

}



/* Repair In Progress */

.status-select.in-progress {

    background-color: #ffedd5;

    color: #9a3412;

}



/* Completed */

.status-select.completed {

    background-color: #bbf7d0;

    color: #166534;

}

.gallery img {
    width: 350px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}