/*
Theme Name: ATL Tequila Vibe
Theme URI: https://github.com/DaBigHomie/ATL-Tequila-Vibe---July-10.git
Author: Dame Luthas
Author URI: https://dameluthas.com
Description: A custom WordPress theme for ATL Tequila Week, migrated from a React application. This theme features a cinematic, editorial aesthetic for a premium user experience.
Version: 1.5.4
License: Proprietary
Text Domain: atl-tequila-vibe
Tags: custom-background, custom-logo, custom-menu, featured-images, block-styles, one-column
*/

/*
================================================================================
|   Project:        ATL Tequila Vibe
|   File:           style.css
|   Description:    Primary stylesheet for the ATL Tequila Vibe WordPress theme.
|   Theme:          Tequila Vibe 2023
|   Version:        1.5.4
|   Git Repo:       https://github.com/DaBigHomie/ATL-Tquila-Vibe---July-10.git
|
| ------------------------------------------------------------------------------
|
|   Author:         Dame Luthas (@dameluthas)
|   Company:        Damieus
|   Contact:        dameluthas@gmail.com
|   Website:        https://dameluthas.com
|
| ------------------------------------------------------------------------------
|
|   Created:        2023-10-26
|   Last Modified:  2025-07-10
|
|   License:        Proprietary
|   @package         Core
|
| ------------------------------------------------------------------------------
|
|   Dependencies:
|   - Google Fonts (Playfair Display, Bebas Neue).
|
| ------------------------------------------------------------------------------
|
|   Change Log:
|   - 2025-07-10 - v1.5.3 - form style updates for spacing and font
|   - 2025-07-10 - v1.5.3 - testing content and style updates for form and layout.
|   - 2025-07-10 - v1.5.2 - Corrected WPForms styling with more specific CSS.
|   - 2025-07-10 - v1.5.1 - Fixed and styled the contact form integration.
|   - 2025-07-10 - v1.5.0 - Completely removed all event-related functionality.
|   - 2025-07-10 - v1.4.2 - Integrated WPForms shortcode for contact form.
|   - 2025-07-10 - v1.4.1 - Fixed fatal error by correcting invalid PHP in file headers.
|   - 2025-07-10 - v1.4.0 - Removed events section, updated CTAs, and added security enhancements.
|   - 2023-10-27 - v1.1.0 - Updated hero section styles and button branding.
|   - 2023-10-26 - v1.0.0 - Initial creation of the stylesheet.
|
| ------------------------------------------------------------------------------
|
|   Notes:
|   - This stylesheet is migrated from a React application and uses a utility-class
|     approach for styling, similar to Tailwind CSS.
|
================================================================================
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Bebas+Neue&display=swap');

/* --- Root Variables from index.css (Corrected HSL syntax) --- */
:root {
    /* Core Brand Colors */
    --background: 20, 14%, 4%; /* Rich black */
    --foreground: 0, 0%, 98%; /* Crisp white */
    --sand: 36, 33%, 86%; /* Neutral sand alternative */

    /* Brand Identity */
    --primary: 87, 36%, 35%; /* Vibrant agave green */
    --primary-foreground: 0, 0%, 98%;
    --primary-glow: 87, 36%, 55%; /* Lighter agave for glows */
    
    --accent: 43, 100%, 51%; /* Muted gold */
    --accent-foreground: 20, 14%, 4%;
    --accent-glow: 43, 100%, 71%; /* Lighter gold for effects */

    /* UI System Colors */
    --card: 20, 20%, 8%; /* Slightly lighter than background */
    --card-foreground: 0, 0%, 95%;
    --card-border: 20, 20%, 15%; /* Subtle card borders */

    --popover: 20, 20%, 8%;
    --popover-foreground: 0, 0%, 95%;

    --secondary: 20, 20%, 12%; /* Darker secondary */
    --secondary-foreground: 0, 0%, 90%;

    --muted: 20, 15%, 20%; /* Muted elements */
    --muted-foreground: 0, 0%, 70%;

    --destructive: 0, 84%, 60%; /* Error states */
    --destructive-foreground: 0, 0%, 98%;

    --border: 20, 20%, 15%; /* Subtle borders */
    --input: 20, 20%, 12%; /* Form inputs */
    --ring: 87, 36%, 35%; /* Focus rings use primary */

    /* Premium Effects */
    --gradient-primary: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow)));
    --gradient-gold: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--accent-glow)));
    --gradient-hero: linear-gradient(135deg, hsla(var(--background), 0.8), hsla(var(--background), 0.6));
    
    --shadow-elegant: 0 20px 40px -12px hsla(var(--primary), 0.25);
    --shadow-glow: 0 0 40px hsla(var(--primary-glow), 0.3);
    --shadow-gold-glow: 0 0 30px hsla(var(--accent-glow), 0.4);
    
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-hero: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    --radius: 0.75rem;
}

