/*
Copyright (c) 2018, HerWheel Pottery LLC http://www.herwheel.com
*/
@import "herwheel.css";
/*
    Created on : Mar 4, 2018, 12:13:54 PM
    Author     : jax
*/

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 1em;
    background: linear-gradient(135deg, #8e44ad 0%, #3498db 100%);
    background-attachment: fixed;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
}

h1 {
    text-align: center;
    color: white;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
    margin: 0.5em 0 1em 0;
    font-size: 2.8em;
    letter-spacing: 1px;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.97);
    padding: 3em;
    border-radius: 15px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.3);
}

.intro-text {
    text-align: center;
    font-size: 1.15em;
    color: #555;
    margin-bottom: 2.5em;
    padding: 1.5em;
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(253, 203, 110, 0.3);
}

.gallery-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gallery-card {
    background: white;
    padding: 2em;
    margin: 2em 0;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #8e44ad;
    transition: all 0.3s ease;
    position: relative;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-left-color: #3498db;
}

.gallery-card:before {
    content: "📍";
    position: absolute;
    top: 1.5em;
    right: 1.5em;
    font-size: 2em;
    opacity: 0.3;
}

.gallery-name {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 0.5em;
    color: #8e44ad;
}

.gallery-name a {
    color: #8e44ad;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gallery-name a:hover {
    color: #3498db;
}

.gallery-address {
    font-size: 1.05em;
    color: #555;
    margin: 0.5em 0;
    line-height: 1.8;
}

.gallery-contact {
    margin-top: 1em;
    padding-top: 1em;
    border-top: 2px solid #ecf0f1;
    display: flex;
    gap: 1.5em;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5em;
    color: #555;
}

.contact-item:before {
    font-size: 1.2em;
}

.contact-phone:before {
    content: "📞";
}

.contact-email:before {
    content: "✉️";
}

.contact-item a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #8e44ad;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 1.5em;
    }
    
    h1 {
        font-size: 2em;
    }
    
    .gallery-card {
        padding: 1.5em;
    }
    
    .gallery-card:before {
        font-size: 1.5em;
        top: 1em;
        right: 1em;
    }
    
    .gallery-contact {
        flex-direction: column;
        gap: 0.5em;
    }
}

/* Navigation circle styling for visibility on purple/blue gradient background */
.nav-circle-container {
    text-align: center;
    padding: 1em 0;
    margin: 1em 0;
}

.nav-circle-link {
    display: inline-block;
    margin: 0.5em 1em;
    padding: 0.7em 1.2em;
    background: rgba(255, 255, 255, 0.95);
    color: #8e44ad !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05em;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.nav-circle-link:hover {
    background: rgba(52, 152, 219, 0.95);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.nav-circle-link .fa-solid {
    margin-right: 0.3em;
    font-size: 1.1em;
}
