/*
Theme Name: Cone Queen
Theme URI: https://conequeenhull.com
Author: Cone Queen Team
Author URI: https://conequeenhull.com
Description: A vibrant, dynamic WordPress theme for Cone Queen - Home of the Pizza Cone. Features easy customization, social media integration, and stunning animations.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cone-queen
Tags: food, restaurant, one-page, custom-colors, featured-images, custom-menu
*/

@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Righteous&family=Outfit:wght@300;400;500;600;700&display=swap');

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

:root {
    --navy: #1a3a52;
    --cream: #f8f4e8;
    --gold: #ffd700;
    --pink: #ff69b4;
    --blue: #4a90e2;
    --chocolate: #5c3317;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy) 0%, #2d5570 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { transform: scale(1) translate(-25%, -25%); opacity: 0.5; }
    50% { transform: scale(1.2) translate(-25%, -25%); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-text {
    font-family: 'Righteous', cursive;
    font-size: clamp(4rem, 12vw, 8rem);
    color: white;
    text-shadow: 4px 4px 0 var(--pink), 8px 8px 0 var(--gold);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    animation: slideIn 1s ease-out 0.3s both;
}

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

.crown {
    display: inline-block;
    font-size: 0.8em;
    color: var(--gold);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.tagline {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--gold);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cta-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    animation: fadeIn 1s ease-out 0.9s both;
}

.cta-btn {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn span {
    position: relative;
    z-index: 1;
}

.cta-primary {
    background: var(--pink);
    color: white;
    box-shadow: 0 6px 20px rgba(255,105,180,0.4);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,105,180,0.6);
}

.cta-secondary {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 6px 20px rgba(255,215,0,0.4);
}

.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.6);
}

/* Decorative elements */
.cone-decoration {
    position: absolute;
    font-size: 4rem;
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cone-1 { top: 10%; left: 5%; animation-delay: 0s; }
.cone-2 { top: 70%; right: 10%; animation-delay: -7s; }
.cone-3 { bottom: 15%; left: 15%; animation-delay: -14s; }

/* About Section */
.about {
    padding: 8rem 2rem;
    background: white;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--navy), transparent);
    opacity: 0.05;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Righteous', cursive;
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--navy);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: linear-gradient(90deg, var(--pink), var(--gold));
    border-radius: 3px;
}

.section-description {
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin: 1rem auto 0;
    color: #666;
    opacity: 0.9;
}

.gallery .section-description,
.featured-events .section-description {
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #555;
}

/* Shop Front Section */
.shop-front {
    padding: 6rem 2rem;
    background: white;
}

/* Featured Events Section */
.featured-events {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #fff8dc 0%, var(--cream) 100%);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.event-banner {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    cursor: pointer;
    background: white;
}

.event-banner:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0,0,0,0.3);
}

.event-banner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.event-banner:hover img {
    transform: scale(1.05);
}

.event-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.event-banner:hover .event-banner-overlay {
    transform: translateY(0);
}

.event-banner-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Righteous', cursive;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Ribbon/Badge for events */
.event-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--pink);
    color: white;
    padding: 10px 40px;
    font-weight: 700;
    font-size: 0.9rem;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}

/* Shop Front Section */
.shop-front {
    padding: 6rem 2rem;
    background: white;
}

.shop-front img {
    transition: transform 0.5s ease;
}

.shop-front:hover img {
    transform: scale(1.02);
}