/* --- Base Styles --- */
* {
    border-color: hsl(var(--border));
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: 'Playfair Display', serif;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

a {
    color: inherit;
    text-decoration: none;
}

input, button {
    font-family: inherit;
}

/* --- Custom Typography Classes --- */
.text-display {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.25rem; /* 36px */
}
@media (min-width: 768px) {
    .text-display {
        font-size: 3.75rem; /* 60px */
    }
}
@media (min-width: 1024px) {
    .text-display {
        font-size: 4.5rem; /* 72px */
    }
}
.about-headline {
    font-size: 2.5rem;
}
@media (min-width: 768px) {
    .about-headline {
        font-size: 4.5rem;
    }
}


.text-meta {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.875rem; /* 14px */
}
@media (min-width: 768px) {
    .text-meta {
        font-size: 1rem; /* 16px */
    }
}

.text-accent-caps {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: hsl(var(--accent));
    font-size: 0.875rem; /* 14px */
}

.hero-subtitle {
    font-size: 20px !important;
}

/* --- Custom Component Classes --- */
.hero-overlay {
    background: var(--gradient-hero);
}

.logo-glow {
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 40px hsla(var(--primary-glow), 0.6));
    transition: var(--transition-smooth);
}
.logo-glow:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 25px rgba(255, 255, 255, 1)) drop-shadow(0 0 50px hsla(var(--accent-glow), 0.8));
}

.btn-premium {
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    transition: var(--transition-smooth);
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    font-weight: 700;
}
.btn-premium:hover {
    background: var(--gradient-gold);
    box-shadow: var(--shadow-elegant);
    transform: translateY(-2px);
}
.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.btn-premium:hover::before {
    left: 100%;
}

.card-premium {
    background-color: hsla(var(--card), 0.5);
    backdrop-filter: blur(4px);
    border: 1px solid hsl(var(--card-border));
    box-shadow: var(--shadow-elegant);
    transition: var(--transition-smooth);
}
.card-premium:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-glow);
}

/* --- Animations --- */
.animate-fade-up { animation: fadeUp 0.8s ease-out forwards; }
.animate-slow-zoom { animation: slowZoom 20s ease-in-out infinite alternate; }
.animate-pulse-slow { animation: pulseSlow 8s ease-in-out infinite; }
.animate-bounce { animation: bounce 1s infinite; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slowZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.1); }
}
@keyframes pulseSlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
@keyframes pulse {
  50% { opacity: .5; }
}


/* --- Utility Classes (Manual Recreation of Tailwind) --- */
/* Layout & Container */
.container { width: 100%; margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; }
@media (min-width: 1400px) { .container { max-width: 1400px; } }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-md { max-width: 28rem; }

