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

/* 
   BODY
 */

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f8f5f2;
    color: #333;
    line-height: 1.6;
}

/* 
   CONTAINER
 */

.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

/* 
   HEADER / NAVBAR
 */

.header {
    background: #3e2723;
    color: white;
    padding: 15px 20px;

    position: sticky;
    top: 0;
    z-index: 1000;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.logo h1 {
    font-size: 22px;
    letter-spacing: 0.5px;
}

.navbar {
    margin-top: 10px;
}

.nav-menu {
    list-style: none;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: bold;

    position: relative;

    transition: 0.3s ease;
}

.nav-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -5px;

    width: 0%;
    height: 2px;

    background: #ffcc80;

    transition: 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #ffcc80;
}

/* 
   CONTACT HEADER
 */

.contact-header {
    background: #3e2723;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.contact-title {
    font-size: 34px;
    margin-bottom: 10px;
}

.contact-intro {
    max-width: 600px;
    margin: auto;
}

/* 
   SECTION TITLE
 */

.section-title {
    text-align: center;
    color: #6b3e26;
    margin-bottom: 25px;
    font-size: 26px;
}

/* 
   CONTACT INFO
 */

.contact-info {
    padding: 60px 20px;
    text-align: center;
}

.info-box {
    background: white;

    padding: 25px;

    max-width: 420px;

    margin: auto;

    border-radius: 12px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

    transition: 0.3s ease;
}

.info-box:hover {
    transform: translateY(-6px);
}

/* 
   CONTACT FORM
 */

.contact-form-section {
    padding: 60px 20px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 12px;
}

.contact-form label {
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {

    padding: 10px;

    width: 100%;
    max-width: 320px;

    border-radius: 6px;

    border: 1px solid #ccc;

    transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {

    outline: none;

    border-color: #6b3e26;

    box-shadow: 0 0 6px rgba(107, 62, 38, 0.2);
}

.form-textarea {
    height: 110px;
}

/* 
   BUTTON
 */

.submit-btn {
    padding: 10px 18px;

    background: #6b3e26;
    color: white;

    border: none;

    border-radius: 6px;

    cursor: pointer;

    font-weight: bold;

    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #d2691e;

    transform: translateY(-2px);
}

/* 
   LOCATION
 */

.location-section {
    padding: 60px 20px;
    text-align: center;
}

.map-box img {
    width: 100%;
    max-width: 500px;

    border-radius: 12px;

    transition: 0.3s ease;
}

.map-box img:hover {
    transform: scale(1.04);
}

/* 
   HOURS
 */

.hours-section {
    padding: 60px 20px;
    text-align: center;
}

.hours-box {
    background: white;

    padding: 25px;

    max-width: 420px;

    margin: auto;

    border-radius: 12px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

    transition: 0.3s ease;
}

.hours-box:hover {
    transform: translateY(-6px);
}

/* 
   SOCIAL SECTION
 */

.social-section {
    padding: 60px 20px;
    text-align: center;
}

.social-links {
    margin-top: 10px;
}

.social-links a {
    margin: 0 10px;

    text-decoration: none;

    color: #6b3e26;

    font-weight: bold;

    transition: 0.3s ease;
}

.social-links a:hover {
    color: #d2691e;

    transform: translateY(-2px);
}

/* 
   FOOTER
 */

.footer {
    background: #3e2723;
    color: white;

    text-align: center;

    padding: 25px;

    margin-top: 40px;
}

/* 
   SOCIAL ICONS
 */

.social-icons {
    margin-top: 20px;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 25px;
}

.social-link {
    display: flex;
    align-items: center;

    gap: 8px;

    text-decoration: none;

    color: #ffcc80;

    font-size: 16px;
    font-weight: 500;

    transition: 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);

    color: white;
}

/* 
   ICON STYLE
 */

i {
    margin-right: 5px;
    color: #ffcc80;
}

.section-title i,
.info-box p i,
.hours-box p i {
    color: #d2691e;
}

/* 
   ACCESSIBILITY
 */

input:focus,
textarea:focus,
button:focus,
a:focus {
    outline: 2px solid #ffcc80;
}

/* 
   RESPONSIVE DESIGN
 */

@media (max-width: 768px) {

    .nav-menu {
        flex-direction: column;
        gap: 12px;
    }

    .contact-title {
        font-size: 26px;
    }

}

@media (max-width: 480px) {

    .contact-title {
        font-size: 22px;
    }

    .section-title {
        font-size: 20px;
    }

}