﻿body, h1, h2, h3, p, ul, li, blockquote {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-image: url('../image/store.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Header Styles */
header {
    color: #FFF8DC;
    padding: 40px 10px;
    text-align: center;
    position: relative;
    height: 100px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.logo {
    position: absolute;
    top: 10px;
    left: 20px;
    width: 120px;
    height: 120px;
    transition: transform 0.3s ease-in-out;
}

    .logo:hover {
        transform: scale(1.1) rotate(5deg);
    }

nav ul {
    list-style-type: none;
    text-align: center;
}

    nav ul li {
        display: inline-block;
        margin-right: 20px;
        position: relative;
    }

        nav ul li a {
            text-decoration: none;
            color: #fff;
            font-weight: bold;
            transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
            display: block;
            padding: 10px;
            position: relative;
            overflow: hidden;
        }

            nav ul li a::before, nav ul li a::after {
                content: "";
                position: absolute;
                width: 100%;
                height: 2px;
                background-color: #ffd700;
                transition: transform 0.3s ease-in-out;
            }

            nav ul li a::before {
                top: 0;
                left: 0;
                transform: scaleX(0);
                transform-origin: top left;
            }

            nav ul li a::after {
                bottom: 0;
                right: 0;
                transform: scaleX(0);
                transform-origin: bottom right;
            }

            nav ul li a:hover::before {
                transform: scaleX(1);
                transform-origin: top right;
            }

            nav ul li a:hover::after {
                transform: scaleX(1);
                transform-origin: bottom left;
            }

            nav ul li a:hover {
                color: #DCDCDC; /* Change text color on hover */
                background-color: rgba(255, 255, 255, 0.1); /* Add a slight background color on hover */
            }

.store-location {
    width: 90%;
    margin: 20px auto;
    text-align: center;
    
}

    .store-location h1 {
        font-size: 36px;
        color: #34495e;
        margin-bottom: 20px;
        font-family: 'Courier New', Courier, monospace;
    }

.location {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    display: table-cell; /* Use table-cell here */
    vertical-align: middle; /* Align content vertically to the middle */
    text-align: center;
}

    .location img {
        width: 120px;
        height: auto;
        border-radius: 8px;
        vertical-align: middle; /* Align the image vertically to the middle */
    }

    .location .text-content {
        display: table-cell; /* Ensure text content also uses table-cell */
        vertical-align: middle; /* Align content vertically to the middle */
    }

    .location h2 {
        font-size: 24px;
        color: #2c3e50;
        font-family: 'Courier New', Courier, monospace;
        text-align:center;
        margin-top: 0;
    }

    .location p {
        font-size: 16px;
        color: #7f8c8d;
        text-align:center;
        margin: 5px 0;
    }

    .location button {
        background-color: #f1c40f;
        color: #fff;
        border: none;
        padding: 10px 20px;
        font-size: 16px;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

        .location button:hover {
            background-color: #d4ac0d;
        }
form {
    width: 90%;
    margin: 20px auto;
    background-color: #ffffff57;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

    form h1 {
        font-size: 30px;
        color: #34495e;
        font-family: 'Courier New', Courier, monospace;
    }

    form p {
        font-size: 16px;
        color: #41a6b0;
    }

    form asp:Label {
        display: block;
        font-size: 20px;
        color: #fff;
        margin: 10px 0 5px;
    }

    form asp:TextBox {
        width: 100%;
        padding: 10px;
        font-size: 16px;
        border: 1px solid #ddd;
        border-radius: 4px;
        margin-bottom: 15px;
    }
/* Footer Styles */
footer {
    position: page;
    bottom: 0;
    width: 100%;
    background-color: #778899;
    color: #FFF8DC;
    padding: 0px 0;
    text-align: center;
}

    footer ul {
        list-style-type: none;
    }

        footer ul li {
            display: inline-block;
            margin-right: 10px;
            color: #000000; /* Change the color to black */
        }

            footer ul li a {
                text-decoration: none;
                color: #FFF8DC; /* Change the link color to black */
                font-weight: bold;
            }

                footer ul li a:hover {
                    color: #00FF7F;
                }

/* Responsive Styles */
@media screen and (max-width: 768px) {
    nav ul {
        text-align: center;
    }

        nav ul li {
            display: block;
            margin: 10px 0;
        }

    .dropdown {
        display: block;
        text-align: center;
    }

    nav ul li:hover .dropdown {
        display: none;
    }
}