/* Flex & Grid */
.flex { display: flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.space-x-1 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.25rem; }
.space-x-4 > :not([hidden]) ~ :not([hidden]) { margin-left: 1rem; }
.space-x-8 > :not([hidden]) ~ :not([hidden]) { margin-left: 2rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:flex { display: flex; }
  .md\:justify-center { justify-content: center; }
  .md\:inline-block { display: inline-block; }
  .md\:w-auto { width: auto; }
  .md\:space-y-0 > :not([hidden]) ~ :not([hidden]) { margin-top: 0; }
  .md\:space-x-6 > :not([hidden]) ~ :not([hidden]) { margin-left: 1.5rem; }
}
@media (min-width: 1280px) {
  .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Sizing */
.w-full { width: 100%; }
.w-24 { width: 6rem; }
.h-1 { height: 0.25rem; }
.min-h-screen { min-height: 100vh; }
.w-64 { width: 16rem; }
.h-auto { height: auto; }
.w-6 { width: 1.5rem; }
.h-10 { height: 2.5rem; }
.w-1 { width: 0.25rem; }
.h-3 { height: 0.75rem; }
.w-4 { width: 1rem; }
.h-4 { height: 1rem; }
.h-64 { height: 16rem; }
.aspect-square { aspect-ratio: 1 / 1; }
@media (min-width: 768px) { .md\:w-80 { width: 20rem; } }

/* Spacing */
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-24 { margin-top: 6rem; }
.p-12 { padding: 3rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.pt-12 { padding-top: 3rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.mt-16 { margin-top: 4rem; }
.p-8 { padding: 2rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.mt-2 { margin-top: 0.5rem; }
@media (min-width: 768px) { .md\:p-16 { padding: 4rem; } }

/* Typography */
.text-center { text-align: center; }
.text-foreground { color: hsl(var(--foreground)); }
.text-primary { color: hsl(var(--primary)); }
.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.25; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.font-bold { font-weight: 700; }
.placeholder\:text-muted-foreground::placeholder { color: hsl(var(--muted-foreground)); }
.text-accent { color: hsl(var(--accent)); }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.tracking-wider { letter-spacing: 0.05em; }
.font-medium { font-weight: 500; }
@media (min-width: 768px) { .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; } }

/* Backgrounds & Borders */
.bg-background { background-color: hsl(var(--background)); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-from), var(--tw-gradient-to)); }
.from-background\/90 { --tw-gradient-from: hsla(var(--background), 0.9); --tw-gradient-to: hsla(var(--background), 0); }
.to-background\/60 { --tw-gradient-to: hsla(var(--background), 0.6); }
.bg-card\/20 { background-color: hsla(var(--card), 0.2); }
.bg-card\/30 { background-color: hsla(var(--card), 0.3); }
.border-t { border-top-width: 1px; }
.border-border { border-color: hsl(var(--border)); }
.border { border-width: 1px; }
.rounded-lg { border-radius: var(--radius); }
.rounded-2xl { border-radius: 1rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-t-xl { border-top-left-radius: 0.75rem; border-top-right-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }
.border-2 { border-width: 2px; }
.bg-cover { background-size: cover; }
.bg-center { background-position: center; }
.bg-no-repeat { background-repeat: no-repeat; }
.bg-transparent { background-color: transparent; }
.backdrop-blur-md { backdrop-filter: blur(12px); }

/* Effects & Transitions */
.overflow-hidden { overflow: hidden; }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 300ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.transform { transform: var(--tw-transform, none); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.opacity-0 { opacity: 0; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.group:hover .group-hover\:text-primary:hover { color: hsl(var(--primary)); }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.hover\:text-primary:hover { color: hsl(var(--primary)); }
.hover\:text-accent:hover { color: hsl(var(--accent)); }
.hover\:bg-foreground:hover { background-color: hsl(var(--foreground)); }
.hover\:text-background:hover { color: hsl(var(--background)); }

/* Positioning */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-8 { bottom: 2rem; }
.left-1\/2 { left: 50%; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Interactivity */
.cursor-pointer { cursor: pointer; }
.block { display: block; }
.hidden { display: none; }

/* Additional styles for nav scroll */
.nav-scrolled {
    background-color: hsla(var(--background), 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

/* WordPress Core Styles */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

/* WPForms Customizations */
div.wpforms-container-full .wpforms-form .wpforms-field-label {
    color: hsl(43, 100%, 51%) !important;
    font-family: 'Bebas Neue', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    font-size: 1.2rem !important;
    font-weight: bold !important;
    display: block !important;
    margin-bottom: 0.5rem !important;
}

div.wpforms-container-full .wpforms-form .wpforms-field-sublabel {
    color: hsl(43, 100%, 51%) !important;
    font-size: 0.8rem !important;
    margin-top: 0.25rem !important;
    font-family: 'Bebas Neue', serif !important;
}

div.wpforms-container-full .wpforms-form .wpforms-field {
    margin-bottom: 1.5rem !important;
    padding: 0 !important;
}

div.wpforms-container-full .wpforms-form .wpforms-field-row {
    display: flex !important;
    justify-content: space-between !important;
    gap: 0 !important;
}

div.wpforms-container-full .wpforms-form .wpforms-field-row-part {
    flex-basis: 48% !important;
}

div.wpforms-container-full .wpforms-form input[type="text"],
div.wpforms-container-full .wpforms-form input[type="email"],
div.wpforms-container-full .wpforms-form textarea {
    background-color: hsla(var(--input), 0.8) !important;
    border: 1px solid hsl(var(--border)) !important;
    color: hsl(var(--foreground)) !important;
    border-radius: var(--radius) !important;
    padding: 1rem !important;
    width: 100% !important;
    font-family: 'Bebas Neue', serif !important;
    font-size: 1rem !important;
}

div.wpforms-container-full .wpforms-form input::placeholder,
div.wpforms-container-full .wpforms-form textarea::placeholder {
    color: white !important;
}

div.wpforms-container-full .wpforms-form .wpforms-submit-container {
    text-align: right !important;
    padding-top: 1rem !important;
    border: 0 !important;
}

div.wpforms-container-full .wpforms-form .wpforms-submit.btn-premium,
div.wpforms-container-full .wpforms-form .wpforms-submit {
    background: hsl(87.2, 36%, 34.9%) !important;
    color: hsl(var(--primary-foreground)) !important;
    width: 100% !important;
    border: none !important;
    padding: 1rem 2rem !important;
    font-family: 'Bebas Neue', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2em !important;
    font-size: 1rem !important;
    border-radius: var(--radius) !important;
    cursor: pointer !important;
    transition: var(--transition-smooth) !important;
}

div.wpforms-container-full .wpforms-form .wpforms-submit.btn-premium:hover {
    background: var(--gradient-gold) !important;
    box-shadow: var(--shadow-elegant) !important;
    transform: translateY(-2px) !important;
}

div.wpforms-container-full .wpforms-form .wpforms-submit.btn-premium::before,
div.wpforms-container-full .wpforms-form .wpforms-submit.btn-premium::after {
    display: none !important;
}