.shop-front-image {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.shop-front-image img {
    width: 100%;
    display: block;
}

/* Gallery Section */
.gallery {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--cream) 0%, #fff8dc 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-overlay h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Menu Section */
.menu {
    padding: 8rem 2rem;
    background: var(--navy);
    color: white;
    position: relative;
    overflow: hidden;
}

.menu::before {
    content: '🍕';
    position: absolute;
    font-size: 20rem;
    opacity: 0.03;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
}

/* Yellow Menu Board Style */
.menu.yellow-board-style {
    background: linear-gradient(135deg, #f4d03f 0%, #e8c547 100%);
    color: #2c2c2c;
}

.menu.yellow-board-style::before {
    content: '';
}

.menu.yellow-board-style .section-title {
    color: #2c2c2c;
    font-family: 'Righteous', cursive;
    font-size: clamp(3rem, 8vw, 5rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 4px solid #2c2c2c;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.menu.yellow-board-style .menu-intro {
    color: #444;
    font-size: 0.95rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.menu.yellow-board-style .menu-grid {
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.menu.yellow-board-style .menu-category {
    background: transparent;
    border: none;
    padding: 2rem 1rem;
}

.menu.yellow-board-style .category-title {
    color: #2c2c2c;
    font-size: 2rem;
    text-transform: uppercase;
    border-bottom: 3px solid #2c2c2c;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
}

.menu.yellow-board-style .menu-item {
    border-bottom: 1px solid rgba(0,0,0,0.2);
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.menu.yellow-board-style .menu-item:last-child {
    border-bottom: none;
}

.menu.yellow-board-style .item-content {
    flex: 1;
}

.menu.yellow-board-style .item-name {
    color: #2c2c2c;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.menu.yellow-board-style .item-description {
    color: #444;
    font-size: 0.9rem;
    line-height: 1.4;
}

.menu.yellow-board-style .item-price {
    color: #2c2c2c;
    font-size: 1.3rem;
    font-weight: 700;
    white-space: nowrap;
    padding-left: 1rem;
}

.menu.yellow-board-style .vegan-badge {
    background: #22c55e;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-weight: 700;
    margin-right: 0.5rem;
}

.menu.yellow-board-style .special-badge {
    background: #ff1493;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-weight: 700;
    margin-right: 0.5rem;
    animation: pulse-special 2s ease-in-out infinite;
}

@keyframes pulse-special {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Modern Dark Style (Original) */
.menu.modern-dark-style {
    /* Uses existing dark navy styles */
}

/* Menu Image Display */
.menu img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.menu img:hover {
    transform: scale(1.02);
}

.menu-intro {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.menu-intro strong {
    color: var(--gold);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.menu-category {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.menu-category:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    background: rgba(255,255,255,0.08);
}

.category-title {
    font-family: 'Righteous', cursive;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255,215,0,0.3);
}

.menu-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.menu-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.item-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vegan-badge {
    background: #22c55e;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-weight: 700;
}

.item-description {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

/* Specials Section */
.specials {
    padding: 8rem 2rem;
    background: white;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.special-card {
    background: linear-gradient(135deg, var(--pink) 0%, #ff1493 100%);
    border-radius: 30px;
    padding: 3rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(255,105,180,0.3);
    transition: transform 0.3s ease;
}

.special-card:nth-child(2) {
    background: linear-gradient(135deg, var(--gold) 0%, #ffa500 100%);
}

.special-card:hover {
    transform: translateY(-10px);
}

.special-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.special-title {
    font-family: 'Permanent Marker', cursive;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.special-price {
    font-size: 3rem;
    font-weight: 700;
    margin: 1rem 0;
    position: relative;
    z-index: 1;
}

.special-description {
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.special-items {
    list-style: none;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.special-items li {
    padding: 0.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.special-items li:first-child {
    border-top: none;
}

/* Contact Section */
.contact {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, #2d5570 100%);
    color: white;
    text-align: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
}

.contact-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 20px;
    min-width: 250px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.contact-icon i {
    display: block;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.contact-item p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

/* Social Media Feed Widget */
.social-feed-widget {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 4rem;
    border: 2px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-feed-widget iframe {
    max-width: 100%;
    margin: 0 auto;
    display: block;
    border-radius: 10px;
}

.social-feed-title {
    font-family: 'Righteous', cursive;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-align: center;
}

.social-feed-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

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

.social-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--navy);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

.social-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-btn-facebook {
    background: #1877f2;
    color: white;
}

.social-btn-facebook:hover {
    background: #0c5ab8;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255,215,0,0.5);
}

.social-btn-insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Facebook CTA Button */
.facebook-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #1877f2 0%, #0c5ab8 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.4);
    transition: all 0.3s ease;
    border: 3px solid rgba(255,255,255,0.2);
}

.facebook-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(24, 119, 242, 0.6);
    background: linear-gradient(135deg, #2987ff 0%, #1566c9 100%);
}

.facebook-cta-btn .fb-icon {
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
    display: flex;
    align-items: center;
}

.facebook-cta-btn .fb-icon i {
    display: block;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Footer */
.footer {
    padding: 2rem;
    background: #0d1f2d;
    color: rgba(255,255,255,0.6);
    text-align: center;
}

.footer-logo {
    font-family: 'Righteous', cursive;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }

    .logo-text {
        font-size: 3.5rem;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

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

    .about-text {
        font-size: 1.1rem;
    }

    .menu-grid,
    .specials-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }
}

/* Scroll animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* WordPress specific */
.wp-block-image img {
    height: auto;
}

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

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

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
