/* Lola la Chela - Cerveceria Artesanal Styles */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #FDF6E3;
}

.dark ::-webkit-scrollbar-track {
    background: #0f281e;
}

::-webkit-scrollbar-thumb {
    background: #D97706;
    border-radius: 5px;
}

/* Base Styles */
:root {
    --primary: #D97706;
    --background-light: #FDF6E3;
    --background-dark: #0f281e;
    --surface-light: #EEE8D5;
    --surface-dark: #153326;
    --text-dark: #F0F0F0;
    --text-light: #2A363B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Mono', monospace;
    line-height: 1.6;
    transition: all 0.3s ease;
    position: relative;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem;
}

.age-modal.hidden {
    display: none !important;
}

.age-modal-content {
    background-color: var(--background-light);
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--primary);
    animation: modalFadeIn 0.5s ease-out;
    position: relative;
}

.dark .age-modal-content {
    background-color: var(--background-dark);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.age-modal-logo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.age-modal-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

.age-modal-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.2;
}

.dark .age-modal-title {
    color: var(--text-dark);
}

.age-modal-text {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    line-height: 1.4;
}

.age-modal-question {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 1.5rem 0;
    color: var(--primary);
}

.age-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-direction: column;
}

.age-button {
    width: 100%;
    padding: 1rem 1.5rem;
    font-family: 'Space Mono', monospace;
    font-weight: bold;
    font-size: 0.95rem;
    border: 2px solid;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    -webkit-tap-highlight-color: transparent;
}

