/*
Theme Name: Frost Bar & Grille
Theme URI: https://frostbarandgrille.com
Author: Frost Bar Team
Author URI: https://frostbarandgrille.com
Description: Custom theme for Frost Bar & Grille featuring the signature frost rail design with ice-blue effects and rustic elements
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: frost-bar
Tags: restaurant, bar, one-page

This theme is designed specifically for Frost Bar & Grille in Middlefield, Ohio.
*/

:root {
    --frost-blue: #00d4ff;
    --deep-blue: #003d5c;
    --ice-glow: #4df3ff;
    --wood-brown: #3d2817;
    --warm-tan: #d4a574;
    --cream: #f5f1e8;
    --charcoal: #1a1a1a;
    --amber: #ff6b35;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Archivo', sans-serif;
    background: var(--charcoal);
    color: var(--cream);
    overflow-x: hidden;
}

/* Animated frost particles background */
.frost-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, var(--frost-blue) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-particle 15s infinite ease-in-out;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-100vh) translateX(50px) scale(1.5);
        opacity: 0.6;
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--frost-blue);
    box-shadow: 0 4px 30px rgba(0, 212, 255, 0.2);
}

.logo {
    font-family: 'Russo One', sans-serif;
    font-size: 1.8rem;
    color: var(--frost-blue);
    text-shadow: 0 0 20px var(--ice-glow),
                 0 0 40px var(--frost-blue);
    letter-spacing: 2px;
    text-decoration: none;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--frost-blue);
    transition: width 0.3s;
    box-shadow: 0 0 10px var(--frost-blue);
}

nav a:hover::after {
    width: 100%;
}

.nav-facebook-link {
    color: var(--frost-blue);
    font-size: 1.5rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.nav-facebook-link:hover {
    color: var(--ice-glow);
    transform: translateY(-3px);
}

.nav-facebook-link::after {
    display: none;
}

.nav-facebook-link svg {
    width: 24px;
    height: 24px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 5% 4rem;
    background: linear-gradient(135deg, 
        var(--charcoal) 0%, 
        var(--wood-brown) 50%, 
        var(--deep-blue) 100%);
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.9;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    animation: slideInLeft 1s ease-out;
}

.frost-word {
    color: var(--frost-blue);
    text-shadow: 0 0 30px var(--ice-glow),
                 0 0 60px var(--frost-blue),
                 0 0 90px var(--deep-blue);
    display: inline-block;
    animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.5);
    }
}

.hero-text p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--warm-tan);
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease-out 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: slideInLeft 1s ease-out 0.4s backwards;
}

.btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    letter-spacing: 1px;
    border: 2px solid;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 180px;
}

.btn-primary {
    background: var(--frost-blue);
    color: var(--charcoal);
    border-color: var(--frost-blue);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
    background: var(--ice-glow);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border-color: var(--amber);
}

.btn-secondary:hover {
    background: var(--amber);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.hero-image {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.frost-rail-showcase {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--frost-blue);
    box-shadow: 0 10px 50px rgba(0, 212, 255, 0.3),
                inset 0 0 30px rgba(0, 212, 255, 0.1);
}

.frost-rail-showcase img {
    width: 100%;
    height: auto;
    display: block;
}

.frost-rail-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(0, 212, 255, 0.3) 50%,
        transparent 70%
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Feature Cards Section */
.features {
    padding: 6rem 5%;
    background: var(--wood-brown);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--deep-blue) 0%, transparent 100%);
    pointer-events: none;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--warm-tan);
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    padding: 2.5rem;
    border: 2px solid rgba(0, 212, 255, 0.2);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--frost-blue), var(--amber), var(--frost-blue));
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--frost-blue);
}

.feature-card p {
    line-height: 1.6;
    color: var(--cream);
}

/* Menu Preview Section */
.menu-preview {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--wood-brown) 100%);
    position: relative;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.4s;
}

.menu-item:hover {
    transform: scale(1.05);
}

.menu-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(0, 0, 0, 0.5) 50%,
        transparent 100%);
    padding: 2rem;
    transform: translateY(60px);
    transition: transform 0.4s;
}

.menu-item:hover .menu-item-overlay {
    transform: translateY(0);
}

.menu-item h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--frost-blue);
}

.menu-item p {
    color: var(--cream);
    line-height: 1.4;
}

/* Gallery Section */
.gallery {
    padding: 6rem 5%;
    background: var(--deep-blue);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    padding: 6rem 5%;
    background: var(--wood-brown);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    background: rgba(26, 26, 26, 0.8);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--frost-blue);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
}

.contact-info h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--frost-blue);
}

.info-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--frost-blue);
    min-width: 30px;
}

.info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--warm-tan);
}

.info-text p {
    line-height: 1.6;
}

.info-text a {
    color: var(--frost-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.info-text a:hover {
    color: var(--ice-glow);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--frost-blue);
    height: 500px;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Footer */
footer {
    background: var(--charcoal);
    padding: 3rem 5%;
    text-align: center;
    border-top: 2px solid var(--frost-blue);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--frost-blue);
    font-size: 2rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--ice-glow);
    transform: translateY(-5px);
}

footer p {
    color: var(--warm-tan);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--frost-blue);
    font-size: 2rem;
    cursor: pointer;
}

/* WordPress specific styles */
.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 968px) {
    nav ul {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}
