body {
    font-family: 'Poppins', sans-serif; 
    margin: 0;
    padding: 0;
    background-color: #f8f8f8; 
    color: #333; 
    text-align: center;
}

.navbar {
    background: #bada55; 
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar a {
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    color: #222;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar a:hover {
    color: #bada55;
    background: #222;
    border-radius: 5px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

/*LOGO*/
.logo {
    width: 80px;
    height: auto;
}

.header-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-name {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}
/*=============================*/


/*PRODUCT GRID*/
.products {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 0;
}

.product-box {
    width: 250px;
    height: 250px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    box-sizing: border-box;
}

.product-box:hover {
    transform: scale(1.05);
}
/*=============================*/
.photo-section {
    background-color: #fff;
    padding: 30px;
    margin: 40px auto;
    width: 80%;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.photo-section p {
    font-style: italic;
    font-size: 20px;
    color: #555;
}


/*FOOTER*/
footer {
    background-color: #000; 
    color: #bada55; 
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    font-family: "Trebuchet MS", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    width: 100%;
    bottom: 0;
}

html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

body {
    flex: 1;
}

footer {
    margin-top: auto;
}

.social-links {
    margin-top: 10px;
    text-align: center;
}

.social-links .social-icon {
    display: inline-block;
    margin: 0 10px;
    font-size: 24px;
    color: #bada55; 
    text-decoration: none;
}

.social-links .social-icon:hover {
    color: #ffffff; 
}

.footer-links {
    color: #bada55;
    text-decoration: none; 
}

.footer-links:hover {
    color: #ffffff;
}

/*=============================*/


/*VALIDATORS*/
.validator-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; 
    margin-top: 20px;
}
.validator-links img {
    height: 31px;
}
.wcag-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 31px;
    padding: 0 10px;
    background-color: #005A9C;
    color: white;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    font-family: Arial, sans-serif;
}
.wcag-button:hover {
    background-color: #004080;
}

/*=============================*/


/*CART*/
.cart {
    position: absolute;
    top: 15px;
    right: 20px;
}

.cart-logo {
    font-size: 24px;
    color: #bada55;
    text-decoration: none;
    position: relative;
}

.cart-logo:hover {
    color: #000000;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: red;
    color: white;
    font-size: 12px;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: bold;
}
/*=============================*/

/*CART FORMAT*/
#cart-container {
    max-width: 700px;
    margin: auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.cart-item img {
    width: 80px;
    height: auto;
    border-radius: 5px;
    margin-right: 15px;
}

.cart-item p {
    flex-grow: 1;
    margin: 0;
    font-size: 16px;
}

.cart-item .remove-item {
    background: red;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
}

#checkout-button {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 10px;
    background: #396343;
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 4px;
    text-align: center;
    box-sizing: border-box;
}

#checkout-button:hover {
    background: #468354;
}
/*=============================*/



/*SEARCH-BAR*/
.search-container {
    position: absolute;
    top: 10px;
    right: 70px; 
    display: flex;
    align-items: center;
    gap: 5px;
}

#search-bar {
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 20px;
    width: 150px;
    transition: width 0.3s ease-in-out;
    box-sizing: border-box;
}

#search-bar:focus {
    outline: none;
    width: 200px;
}

#search-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #bada55;
}

#search-button:hover {
    color: #000000;
}


/*=============================*/


/*GALLERY*/

.gallery-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.filter-container {
    text-align: center;
    margin-bottom: 20px;
}

.filter-container label {
    font-size: 1.2rem;
    margin-right: 10px;
}

#design-filter {
    font-size: 1rem;
    padding: 5px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
    padding: 10px;
}

.gallery-item {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    cursor: pointer;
}
/*--------------------------------*/
.gallery-item:hover {
    transform: scale(1.05) rotateY(8deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.gallery-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.2) 30%, rgba(255, 255, 255, 0) 70%);
    transform: skewX(-20deg);
    transition: left 0.5s ease-in-out;
}
.gallery-item:hover::before {
    left: 100%;
}

/*--------------------------------*/

