/*
Author: Amanda Fowler
Date: 03/31/2026
File Name: styles.css
*/

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Style rules for COLOR VARIABLES */
:root {
    --violet: #6a0dad;
    --red: #c1121f;
    --black: #111;
    --white: #ffffff;
    --light-gray: #f4f4f4;
}

/* Style rules for BODY */
body {
    background: var(--light-gray);
    color: var(--black);
    line-height: 1.6;
    font-weight: bold;
    font-size: large;
}

.highlight {
    font-size: larger;
    font-weight: bolder;
    color: var(--red);
    font-style: italic;
}

/* Style rules for MOBILE Viewport */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .gallery img {
        width: 50%;
        height: auto;
    }
}

/* Style rules for HEADER */
header {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 20px;
    border-bottom: 4px solid var(--red);
}

header h1,header img {
    color: var(--violet);
    size: auto;
}

/* Style rules for NAVIGATION */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    background: var(--violet);
}

nav ul li {
    padding: 15px 20px;
    border-left: 2px solid black;
}

nav ul li:last-child {
    border-right: none;
}

nav a {
    color: rgb(8, 0, 0);
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: var(--red);
}


/* Style rules for HERO (HOME PAGE) */
.hero {
    background: linear-gradient(to right, var(--violet), var(--red));
    color: rgb(230, 14, 140);
    text-align: center;
    padding: 60px 20px;
}

.hero h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

/* Style rules for SECTION GENERAL */
section {
    padding: 40px 20px;
    text-align: center;
}

/* Style rules for SERVICES PAGE */
.services-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.services {
    background: white;
    border: 2px solid var(--violet);
    margin: 15px;
    padding: 20px;
    width: 1000px;
    border-radius: 10px;
}

.services h2 {
    color: var(--red);
    margin-bottom: 10px;
}

.services h2caption {
    font-size: x-small;
    font-weight: bold;
}

.shop-btn {
    background: linear-gradient(45deg, violet, red);
    color: white;
    padding: 12 px 20px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 8px;
    display: inline-block;
    transition: 0.3s;
}

/* Style rules for GALLERY PAGE */
img {
    display: block;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: auto;
    height: 750px;
    object-fit: cover;
    margin: 10px;
    border-radius: 10px;
    border: 3px solid var(--violet);
    transition: transform 0.3s;
}

figurecaption {
    font-weight: bold;
    font-size: medium;
}

img:hover {
    transform: scale(1.05);
    border-color: var(--red);
}

/* Style rules for CONTACT PAGE */
.contact us {
    max-width: 500px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid var(--violet);
}

.contact us input,
.contact us textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact us button {
    background: var(--violet);
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
}

.contact us button:hover {
    background: var(--red);
}

/* Style rules for FOOTER */
footer {
    background: var(--black);
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}

