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

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

/*Header*/
header {
    text-align: center;
    padding: 20px 0;
    background-color: #f0f0f0;
    font-family: 'Snell Roundhand', cursive;
    font-style: oblique;
    font-size: 20px;
    letter-spacing: 2px;
    color: black;
}

#wrapper {
    display: flex;
    min-height: calc(100vh - 120px);
    justify-content: center;
    align-items: center;
    position: relative;
   
}

/*Sidebar*/
nav {
    width: 100px;
    background-color: #c2b29c;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;

}

nav ul {
    list-style: none;
}

nav ul li {
    margin: 10px 0;
}

nav ul li a {
    text-decoration: none;
    color: white;
    display: block;
    padding: 12px 20px;
}

nav ul li a:hover {
    background-color: #34495e;
}

/*Main Content*/
.context {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.form-container {
    width: 700px;
}


/*Form Header*/
.form-header {
    text-align: center;
    margin-bottom: 20px;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #72644f;
}

.form-header p {
    font-size: 15px;
    color: #72644f;
}

/*Form Fields*/
.field {
    position: relative;
    margin-bottom: 20px;
}

.field input,
.field select, 
.field textarea {
    width: 100%;
    padding: 14px 12px;
    border: 2px solid #d0d0d0;
    border-radius: 10px;
    font-size: 16px;
    background: transparent;
}

.field input:focus, 
.field select:focus, 
.field textarea:focus {
    border-color: #2b7bec;
    outline: none;
}

/*Floating labels*/
label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 0 4px;
    color: #888;
    pointer-events: none;
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field select:focus + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
    top: -8px;
    font-size: 12px;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
}

/*Submit Button*/
.submit-btn {
    padding: 14px 32px;
    background: #c2b29c;
    color: white;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.submit-btn:hover {
    background: green;
    color: black;
}

/*Footer*/
footer {
    background-color: #f4f1ec;
    padding: 20px 30px;
    columns: #5c4a3e;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-block h4 {
    margin-bottom: 10px;
}

.footer-block p {
    margin: 1px 0;
    font-size: 14px;
    color: #8c6b5d;
}

.footer-social a {
    margin: 0 10px;
    color: #5c4a3e;
    text-decoration: none;
    font-size: 18px;
}

.footer-copy {
    font-size: 14px;
    color: #8c6b5d;
}

@media(max-width: 768px) {
    .footer-contact{
        flex-direction: column;
        align-items: center;
    }
    .footer-block {
        text-align: center;
    }
}

/*---------------------ABOUT PAGE-------------------------*/
.about-header {
    margin-top: 20px;
    text-align: center;
    margin-bottom: 40px;
}

.about-header p {
    font-size: 16px;
    color: #8c6b5d;
    max-width: 600px;
    margin: 10px auto 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}

.about-text {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    color: #5c4a3e;
}

.about-text h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.about-text p {
    line-height: 1.7;
    margin-bottom: 10px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
}

/*team pictures*/
.team {
    margin-top: 50px;
    text-align: center;
    color: #5c4a3e;
}

.team h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-members .member {
    flex: 1 1 200px;
    max-width: 220px;
}

.team-members .member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 10px;
}

.team-members .member h4 {
    margin-bottom: 5px;
}

.team-members .member p {
    font-size: 14px;
    color: #8c6b5d;
}



/*--------------------GALLERY-------------------*/

/*Grid of photos*/
#photo-gallery {
    width: 90%;
    margin: 40px auto;
    text-align: center;
}

#photo-gallery h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.grid-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    gap: 15px; /* space between photos */
}

.grid-gallery img {
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2); */
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}


/*------------------------------SHOP-------------------------*/
/* Shop title */
.shop-title {
    text-align: center;
    padding: 20px 0;
    font-size: 26px;
    color: #8c6b5d; 
}

/* Category buttons */
.category-simple {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.category-simple button {
    background: #c2b29c; /* warm beige tone */
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 15px;
    color: white;
    cursor: pointer;
    transition: 0.2s;
}

.category-simple button:hover {
    background: #a8937e;
}

/* Product sections */
.product-section {
    padding: 10px;
    display: flex;
    justify-content: center;
}

.product-row {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.product {
    background: #f4f1ec;  /*  soft warm tone */
    padding: 12px;
    border-radius: 10px;
    width: 220px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.10);
}

.product img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.product p {
    margin: 12px 0;
    color: #5c4a3e;
}

/* Add button */
.product button {
    padding: 8px 14px;
    background: #c2b29c;
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
}

.product button:hover {
    background: #8c6b5d;
}


/*------------------HOME------------------*/

main.context {
    flex: 1;
}

.home {
    position: relative;    
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.home-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.35);
}


.home-text {
    position: relative;
    text-align: center;
    color: white;
    max-width: 600px;
}

.home-text h2 {
    font-family: 'Snell Roundhand', cursive;
    font-size: 50px;
    margin-bottom: 15px;
}

.home-text p {
    font-size: 20px;
}

.home-text a {
    margin-top: 20px;
    display: inline-block;
    padding: 12px 25px;
    background: #c2b29c;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}