/*
Theme Name: Cafe de Strip WP
Theme URI: https://example.com
Author: Cafe de Strip
Author URI: https://example.com
Description: A custom WordPress theme for Cafe de Strip - Cafe & Sportbar in Torremolinos, Spain.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: cafe-de-strip
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Bar Style - Darker, Modern, Sport Bar Aesthetic */
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --text-light: #ffffff;
    --text-dark: #0f0f1a;
    --gold: #ffd700;
    --background: #0f0f1a;
    --card-bg: #1a1a2e;
    --surface: rgba(255, 255, 255, 0.05);
    --shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 35px rgba(0, 0, 0, 0.6);
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--background);
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

/* Navigation */
.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    border-bottom: 2px solid var(--accent-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin: 0;
    text-transform: uppercase;
}

.logo p {
    font-size: 0.8rem;
    color: var(--accent-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.nav-menu a {
    color: var(--text-light);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: var(--accent-color);
    color: var(--text-light);
    box-shadow: 0 0 15px rgba(233, 69, 96, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.9) 100%),
        url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    text-align: center;
    color: var(--text-light);
}

.hero-content {
    z-index: 2;
    padding: 2rem;
}

.hero h1 {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero h2 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Oswald', sans-serif;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-light);
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--card-bg);
    border-top: 2px solid var(--accent-color);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.about > .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(233, 69, 96, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.feature p {
    color: rgba(255, 255, 255, 0.7);
}

/* Hours Section */
.hours {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--text-light);
    border-top: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

.hours h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.hours-item {
    text-align: center;
    padding: 2rem;
    background: var(--surface);
    border: 1px solid var(--accent-color);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.hours-item h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hours-item p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Menu Header */
.menu-header,
.gallery-header,
.contact-header {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    text-align: center;
    border-bottom: 2px solid var(--accent-color);
}

.menu-header h1,
.gallery-header h1,
.contact-header h1 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.menu-header p,
.gallery-header p,
.contact-header p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.kitchen-hours {
    color: var(--accent-color);
    font-weight: 600;
}

/* Menu Section */
.menu-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.96) 0%, rgba(22, 33, 62, 0.95) 100%);
}

.menu-category {
    margin-bottom: 2rem;
    padding: 1.5rem 1.75rem;
    border: 1px solid rgba(233, 69, 96, 0.35);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(26, 26, 46, 0.95) 100%);
    box-shadow: var(--shadow);
}

.menu-category h2 {
    font-size: 1.55rem;
    margin-bottom: 1rem;
    padding-bottom: 0.55rem;
    border-bottom: 2px solid rgba(233, 69, 96, 0.45);
    color: var(--accent-color);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

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

.menu-item:hover {
    transform: translateX(3px);
    border-color: rgba(233, 69, 96, 0.4);
}

.menu-item .item-name,
.page-template-page-food .menu-item .item-name,
.page-template-page-food-php .menu-item .item-name,
.page-template-page-drinks .menu-item .item-name,
.page-template-page-drinks-php .menu-item .item-name {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500 !important;
    color: var(--text-light) !important;
    letter-spacing: 0.06em !important;
    text-transform: none !important;
    font-size: 0.98rem !important;
    padding-left: 0.25rem;
    display: inline-block;
    line-height: 1.5;
}

.menu-item .item-name::before,
.page-template-page-food .menu-item .item-name::before,
.page-template-page-food-php .menu-item .item-name::before,
.page-template-page-drinks .menu-item .item-name::before,
.page-template-page-drinks-php .menu-item .item-name::before {
    content: "•";
    color: var(--accent-color);
    margin-right: 0.5rem;
    font-size: 1rem;
}

.menu-item .item-price,
.page-template-page-food .menu-item .item-price,
.page-template-page-food-php .menu-item .item-price,
.page-template-page-drinks .menu-item .item-price,
.page-template-page-drinks-php .menu-item .item-price {
    font-family: 'Oswald', sans-serif !important;
    font-weight: 700 !important;
    color: var(--accent-color) !important;
    font-size: 1rem !important;
    white-space: nowrap;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(233, 69, 96, 0.35);
    background: rgba(233, 69, 96, 0.1);
    letter-spacing: 0.04em;
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.gallery-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

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

.gallery-item,
.video-item {
    aspect-ratio: 4/3;
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(233, 69, 96, 0.3);
}

.placeholder-image,
.placeholder-video {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: rgba(255, 255, 255, 0.5);
}

.placeholder-image span,
.placeholder-video span {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.placeholder-image p,
.placeholder-video p {
    font-size: 1rem;
}

.section-title {
    margin-top: 3rem;
}

/* Instructions Section */
.instructions-section {
    padding: 4rem 0;
    background: var(--background);
}

.instructions-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.instructions {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.instruction-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(233, 69, 96, 0.3);
}

.instruction-item h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.instruction-item p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.instruction-item code {
    display: block;
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    overflow-x: auto;
    border: 1px solid rgba(233, 69, 96, 0.3);
    color: var(--accent-color);
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

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

.contact-info h2,
.contact-map h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
    min-width: 50px;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.contact-details p {
    color: rgba(255, 255, 255, 0.7);
}

.contact-details a {
    color: var(--accent-color);
}

.contact-details a:hover {
    text-decoration: underline;
}

.map-placeholder {
    background: var(--card-bg);
    padding: 3rem;
    text-align: center;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(233, 69, 96, 0.3);
}

.map-placeholder p {
    margin-bottom: 0.5rem;
}

/* Social Section */
.social-section {
    padding: 4rem 0;
    background: var(--background);
    border-top: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

.social-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.social-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(233, 69, 96, 0.3);
    transition: transform 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(233, 69, 96, 0.3);
}

.social-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.social-card h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.social-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--accent-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.social-links a {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.social-links a:hover {
    color: var(--accent-color);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: 0;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: min(100%, 320px);
        max-width: 320px;
        text-align: center;
        transition: transform 0.3s ease, opacity 0.3s ease;
        padding: 2rem 0;
        gap: 1rem;
        border-top: 2px solid var(--accent-color);
        box-shadow: var(--shadow-lg);
        z-index: 1100;
        display: flex;
        opacity: 0;
        pointer-events: none;
        transform: translateX(-100%);
        visibility: hidden;
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
        visibility: visible;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 0.85rem 1rem;
    }

    .hamburger {
        display: flex;
        z-index: 1200;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .menu-header h1,
    .gallery-header h1,
    .contact-header h1 {
        font-size: 2rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .menu-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}
