/* style.css */

/* Basic Resets and Accessibility */
:root {
    --primary-color: #A52A2A; /* Brown/Maroon for warmth */
    --secondary-color: #F5DEB3; /* Wheat for light contrast */
    --text-color: #333;
    --light-text-color: #f8f8f8;
    --accent-color: #FFD700; /* Gold for highlights */
    --border-radius: 5px;
    --logo-color: #A52A2A; /* Color matching the logo */
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;
}

/* Skip to Content Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--light-text-color);
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Header */
header {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 1rem 0;
    text-align: center;
    position: relative;
}

.header-top-buttons {
    padding-bottom: 10px;
}

.header-top-buttons .button {
    margin: 0 5px;
    padding: 8px 15px;
    font-size: 0.9em;
}

.logo-container {
    padding: 10px 0;
}

.logo-container img {
    max-width: 250px; /* Adjust as needed */
    height: auto;
    display: block;
    margin: 0 auto;
   filter: invert(96%) sepia(96%) saturate(17%) hue-rotate(230deg) brightness(104%) contrast(104%);
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    padding-bottom: 0.5rem;
}

header p {
    margin: 0;
    font-size: 1.1em;
    padding-bottom: 1rem;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: var(--light-text-color);
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: var(--border-radius);
}

nav ul li a:hover,
nav ul li a:focus {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.search-bar {
    margin-top: 15px;
    padding-bottom: 10px;
}

.search-bar input[type="search"] {
    padding: 8px 10px;
    border: none;
    border-radius: var(--border-radius);
    width: 60%;
    max-width: 400px;
}

.search-bar button {
    padding: 8px 15px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 5px;
}

.search-bar button:hover {
    background-color: #DAA520; /* Darker gold */
}
button{
    background-color:var(--primary-color);
    border-color: white;
}
/* Main Content Area */
main {
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: var(--border-radius);
}

section {
    margin-bottom: 30px;
}

h2 {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 5px;
}

h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-top: 25px;
}

p {
    margin-bottom: 15px;
}

ul {
    list-style: disc;
    margin-bottom: 15px;
}

ul li {
    margin-bottom: 8px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

.button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    margin-top: 10px;
    transition: background-color 0.3s ease;
    border: none; /* Ensure buttons don't have default borders */
    cursor: pointer;
}
/* Darker red */
/* .button:hover,
.button:focus {
    background-color: #8B0000; 
} */

.order-platform-buttons .button {
    background-color: #32CD32; /* LimeGreen for order buttons */
    margin: 5px;
}

.order-platform-buttons .button:hover {
    background-color: #228B22; /* ForestGreen */
}


/* Gallery Specific Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    overflow: hidden;
    text-align: center;
    background-color: #fdfdfd;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gallery-item p {
    padding: 10px;
    margin: 0;
    font-weight: bold;
    color: var(--primary-color);
}

/* Contact Page Specific Styles */
.contact-info p {
    margin-bottom: 10px;
}

.social-media-links a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.5em;
    color: var(--primary-color);
}

.social-media-links a img {
    width: 32px; /* Adjust size of social icons */
    height: 32px;
    vertical-align: middle;
}

.social-media-links a:hover {
    color: var(--accent-color);
}

/* About Page Specific Styles */
.about-section {
    margin-bottom: 25px;
    padding: 15px;
    border-left: 5px solid var(--accent-color);
    background-color: #fdfdfd;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 30px;
}

footer p {
    margin: 0;
    padding-bottom: 5px; /* Reduced padding for compact contact info */
}

footer .footer-contact-info {
    font-size: 0.9em;
    padding-bottom: 10px;
}

footer .footer-contact-info a {
    color: var(--secondary-color);
    text-decoration: none;
}

footer .footer-contact-info a:hover {
    text-decoration: underline;
}

.go-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 10px 15px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 999;
}

.go-to-top:hover,
.go-to-top:focus {
    background-color: #DAA520; /* Darker gold */
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-container img {
        max-width: 200px;
    }

    header h1 {
        font-size: 2em;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 5px 0;
    }

    .header-top-buttons .button {
        display: block;
        width: 80%;
        margin: 5px auto;
    }

    .search-bar input[type="search"] {
        width: 80%;
    }

    .search-bar button {
        margin-top: 10px;
        width: 80%;
    }

    main {
        margin: 10px;
        padding: 15px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}