/* Global Styles */
:root {
    --black: #000000;
    --charcoal: #1a1a1a;
    --dark-gray: #2a2a2a;
    --white: #FFFFFF;
    --light-gray: #f5f5f5;
    --medium-gray: #666666;
    --border-width: 5px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: var(--white);
    color: var(--medium-gray);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    color: var(--black);
    font-weight: 400;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* SECTION 1: HEADER */
.header {
    background-color: var(--black);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    border-bottom: 3px solid var(--white);
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.8;
}

.header-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.header-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.logo-wrapper {
    margin-bottom: 20px;
}

.main-logo {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.business-name {
    color: var(--white);
    font-size: 2.5em;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.header-tagline {
    color: var(--white);
    font-size: 1.1em;
    font-style: italic;
}

/* SECTION 2: TAGLINE AREA */
.tagline-section {
    background-color: var(--charcoal);
    padding: 40px 0;
    color: var(--white);
}

.tagline-intro {
    font-style: italic;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.tagline-main {
    color: var(--white);
    font-size: 3em;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.tagline-sub {
    font-size: 1em;
    opacity: 0.9;
}

/* SECTION 3: LOCATION BUTTONS */
.locations-section {
    background-color: var(--black);
    padding: 50px 0;
    color: var(--white);
}

.location-header {
    color: var(--white);
    font-size: 1.5em;
    margin-bottom: 30px;
}

.location-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.loc-btn {
    background-color: var(--white);
    color: var(--black);
    padding: 15px 40px;
    font-size: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid var(--white);
}

.loc-btn:hover {
    background-color: var(--black);
    color: var(--white);
}

.click-instruction {
    margin-top: 20px;
    font-size: 0.9em;
    opacity: 0.8;
}

/* SECTION 4: MAIN CONTENT (ABOUT) */
.about-section {
    background-color: var(--light-gray);
    padding: 80px 0;
    text-align: center;
}

.main-heading {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.sub-heading {
    font-size: 1.3em;
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: 40px;
    font-family: 'Georgia', serif;
    text-transform: none;
}

.about-text {
    font-size: 1.1em;
    color: var(--medium-gray);
    margin-bottom: 30px;
    text-align: justify;
    line-height: 1.8;
}

/* SECTION 4B: SERVICES */
.services-section {
    background-color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.services-heading {
    font-size: 2em;
    margin-bottom: 30px;
}

.services-list p {
    font-size: 1.1em;
    color: var(--medium-gray);
    margin-bottom: 12px;
}

.services-footer {
    margin-top: 30px;
    font-style: italic;
    font-size: 1em;
    color: var(--charcoal);
}

/* SECTION 5: SHOP SHOWCASE */
.shop-showcase {
    background-color: var(--light-gray);
    padding: 60px 0;
    text-align: center;
}

.showcase-image-wrapper {
    margin-bottom: 15px;
}

.showcase-img {
    width: 100%;
    border: var(--border-width) solid var(--white);
    display: block;
}

.image-caption {
    font-style: italic;
    color: #999;
}

/* SECTION 5B: PORTFOLIO GALLERY */
.portfolio-section {
    background-color: var(--light-gray);
    padding: 50px 0;
}

.portfolio-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.portfolio-item {
    flex: 1;
    border: var(--border-width) solid var(--white);
    overflow: hidden;
    aspect-ratio: 3/4;
    /* Vertical portrait style */
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.section-title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
}

/* SECTION 5C: TESTIMONIALS */
.testimonials-section {
    background-color: var(--white);
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.testimonial-box {
    background: var(--light-gray);
    padding: 30px;
    border: 2px solid var(--white);
    text-align: center;
}

.testimonial-box p {
    font-style: italic;
    color: var(--black);
    font-size: 1.1em;
}

/* SECTION 6: INSTAGRAM CTA */
.instagram-section {
    background-color: var(--light-gray);
    padding: 60px 0;
    text-align: center;
}

.insta-heading {
    margin-bottom: 25px;
    font-size: 1.5em;
}

.insta-btn {
    display: inline-block;
    padding: 25px 40px;
    border: 3px solid var(--black);
    background: var(--white);
    color: var(--black);
    font-weight: 700;
    font-size: 1.1em;
    max-width: 400px;
    width: 100%;
}

.insta-btn:hover {
    background: var(--black);
    color: var(--white);
    transform: scale(1.05);
}

.insta-sub {
    margin-top: 15px;
    font-style: italic;
    font-size: 0.9em;
    color: var(--medium-gray);
}

/* SECTION 7: CONTACT */
.contact-section {
    background-color: var(--dark-gray);
    padding: 60px 0;
    color: var(--white);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.contact-col {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.contact-city {
    color: var(--white);
    font-size: 1.8em;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.contact-sub {
    color: #ccc;
    font-size: 0.9em;
    margin-bottom: 25px;
}

.contact-details p {
    color: #ccc;
    line-height: 1.8;
}

.contact-phones {
    margin: 20px 0;
}

.contact-phones a {
    display: block;
    color: var(--white);
    font-size: 1.1em;
    margin: 5px 0;
}

.contact-btn {
    display: inline-block;
    background: var(--white);
    color: var(--black);
    padding: 12px 30px;
    font-weight: 700;
    margin-top: 20px;
    font-size: 0.9em;
}

.contact-btn:hover {
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--white);
}

.contact-hours {
    margin-top: 30px;
}

.contact-hours h4 {
    color: var(--white);
    font-size: 1em;
    margin-bottom: 10px;
}

.contact-hours p {
    color: #ccc;
    font-size: 0.9em;
}

.contact-info-text {
    margin: 20px 0;
    color: #ccc;
}

.contact-divider {
    width: 1px;
    background-color: var(--white);
    opacity: 0.3;
}

/* SECTION 8: FOOTER */
.footer {
    background-color: var(--black);
    padding: 40px 0;
    border-top: 3px solid var(--white);
    text-align: center;
}

.copyright {
    color: #888;
    font-size: 0.9em;
}

.copyright-sub {
    color: #888;
    font-size: 0.9em;
    margin-top: 5px;
}

.footer-extra {
    margin-top: 20px;
}

.footer-extra p {
    color: #dfdfdf;
    font-size: 0.9em;
}

.footer-extra a {
    color: var(--white);
    display: block;
    margin-top: 5px;
}

.designer-creds {
    color: #444;
    font-size: 0.8em;
    margin-top: 30px;
}

/* SCROLL TO TOP */
#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--black);
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    font-size: 1.2em;
    display: none;
    /* Hidden by default */
    z-index: 100;
    transition: all 0.3s ease;
}

#scrollToTop:hover {
    background-color: var(--black);
    color: var(--white);
    transform: translateY(-5px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .tagline-main {
        font-size: 2em;
    }

    .portfolio-grid {
        flex-direction: column;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-divider {
        display: none;
    }

    .contact-col {
        margin-bottom: 50px;
    }

    .location-buttons {
        flex-direction: column;
    }

    .about-text {
        text-align: left;
    }
}