/*
Theme Name: Dance With Glen Theme
Author: Jeff Killian
Author URI: marketretriever.com
Description: Dance with Glen Raleigh Houston
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/




/* Dance With Glen - Custom Styles 
   Note: Most styling is handled by Tailwind CSS utility classes in the HTML.
   This file contains specific overrides and custom effects.
*/

/* Smooth Scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom Text Shadow matching the mockup's elegance */
.mockup-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Button Hover Animation */
.btn-hover-effect {
    transition: all 0.3s ease;
}

.btn-hover-effect:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Ensure full height on mobile 
   and clean selection colors 
*/
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: #cba052; /* glen-gold */
    color: white;
}



.top-contact-bar {
    /* This background color matches a standard dark navigation bar */
    background-color: #000000; 
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 10px 40px; /* Adjusts the 'breathability' on the sides */
    width: 100%;
    box-sizing: border-box;
}

.contact-wrapper {
    display: flex;
    justify-content: space-between; /* This pushes one left and one right */
    align-items: center;
    max-width: 1400px; /* Optional: keeps text from going too wide on huge monitors */
    margin: 0 auto;
}

.contact-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    opacity: 0.7; /* Simple, elegant hover effect */
}

/* Mobile Responsive: Stack them in the center for smaller screens */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .top-contact-bar {
        padding: 10px 15px;
    }
}