/* Mainstyle2.css */

/* Reset some default styles */

body, div, p, h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

/* Apply styles to the body */
body {
    padding-top: 50px;
    padding-bottom: 50px;
    background: url('../images/slide/background/1.jpg') no-repeat center center fixed;
    background-size: cover;
    transition: background-image 5s ease-in-out;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh; /* Ensure the body covers the full viewport height */
}

@media (max-width: 768px) {
    /* Adjust styles for smaller screens */
    body {
        background-size: auto; /* Use auto size for the background on mobile */
        padding-top: 10px; /* Reduce top padding on mobile */
        padding-bottom: 10px; /* Reduce bottom padding on mobile */
    }
}
/* Create a flex container for the main content */
.container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

/* Apply styles to left and right columns */
.column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.column-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%; /* Make the content div take up the full height of the column */
}

/* CSS for Slideshow Container */
.slideshow-container {
    max-width: 800px;
    position: relative;
    margin: auto;
    overflow: hidden; /* Hide overflow for the slide effect */
}

/* CSS for Individual Slides */
.slide {
    display: none;
    width: 100%;
    text-align: center; /* Center align the content within each slide */
}

/* CSS for Slideshow Images (Set the maximum width to control image size and centering) */
.slide img {
    max-width: 100%; /* Set the maximum width to container width (800px in this example) */
    height: auto; /* Maintain aspect ratio */
    margin: 0 auto; /* Center the image horizontally */
}


/* Content container styles */
#content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* Debug option styles */
.debug-option {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    width: 800px;
}

.left-column {
    flex: 1;
}

.right-column {
    flex: 1;
    text-align: center;
}

/* Button and output styles */
.debug-option button {
    display: block;
    margin: 0 auto;
}

.debug-option #outputText {
    text-align: left;
    padding-top: 10px;
}

/* Wrapper styles */
#wrapper {
    display: block;
    margin: 0 auto;
    width: 1200px;
    padding-top: 5px;
}

/* Navigation styles */
#nav {
    display: block;
    margin: 0 auto;
    width: 1150px;
    background-color: #0c3983;
    padding-top: 1px;
    height: 130px;
    position: relative;
}

#nav img {
    width: 130px;
    display: block;
    position: absolute;
    left: 50px;
    top: 5px;
}

#nav p {
    text-align: center;
    color: white;
    font-family: 'Oxygen', sans-serif;
    font-size: 45px;
    padding-top: 15px;
    margin-top: 0;
    font-weight: bold;
    z-index: 1;
}

#nav ul {
    list-style-type: none;
    margin: 0 auto;
    padding-top: 15px;
    display: block;
    text-align: center;
    width: 1000px;
}

#nav li {
    display: inline-block;
    padding-right: 35px;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
}

#nav a {
    text-decoration: none;
    color: white;
}

a:hover {
    background-color: black;
    color: white;
}

/* Index page styles */
#indexp {
    text-align: center;
    padding-bottom: 5px;
}

#logo {
    margin: 0 auto;
    width: 600px;
    display: block;
}

/* Body styles */
#body {
    display: block;
    margin: 0 auto;
    position: relative;
    text-align: center;
    background-color: white;
    width: 1150px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 24px;
}

#body a {
    text-decoration: none;
    color: black;
}

#body a:hover {
    color: white;
}

/* Specs and words styles */
.specs, .specswords {
    width: 800px;
    margin: 0 auto;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
}

.specswords {
    text-align: center;
}

.partslist {
    width: 800px;
    margin: 0 auto;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

/* Footer styles */
#footer {
    width: 1150px;
    display: block;
    margin: 0 auto;
    height: 130px;
    background-color: #0c3983;
}

/* Contact words and login link styles */
#footer .contactwords, #footer .login {
    position: relative;
    float: left;
    width: 225px;
    height: inherit;
    text-align: left;
    padding-top: 20px;
    padding-bottom: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: white;
    font-size: 14px;
    /* Add left padding to both contact words and login */
    padding-left: 20px;
}

#footer .contactwords a:link,
#footer .contactwords a:visited,
#footer .login a:link,
#footer .login a:visited {
    color: white;
}

/* Facebook styles */
#footer .facebook img {
    width: 200px;
    display: block;
    position: left;
    padding-left: 200px;
    padding-top: 5px;
    padding-right: 0px;
    margin-right: 0;
    position: absolute;
}

/* Login styles */
#footer .login {
    position: relative;
    float: right;
    top: 0px;
    right: 50px;
    width: 125px;
    height: inherit;
    text-align: right;
    padding-top: 20px;
    padding-bottom: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
}

#footer .login a:hover {
    color: white;
}

/* Hardware styles */
.hardware img {
    width: 300px;
    height: 300px;
}

.hwnav:hover {
    background-color: white;
    text-decoration: none;
}

#hwleft,
#hwright,
#hwleft2,
#hwright2 {
    width: 50%; /* Set the width to 50% for two columns */
    float: left; /* Float the columns next to each other */
    text-align: center;
    margin-top: 40px; /* Add vertical spacing between divs */
    margin-bottom: 40px; /* Add vertical spacing between divs */
    box-sizing: border-box; /* Include padding and border in the width calculation */
}


/* Clear the float to prevent content below from floating */
.blurb {
    text-align: center; /* Center-align the text within the div */
    margin: 0 auto; /* Optionally, center the div itself horizontally */
    max-width: 80%; /* Optionally, limit the width of the div */
    margin-bottom: 20px; /* Add vertical spacing between divs */
}

.words::after,
.blurb::after {
    content: "";
    display: table;
    clear: both;
}


#hwlftimg, #hwrtimg, #complftimg, #comprtimg, #custdesktopimg, #refurblaptopimg, #refurbdesktopimg, #pastimg, #clearanceimg {
    width: 350px;
    padding: 0;
    margin: 0;
}

/* Word styles */
.word, .words, .blurb, .details {
    width: 800px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
}

.para {
    width: 800px;
    margin: 0 auto;
    text-align: left;
    padding-top: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    text-indent: 5%;
}

.headline {
    font-weight: bold;
}

.motto {
    font-size: 20px;
}

/* Payment styles */
.payment {
    position: relative;
    text-align: justify;
    font-size: 18px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: auto;
    font-family: Arial, Helvetica, sans-serif;
    height: 100px;
    width: 600px;
}

.payment img {
    float: left;
    padding-right: 30px;
}

.payment p {
}