/*Gallery Modal*/
.modal {
    display: none; 
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); 
    overflow: auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.modal-content {
    position: relative;
    margin: 40px auto;
    display: block;
    max-width: 600px;
    width: 90%;
    height: auto;
    overflow-y: auto;
}

#modal-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}


.close-btn {
    position: fixed;
top: 20px;
right: 30px;
    color: #bada55;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    display: none; 
}

.close-btn:hover,
.close-btn:focus {
    color: rgb(100, 100, 100); 
}


/*--------------------------------*/


/*MOBILE*/
@media (max-width: 768px) {
    .gallery-title {
        font-size: 1.8rem;
    }

    .filter-container {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .gallery-title {
        font-size: 1.5rem;
    }

    .filter-container label {
        font-size: 1rem;
    }

    #design-filter {
        font-size: 0.9rem;
    }
}



/*=============================*/



/*SHOP FORMATTING*/

.shop-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 0;
}

.shop-item {
    width: 250px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    box-sizing: border-box; 
}
/*-------------------------------*/
.shop-item {
    position: relative;
    width: 250px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    perspective: 1000px;
    overflow: hidden;
    box-sizing: border-box;
}

.shop-item:hover {
    transform: scale(1.05) rotateY(8deg);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
}

.shop-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.3) 30%, rgba(255, 255, 255, 0) 70%);
    transform: skewX(-20deg);
    transition: left 0.5s ease-in-out;
}

.shop-item:hover::before {
    left: 100%;
}

/*-------------------------------*/

.shop-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.shop-item p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.shop-item button {
    background-color: #396343;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.shop-item button:hover {
    background-color: #468354;
}
/*=============================*/


/*=============================*/

/*SELECT ELEMENT*/

/*Text Boxes*/
input:focus, textarea:focus {
    outline: 2px solid #bada55;
    transition: outline, box-shadow;
}

/*Dropdowns*/
select:focus {
    outline: 2px solid #bada55; 
    transition: outline, box-shadow;
}
/*=============================*/



/*IMAGE CAROUSEL (HOMEPAGE)*/
.slider {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 0;
}

.slides {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slide 30s infinite;
}

.slides img {
    width: 100%;
    height: auto;
    max-height: 100%;
    flex-shrink: 0;
    object-fit: cover;
    background-color: #000; 
}

@keyframes slide {
    0%   { transform: translateX(0%); }
    5%   { transform: translateX(-100%); } 
    33%  { transform: translateX(-100%); } 
    38%  { transform: translateX(-200%); } 
    66%  { transform: translateX(-200%); }  
    71%  { transform: translateX(0%); }     
    100% { transform: translateX(0%); }    
}

.slider {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}
/*Vital to keeping slideshow having clean transition*/
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  

/*=========================================*/

/*FAQ*/
.page-title {
    text-align: center;
    margin: 40px 0;
    font-size: 2.5rem;
  }
  
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
  
h3 {
    margin-top: 40px;
    color: black;
    font-size: 1.8rem;
    border-bottom: 2px solid #bada55;
    padding-bottom: 8px;
}
  
.faq-item {
    margin-top: 20px;
    padding-bottom: 15px;
}
  
h4 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: black;
}
  
.faq-item p {
    margin-left: 15px;
    color: #555;
    line-height: 1.6;
} 
/*=============================*/


/*SLIDESHOW - MOBILE OPTIMIZATION*/
@media (max-width: 768px) {
    .slider {
        height: 250px; 
    }
}
/*=============================*/


/*CUSTOMS: Excalidraw*/
.custom-form {
    max-width: 600px;
    margin: 0 auto 4rem auto;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .custom-form label {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
  }

  .custom-form input[type="text"],
  .custom-form input[type="email"],
  .custom-form input[type="file"],
  .custom-form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid #bada55;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
  }

  .custom-form textarea {
    height: 120px;
    resize: vertical;
  }

  .custom-form button {
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    background-color: black;
    color: #bada55;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  #excalidraw-frame {
    width: 100%;
    height: 600px;
    border: 3px solid #bada55;
    border-radius: 12px;
    box-sizing: border-box;
  }

/*=========================================*/