.age-button-yes {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.age-button-yes:hover,
.age-button-yes:active {
    background-color: #b45309;
    border-color: #b45309;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(217, 119, 6, 0.3);
}

.age-button-no {
    background-color: transparent;
    color: var(--text-light);
    border-color: #78716c;
}

.dark .age-button-no {
    color: var(--text-dark);
    border-color: #a8a29e;
}

.age-button-no:hover,
.age-button-no:active {
    background-color: #78716c;
    color: white;
    border-color: #78716c;
    transform: translateY(-2px);
}

.age-modal-disclaimer {
    font-size: 0.7rem;
    opacity: 0.7;
    font-style: italic;
    line-height: 1.4;
}

@media (min-width: 481px) {
    .age-modal-content {
        padding: 3rem 2rem;
    }
    
    .age-modal-logo img {
        width: 120px;
        height: 120px;
    }
    
    .age-modal-title {
        font-size: 1.875rem;
    }
    
    .age-modal-text {
        font-size: 1rem;
    }
    
    .age-modal-question {
        font-size: 1.25rem;
    }
    
    .age-modal-buttons {
        flex-direction: row;
    }
    
    .age-button {
        flex: 1;
        min-width: 140px;
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .age-modal {
        padding: 0.5rem;
    }
    
    .age-modal-content {
        padding: 2rem 1.5rem;
        border-width: 2px;
    }
    
    .age-modal-title {
        font-size: 1.5rem;
    }
    
    .age-modal-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .age-button {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
}

/* Image Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease-out;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background-color: rgba(217, 119, 6, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background-color: var(--primary);
    transform: rotate(90deg) scale(1.1);
}

.lightbox-close .material-icons {
    color: white;
    font-size: 28px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(217, 119, 6, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-nav:hover {
    background-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav .material-icons {
    color: white;
    font-size: 32px;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox-caption {
    margin-top: 1.5rem;
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    padding: 0 1rem;
}

.lightbox-counter {
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    text-align: center;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-close .material-icons {
        font-size: 24px;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-nav .material-icons {
        font-size: 28px;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .lightbox-caption {
        font-size: 1rem;
    }
}

/* Light theme */
body.light {
    background-color: var(--background-light);
    color: var(--text-light);
}

/* Dark theme */
body.dark {
    background-color: var(--background-dark);
    color: var(--text-dark);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(253, 246, 227, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(217, 119, 6, 0.2);
    transition: all 0.3s ease;
}

.dark .navbar {
    background: rgba(15, 40, 30, 0.9);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    overflow: hidden;
    background: white;
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    font-weight: bold;
    font-size: 1.125rem;
    letter-spacing: -0.025em;
}

.logo-text-desktop {
    display: none;
}

@media (min-width: 640px) {
    .logo-text-desktop {
        display: block;
    }
}

.logo-text .bracket {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: inherit;
    font-weight: bold;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.theme-toggle {
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.theme-toggle:hover {
    background-color: var(--surface-light);
}

.dark .theme-toggle:hover {
    background-color: var(--surface-dark);
}

.material-icons {
    color: var(--primary);
    font-size: 24px;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

/* Header */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.1;
    pointer-events: none;
}

.dark .hero-bg {
    opacity: 0.2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 64rem;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.hero-logo img {
    width: 640px;
    height: 640px;
    object-fit: contain;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)) sepia(0.2);
}a

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #78716c;
    margin-bottom: 2rem;
    font-style: italic;
}

.dark .hero-subtitle {
    color: #a8a29e;
}

.cta-button {
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 2rem;
    border: 2px solid var(--primary);
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #b45309;
    box-shadow: 0 10px 15px -3px rgba(217, 119, 6, 0.3);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: var(--surface-light);
}

.dark .section-alt {
    background-color: var(--surface-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    color: var(--primary);
    font-weight: bold;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #57534e;
    margin-top: 1rem;
}

.dark .section-subtitle {
    color: #a8a29e;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Cards */
.card {
    background-color: var(--background-light);
    border: 1px solid #d6d3d1;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.dark .card {
    background-color: var(--background-dark);
    border-color: #57534e;
}

.card:hover {
    box-shadow: 0 10px 15px -3px rgba(217, 119, 6, 0.2);
}

.card-image {
    height: 192px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.badge {
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.25rem 0.5rem;
    background-color: rgba(217, 119, 6, 0.1);
    color: var(--primary);
    border-radius: 0.25rem;
}

.card-description {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.card-footer {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: bold;
    font-family: 'Space Mono', monospace;
    border-top: 1px solid #e7e5e4;
    padding-top: 1rem;
}

.dark .card-footer {
    border-color: #57534e;
}

/* Special Cards */
.feature-card {
    padding: 1.5rem;
    border: 1px solid #d6d3d1;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.dark .feature-card {
    border-color: #57534e;
}

.feature-card:hover {
    border-color: var(--primary);
}

.feature-card .material-icons {
    font-size: 2.5rem;
    color: #a8a29e;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.feature-card:hover .material-icons {
    color: var(--primary);
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #d6d3d1;
    aspect-ratio: 1 / 1;
    position: relative;
}

.dark .gallery-item {
    border-color: #57534e;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    cursor: pointer;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    font-family: 'Space Mono', monospace;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item .material-icons {
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.contact-item p {
    opacity: 0.8;
}

/* WhatsApp Link */
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    margin-left: -0.75rem;
}

.whatsapp-link:hover {
    opacity: 1;
    background-color: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.whatsapp-link:hover .whatsapp-icon {
    color: #25D366;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    color: var(--primary);
}

.form-input {
    background: transparent;
    border: none;
    border-bottom: 2px solid #a8a29e;
    padding: 0.5rem 0;
    font-family: inherit;
    color: inherit;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-input::placeholder {
    color: #78716c;
}

.form-button {
    width: 100%;
    background-color: #1c1917;
    color: white;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dark .form-button {
    background-color: #e7e5e4;
    color: #1c1917;
}

.form-button:hover {
    background-color: var(--primary);
    color: white;
}

/* Footer */
.footer {
    background-color: #1c1917;
    color: #a8a29e;
    padding: 3rem 0 2rem;
    border-top: 1px solid #57534e;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #57534e;
}

.footer-logo {
    font-weight: bold;
    color: #e7e5e4;
}

.footer-text {
    font-size: 0.875rem;
    font-family: 'Space Mono', monospace;
    text-align: right;
}

.footer-text p:last-child {
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.heart {
    color: #ef4444;
}

/* Footer Warnings */
.footer-warnings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.warning-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background-color: rgba(217, 119, 6, 0.1);
    border-left: 3px solid var(--primary);
    border-radius: 0.375rem;
}

.warning-icon {
    color: var(--primary);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.warning-item p {
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 0;
    color: #e7e5e4;
    font-weight: 500;
}

.footer-disclaimer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #57534e;
}

.footer-disclaimer p {
    font-size: 0.75rem;
    line-height: 1.5;
    color: #a8a29e;
    margin: 0;
}

.footer-disclaimer a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-disclaimer a:hover {
    color: #b45309;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-logo img {
        width: 200px;
        height: 200px;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-text {
        text-align: center;
    }
    
    .footer-warnings {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .warning-item {
        padding: 0.875rem;
    }
    
    .warning-item p {
        font-size: 0.7rem;
    }
    
    .gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-item:first-child {
        grid-column: span 1;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

.block {
    display: block;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}
/* Additional Styles for New Structure */

/* About Section */
.about-image {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 4px solid #1c1917;
}

.dark .about-image {
    border-color: #e7e5e4;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.3) grayscale(0.5);
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(217, 119, 6, 0.2);
    mix-blend-mode: overlay;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote {
    margin-top: 1.5rem;
    padding: 1rem;
    border-left: 4px solid var(--primary);
    background-color: var(--background-light);
    font-style: italic;
    font-size: 0.875rem;
}

.dark .quote {
    background-color: var(--background-dark);
}

/* Featured Beer Styles */
.featured-beer {
    background: linear-gradient(135deg, #1c1917 0%, #000000 100%);
    color: white;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .featured-beer {
        flex-direction: row;
    }
    
    .featured-beer .card-image {
        width: 50%;
    }
    
    .featured-beer .card-content {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.featured-badge {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-badge span {
    background-color: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    font-weight: bold;
    transform: rotate(-15deg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid white;
}

.featured-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: var(--surface-light);
}

.dark .social-link:hover {
    background-color: var(--surface-dark);
}

.social-link .material-icons {
    color: var(--primary);
    font-size: 24px;
}

.social-link .fab {
    color: var(--primary);
    font-size: 24px;
}

.social-link:hover .fab {
    color: var(--primary);
}

.dark-icon {
    display: block;
}

.light-icon {
    display: none;
}

.dark .dark-icon {
    display: none;
}

.dark .light-icon {
    display: block;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--background-light);
        border-top: 1px solid rgba(217, 119, 6, 0.2);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .dark .nav-menu {
        background: var(--background-dark);
    }
    
    .nav-menu.hidden {
        display: none;
    }
    
    .about-image {
        order: 2;
    }
    
    .about-content {
        order: 1;
    }
    
    .featured-beer {
        grid-column: span 1;
    }
}

/* Desktop - Always show nav menu */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
    }
    
    .mobile-menu-btn {
        display: none !important;
    }
    
    .nav-menu.hidden {
        display: flex !important;
    }
}

/* Smooth Transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Focus States for Accessibility */
.nav-link:focus,
.theme-toggle:focus,
.mobile-menu-btn:focus,
.cta-button:focus,
.form-input:focus,
.form-button:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .theme-toggle,
    .mobile-menu-btn,
    .cta-button,
    .contact-form {
        display: none;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .section {
        page-break-inside: avoid;
    }
}