/* 
* Madbaren no13 - Modern Website Styles
* A single-page responsive website design
*/

/* ------------- Base Styles ------------- */
:root {
    --primary-color: #d4a017; /* Gold accent color */
    --primary-dark: #b08613;
    --secondary-color: #1a2639; /* Dark blue for background and text */
    --light-color: #f8f8f8;
    --dark-color: #222;
    --medium-gray: #767676;
    --light-gray: #f2f2f2;
    --body-font: 'Montserrat', sans-serif;
    --heading-font: 'Playfair Display', serif;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 4px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 1rem = 10px */
}

body {
    font-family: var(--body-font);
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    content-visibility: auto;
}

iframe {
    content-visibility: auto;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    outline: none;
}

button {
    cursor: pointer;
    background: none;
    border: none;
}

section {
    padding: 8rem 0;
}

.section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-family: var(--heading-font);
    font-size: 3.6rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.separator {
    width: 6rem;
    height: 0.3rem;
    background-color: var(--primary-color);
    margin: 0 auto;
}

.section-header.light h2 {
    color: var(--light-color);
}

.separator.light {
    background-color: var(--light-color);
}

.bg-light {
    background-color: var(--light-gray);
}

.bg-dark {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.bg-image {
    background-image: url('menubg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--light-color);
    position: relative;
}

.bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.bg-image .container {
    position: relative;
    z-index: 2;
}

.bg-image .section-header h2,
.bg-image .section-subtitle {
    color: var(--light-color);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--dark-color);
    font-weight: 600;
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-align: center;
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.full-width {
    width: 100%;
}

.text-center {
    text-align: center;
}

/* ------------- Header & Navigation ------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.98);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo h1 {
    font-family: var(--heading-font);
    font-size: 2.4rem;
    color: var(--secondary-color);
    margin-bottom: 0.2rem;
}

.logo p {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--secondary-color);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.cta-button {
    padding: 0.8rem 1.6rem;
}

.nav-links a.cta-button::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100;
    width: 40px;
    height: 40px;
    position: relative;
    border-radius: 0;
}

.mobile-menu-toggle i {
    font-size: 28px;
    color: #ceaf72;
    transition: transform 0.4s ease, color 0.3s ease;
}

.mobile-menu-toggle:hover i {
    transform: scale(1.15);
}

.mobile-menu-toggle.active i {
    animation: spin 0.5s ease;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(180deg); }
}

/* ------------- Hero Section ------------- */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('hero.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 38, 57, 0.7);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    text-rendering: optimizeLegibility;
}

.hero-content h2 {
    font-family: var(--heading-font);
    font-size: 5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

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

.menu-button {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--light-color);
}

.menu-button:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.primary-button {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: 2px solid var(--primary-color);
}

.primary-button:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* ------------- About & History Section ------------- */
.about-history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-history-text h3 {
    font-family: var(--heading-font);
    font-size: 2.4rem;
    color: var(--secondary-color);
    margin: 2rem 0 1.5rem;
}

.about-history-text h3:first-child {
    margin-top: 0;
}

.about-history-text p {
    margin-bottom: 1.5rem;
}

.about-history-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    aspect-ratio: attr(width) / attr(height);
}

/* ------------- About Section ------------- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 2rem;
}

.menu-cta {
    font-weight: 500;
    font-size: 1.7rem;
}

.menu-cta a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    transition: var(--transition);
}

.menu-cta a:hover {
    color: var(--primary-dark);
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    aspect-ratio: attr(width) / attr(height);
}

/* ------------- Menu Section ------------- */
.menu-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.tab-button {
    font-size: 1.6rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.tab-button:first-child {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.tab-button:last-child {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.tab-button.active {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.menu-category {
    margin-bottom: 4rem;
}

.menu-category h3 {
    font-family: var(--heading-font);
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    text-align: center;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.menu-item {
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--light-gray);
}

.menu-item h4 {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.menu-footer {
    text-align: center;
    margin-top: 3rem;
    font-style: italic;
    color: var(--medium-gray);
}

/* ------------- History Section ------------- */
.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.history-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.history-text p {
    margin-bottom: 2rem;
}

/* ------------- Location Section ------------- */
.location-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
}

.location-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 350px;
}

.location-map iframe {
    height: 100%;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    color: var(--secondary-color);
}

.location-details h3,
.location-hours h3,
.location-info-additional h3 {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(26, 38, 57, 0.1);
}

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

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    width: 2.5rem;
    text-align: center;
}

.contact-item a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.opening-hours {
    width: 100%;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed rgba(26, 38, 57, 0.1);
}

.hours-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.hours-row .day {
    font-weight: 600;
}

.hours-row .time {
    color: var(--primary-color);
    font-weight: 500;
}

/* ------------- Contact Section ------------- */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    margin-top: 2rem;
}

.contact-info {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 4rem;
    border-radius: var(--border-radius);
    height: fit-content;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
}

.contact-info-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-header h3 {
    font-family: var(--heading-font);
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-info-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.6rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-top: 0.3rem;
}

.contact-item p, .contact-item div {
    font-size: 1.6rem;
    line-height: 1.6;
}

.contact-item a {
    color: inherit;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.social-links {
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links h4 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
    color: var(--secondary-color);
}

.social-links a[aria-label="easyTable"] i,
.footer-social a[aria-label="easyTable"] i {
    color: #ceaf72;
    transform: rotate(0deg);
    transition: all 0.3s ease;
}

.social-links a[aria-label="easyTable"]:hover i,
.footer-social a[aria-label="easyTable"]:hover i {
    color: #e0c088;
    transform: rotate(15deg);
}

.contact-form-container {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 4rem;
    box-shadow: var(--box-shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    margin-bottom: 0.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-family: var(--body-font);
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(206, 175, 114, 0.2);
    outline: none;
}

/* Input med ikoner */
.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.6rem;
    z-index: 10;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.input-icon-wrapper textarea ~ i {
    top: 2.7rem;
    transform: none;
    left: 1.5rem;
}

/* Specifik styling for kommentar-ikonet i beskedfeltet */
.input-icon-wrapper i.fa-comment-alt {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    color: var(--primary-color);
    opacity: 0.7;
    z-index: 10;
    font-size: 1.6rem;
}

/* Specifik styling for beskedfeltet */
.message-wrapper {
    position: relative;
}

.message-icon {
    position: absolute;
    top: 1.8rem !important;
    left: 1.5rem !important;
    transform: none !important;
    color: var(--primary-color) !important;
    opacity: 0.7;
    z-index: 10;
}

.message-wrapper textarea:focus ~ .message-icon {
    opacity: 1;
}

.input-icon-wrapper input,
.input-icon-wrapper textarea {
    padding-left: 4.5rem;
}

.contact-form .cta-button {
    grid-column: span 2;
    margin-top: 1rem;
    justify-self: start;
    padding: 1.2rem 3rem;
}

.contact-form .cta-button i {
    margin-right: 0.8rem;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.contact-form .cta-button:hover i {
    transform: translateX(3px);
}

.form-success-message {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: rgba(0, 177, 106, 0.1);
    border-left: 4px solid #00b16a;
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.form-success-message.show {
    opacity: 1;
    height: auto;
    margin-bottom: 2rem;
}

.form-success-message i {
    font-size: 2.5rem;
    color: #00b16a;
}

.form-success-message p {
    font-size: 1.5rem;
    color: var(--secondary-color);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-info {
        padding: 3rem;
    }
    
    .contact-form-container {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .contact-form .cta-button {
        grid-column: span 1;
        width: 100%;
    }
    
    .contact-item {
        gap: 1.5rem;
    }
    
    .social-links a {
        width: 4rem;
        height: 4rem;
    }
}

/* ------------- Booking Section Redesign ------------- */
.booking-container {
    display: flex;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    min-height: 450px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.booking-image {
    flex: 1;
    position: relative;
    background-image: url('menubg.png');
    background-size: cover;
    background-position: center;
    min-height: 450px;
}

.booking-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 38, 57, 0.8), rgba(26, 38, 57, 0.4));
}

.booking-content {
    flex: 1;
    padding: 3rem;
    color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-header {
    text-align: left;
    margin-bottom: 2rem;
}

.booking-header h2 {
    color: var(--secondary-color);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.booking-header .separator {
    margin: 1.5rem 0;
    background-color: var(--primary-color);
}

.booking-description {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    color: var(--secondary-color);
}

.booking-features {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    gap: 2rem;
}

.booking-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    width: calc(50% - 1rem);
}

.booking-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
}

.booking-feature p {
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.booking-note {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.booking-btn {
    display: inline-block;
    background-color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 500;
    padding: 1.2rem 2.5rem;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.booking-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

#booking {
    padding-top: 0;
    padding-bottom: 8rem;
}

@media (max-width: 991px) {
    .booking-container {
        flex-direction: column;
        margin-top: 0;
    }
    
    .booking-image {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .booking-features {
        flex-direction: column;
    }
    
    .booking-feature {
        width: 100%;
    }
    
    .booking-content {
        padding: 2rem;
    }
    
    #booking {
        padding-top: 4rem;
    }
}

/* ------------- Footer ------------- */
footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 5rem 0 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo h3 {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.footer-logo p {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.footer-contact-info {
    margin-top: 2rem;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.4rem;
    text-transform: none;
    letter-spacing: normal;
}

.footer-contact-info i {
    color: var(--primary-color);
    font-size: 1.6rem;
    width: 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-links a {
    position: relative;
    padding-left: 1.5rem;
    transition: transform 0.3s ease;
}

.footer-links a:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
    color: var(--secondary-color);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
}

.footer-bottom a {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-bottom a:after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.footer-bottom a:hover:after {
    transform: translateX(3px);
}

.footer-credits {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.05);
}

.branduro-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.made-by {
    font-size: 1.1rem;
    opacity: 0.8;
}

.branduro-credit:hover {
    color: var(--primary-color);
}

.branduro-logo {
    height: 18px;
    width: auto;
    opacity: 0.8;
    transition: var(--transition);
}

.branduro-credit:hover .branduro-logo {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-credits {
        margin-top: 1.5rem;
    }
}

/* ------------- Scroll to Top Button ------------- */
#scrollToTop {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 4.5rem;
    height: 4.5rem;
    background-color: var(--light-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

#scrollToTop.show {
    opacity: 1;
    visibility: visible;
}

#scrollToTop:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

/* ------------- Responsive Design ------------- */
@media (max-width: 1024px) {
    html {
        font-size: 56.25%; /* 9px */
    }
    
    .about-history-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-content,
    .history-content,
    .location-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .location-map {
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .menu-items {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 2rem;
    }
    
    .footer-social {
        grid-column: span 2;
        justify-content: center;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 50%; /* 8px */
    }
    
    /* Disable parallax on mobile for better performance */
    .hero {
        background-attachment: scroll;
    }
    
    .mobile-menu-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .mobile-menu-toggle:hover {
        background-color: transparent;
    }
    
    .location-map {
        height: 250px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 280px;
        height: 100%;
        background-color: rgba(26, 38, 57, 0.95);
        padding: 6rem 0 2rem;
        flex-direction: column;
        align-items: flex-start;
        transition: all 0.4s ease;
        z-index: 90;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .nav-links li {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .nav-links a {
        display: block;
        padding: 0.8rem 2.2rem;
        font-size: 1.5rem;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-links a.cta-button {
        margin: 1.2rem 2.2rem;
        width: calc(100% - 4.4rem);
        text-align: center;
        padding: 0.8rem 1.2rem;
        color: var(--secondary-color);
    }
    
    .nav-links .language-selector {
        margin: 0.8rem 2.2rem;
    }
    
    .nav-links .current-lang {
        color: #fff;
    }
    
    .language-dropdown a {
        color: #fff !important;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-logo {
        align-items: center;
    }
    
    .footer-contact-info p {
        justify-content: center;
    }
    
    .footer-links a {
        padding-left: 0;
    }
    
    .footer-links a:before {
        display: none;
    }
    
    .footer-social {
        grid-column: auto;
        justify-content: center;
        margin-top: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 4rem;
    }
    
    .menu-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-redirect-btn {
        width: 100%;
        max-width: 400px;
        height: auto;
        min-height: 350px;
    }
    
    /* Deaktiverer parallax på mobile enheder for bedre performance */
    .bg-image {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    section {
        padding: 6rem 0;
    }
    
    .hero-content h2 {
        font-size: 3.2rem;
    }
    
    .hero-content p {
        font-size: 1.6rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .cta-button {
        width: 100%;
        max-width: 250px;
    }
    
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        background-color: transparent;
    }
    
    .mobile-menu-toggle i {
        font-size: 28px;
    }
    
    header .container {
        padding: 0.8rem 1rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
}

/* ------------- Page Hero for Sub-pages ------------- */
.page-hero {
    height: 50vh;
    min-height: 400px;
    background-image: url('menukort-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light-color);
    margin-top: 80px; /* For header space */
}

.crafters-hero {
    background-image: url('crafters-bg.jpg');
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 38, 57, 0.7);
}

.page-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.page-hero-content h1 {
    font-family: var(--heading-font);
    font-size: 5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.page-hero-content p {
    font-size: 2rem;
    margin-top: 2rem;
    font-weight: 400;
}

/* ------------- Menu & Crafters Pages ------------- */
.menu-content-full {
    margin-top: 4rem;
}

/* Menu Selector (Similar to the image) */
.menu-selector {
    margin-bottom: 4rem;
}

.menu-selector-inner {
    display: flex;
    max-width: 450px;
    margin: 0 auto;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    overflow: hidden;
}

.menu-selector-btn {
    flex: 1;
    padding: 1.5rem 2rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.8rem;
    color: var(--secondary-color);
    background-color: white;
    transition: var(--transition);
}

.menu-selector-btn.active {
    background-color: var(--secondary-color);
    color: white;
}

.menu-selector-btn:not(.active):hover {
    background-color: var(--light-gray);
}

/* Menu Tabs Navigation */
.menu-page-tabs {
    background-color: var(--light-gray);
    padding: 0;
    margin-top: 0;
    border-bottom: 1px solid #e5e5e5;
}

.menu-nav-tabs {
    display: flex;
    justify-content: center;
    gap: 2px;
    max-width: 500px;
    margin: 0 auto;
}

.menu-tab-btn {
    display: block;
    padding: 1.5rem 4rem;
    background-color: #fff;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.8rem;
    border: none;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    min-width: 150px;
    text-align: center;
    transition: var(--transition);
}

.menu-tab-btn.active {
    border-bottom: 3px solid var(--primary-color);
    background-color: var(--secondary-color);
    color: #fff;
}

.menu-tab-btn:hover:not(.active) {
    background-color: var(--light-color);
    border-bottom: 3px solid rgba(212, 160, 23, 0.3);
}

.menu-section {
    margin-bottom: 6rem;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.8rem;
    line-height: 1.8;
}

.bottle-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
    color: var(--medium-gray);
}

/* New Beer List Styling */
.beer-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.beer-list-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 3rem;
}

.beer-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.beer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.beer-logo {
    flex: 0 0 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--light-gray);
}

.beer-brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.beer-details {
    flex: 1;
}

.beer-details h4 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.beer-name {
    font-weight: normal;
    color: var(--primary-color);
}

.beer-type {
    font-size: 1.4rem;
    color: var(--medium-gray);
    line-height: 1.4;
}

.beer-category, .drinks-category {
    margin-bottom: 3rem;
}

.beer-category h3, .drinks-category h3 {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.beer-category h3::after, .drinks-category h3::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 2px;
    background-color: var(--primary-color);
}

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

.crafters-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.menu-notice {
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 4rem;
}

.menu-notice p {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

/* ------------- Responsive Adjustments for Menu/Crafters ------------- */
@media (max-width: 768px) {
    .beer-list-row {
        grid-template-columns: 1fr;
    }
    
    .beer-item {
        padding: 1.5rem;
    }
    
    .menu-nav-tabs {
        width: 100%;
    }
    
    .menu-tab-btn {
        padding: 1.2rem;
        flex: 1;
        min-width: auto;
    }
    
    .page-hero-content h1 {
        font-size: 3.6rem;
    }
    
    .page-hero {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .page-hero-content h1 {
        font-size: 3rem;
    }
    
    .page-hero-content p {
        font-size: 1.6rem;
    }
}

/* ------------- Menu Buttons Section (Index Page) ------------- */
.menu-buttons-section {
    padding: 8rem 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.8rem;
    margin-top: 1.5rem;
    color: var(--light-color);
}

.menu-subtitle, 
.crafters-subtitle,
.location-subtitle {
    color: var(--medium-gray);
}

.menu-buttons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    align-items: stretch;
}

.menu-redirect-btn {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 400px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    border-radius: 0;
    padding: 4rem 3rem;
    position: relative;
    height: 350px;
}

.menu-redirect-btn:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    background-color: white;
}

.menu-btn-icon {
    width: 6rem;
    height: 6rem;
    background-color: var(--secondary-color);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 3rem;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.menu-redirect-btn:hover .menu-btn-icon {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.menu-redirect-btn h3 {
    font-family: var(--heading-font);
    font-size: 3.2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.menu-redirect-btn p {
    color: var(--secondary-color);
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 2.5rem;
}

.menu-card-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-top: auto;
    position: relative;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.menu-card-link i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.menu-redirect-btn:hover .menu-card-link {
    color: var(--primary-color);
}

.menu-redirect-btn:hover .menu-card-link i {
    transform: translateX(5px);
}

.menu-cta-container {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.menu-cta-button {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 5rem;
    font-size: 1.8rem;
    font-weight: 500;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.menu-cta-button i {
    font-size: 1.6rem;
    transition: transform 0.3s ease;
}

.menu-cta-button:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.menu-cta-button:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .menu-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-redirect-btn {
        width: 100%;
        max-width: 400px;
        height: auto;
        min-height: 350px;
    }
    
    .menu-cta-button {
        padding: 1.2rem 2.5rem;
        font-size: 1.6rem;
    }
}

/* ------------- Language Selector ------------- */
.language-selector {
    position: relative;
    margin-left: 0;
}

.nav-links .language-selector {
    margin: 0;
    padding: 0;
}

.mobile-language {
    display: none;
}

.current-lang {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: transparent;
    border: 1px solid rgba(26, 38, 57, 0.1);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.nav-links .current-lang {
    border: none;
    padding: 0;
}

.current-lang:hover {
    background-color: rgba(26, 38, 57, 0.05);
}

.current-lang img {
    width: 20px;
    height: auto;
    margin-right: 0.5rem;
}

.current-lang span {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.current-lang i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.language-selector:hover .current-lang i {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 150px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown li {
    padding: 0;
}

.language-dropdown a {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    transition: var(--transition);
}

.language-dropdown a:hover {
    background-color: rgba(26, 38, 57, 0.05);
}

.language-dropdown a.active {
    background-color: rgba(212, 160, 23, 0.1);
}

.language-dropdown img {
    width: 20px;
    height: auto;
    margin-right: 1rem;
}

.language-dropdown span {
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.nav-links .language-dropdown a::after {
    display: none;
}

@media (max-width: 991px) {
    .mobile-language {
        display: none;
    }
}

/* Make this responsive for mobile */
@media (max-width: 768px) {
    .language-selector {
        position: relative;
    }
    
    .current-lang span, 
    .current-lang i {
        color: #fff;
    }
    
    .nav-links .language-selector .current-lang {
        padding: 0.8rem 2.2rem;
        width: 100%;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .language-dropdown {
        position: static;
        width: 100%;
        max-height: 0;
        background-color: rgba(0, 0, 0, 0.2);
        box-shadow: none;
        border-radius: 0;
        overflow: hidden;
    }
    
    .language-selector:hover .language-dropdown {
        max-height: 200px;
    }
}

/* ------------- Crafters Section ------------- */
.crafters-subtitle {
    margin-bottom: 3rem;
}

.crafters-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.beer-section {
    margin-bottom: 4rem;
}

.beer-section-title {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--secondary-color);
}

.beer-categories {
    margin-bottom: 3rem;
}

.beer-category {
    margin-bottom: 3rem;
}

.beer-category h3 {
    font-family: var(--heading-font);
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.beer-list-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.beer-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-light);
    transition: var(--transition);
}

.beer-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.beer-logo {
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beer-brand-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.beer-details {
    flex: 1;
}

.beer-details h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.beer-name {
    font-weight: 400;
    color: var(--secondary-color);
}

.beer-type {
    font-size: 1.4rem;
    color: var(--secondary-color);
    opacity: 0.8;
}

.menu-notice {
    text-align: center;
    font-style: italic;
    margin-top: 2rem;
    color: var(--medium-gray);
}

@media (max-width: 1024px) {
    .beer-list-row {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .beer-list-row {
        grid-template-columns: 1fr;
    }
    
    .beer-item {
        padding: 1.5rem;
    }
}

.untappd-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background-color: #ffcc00;
    color: #222;
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.untappd-button:hover {
    background-color: #ffdd33;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.untappd-button i {
    font-size: 2.4rem;
    color: #222;
}

/* ------------- Trustpilot Reviews Section ------------- */
.reviews-subtitle {
    color: var(--medium-gray);
    margin-bottom: 4rem;
}

.trustpilot-widget {
    max-width: 950px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.trustpilot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background-color: #f8f8f8;
    border-bottom: 1px solid #eee;
}

.trustpilot-rating {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.rating-stars {
    display: flex;
    color: #00b67a;
    font-size: 2rem;
}

.rating-text {
    display: flex;
    flex-direction: column;
}

.rating-label {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.rating-count {
    font-size: 1.4rem;
    color: var(--medium-gray);
}

.trustpilot-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #00b67a;
    font-size: 1.8rem;
    font-weight: 600;
}

.trustpilot-logo i {
    font-size: 2rem;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
}

.review-card {
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.review-stars {
    color: #00b67a;
    font-size: 1.6rem;
}

.review-verified {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #505f79;
    font-size: 1.3rem;
}

.review-verified i {
    color: #00b67a;
}

.review-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1.5rem;
    color: #505f79;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.review-author {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    color: var(--medium-gray);
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.author-name {
    font-weight: 500;
}

.trustpilot-footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #eee;
}

.trustpilot-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.6rem;
    font-weight: 600;
    color: #00b67a;
    transition: var(--transition);
}

.trustpilot-link:hover {
    color: #009f6b;
}

.trustpilot-link:hover i {
    transform: translateX(5px);
}

.trustpilot-link i {
    transition: transform 0.3s ease;
}

@media (max-width: 991px) {
    .reviews-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-slider {
        grid-template-columns: 1fr;
    }
    
    .trustpilot-header {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.input-icon-wrapper input:focus ~ i,
.input-icon-wrapper textarea:focus ~ i {
    opacity: 1;
    color: var(--primary-color);
}

.message-wrapper textarea:focus ~ .message-icon {
    opacity: 1;
}

.input-icon-wrapper input,
.input-icon-wrapper textarea {
    padding-left: 4.5rem;
}

.footer-newsletter {
    margin-bottom: 2rem;
}

.footer-newsletter h4 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-newsletter p {
    color: #ccc;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-wrapper {
    position: relative;
    display: flex;
    max-width: 300px;
}

.newsletter-input-wrapper input {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.4rem;
    padding: 1rem 4.5rem 1rem 1.5rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.newsletter-input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-input-wrapper button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background-color: var(--primary-color);
    border: none;
    color: var(--secondary-color);
    width: 4rem;
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.newsletter-input-wrapper button:hover {
    background-color: #e0c088;
}

.newsletter-input-wrapper i {
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .footer-newsletter {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .newsletter-input-wrapper {
        margin: 0 auto;
    }
}

/* Menu Lightbox Styling */
.menu-lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-lightbox.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    background-color: transparent;
    margin: auto;
    padding: 0;
    width: 95%;
    max-width: 1200px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.close-lightbox {
    position: absolute;
    top: -4rem;
    right: 0;
    color: #fff;
    font-size: 4rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: all 0.3s ease;
    opacity: 0.8;
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.close-lightbox:hover {
    color: var(--primary-color);
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.8);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.menu-tab {
    padding: 1.2rem 3rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    font-size: 1.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
}

.menu-tab.active {
    background-color: transparent;
    color: #fff;
    border-color: var(--primary-color);
}

.menu-tab:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.2);
}

.menu-images {
    position: relative;
    width: 100%;
    height: calc(90vh - 12rem);
    text-align: center;
    margin-bottom: 2rem;
}

.menu-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: none;
    margin: 0 auto;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: zoom-in;
}

.menu-image.zoomed {
    cursor: zoom-out;
    object-fit: contain;
    max-height: none;
    max-width: none;
    width: auto;
    height: auto;
}

.menu-image.active {
    display: block;
}

.lightbox-actions {
    display: none;
}

@media (max-width: 768px) {
    .close-lightbox {
        top: 1rem;
        right: 1rem;
        font-size: 3.2rem;
        width: 4.5rem;
        height: 4.5rem;
        background-color: rgba(0, 0, 0, 0.7);
    }
    
    .menu-tab {
        padding: 1rem 2rem;
        font-size: 1.5rem;
    }
    
    .menu-images {
        height: calc(90vh - 10rem);
    }
}

.mobile-swipe-indicator {
    position: absolute;
    top: 1rem;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    color: #fff;
    opacity: 0.7;
    font-size: 1.4rem;
    z-index: 5;
}

.swipe-icon {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    animation: swipeDown 1.5s infinite;
}

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

@media (max-width: 768px) {
    .mobile-swipe-indicator {
        display: flex;
    }
    
    .menu-tabs {
        margin-top: 6rem;
    }
}

@media (max-width: 768px) {
    header .container {
        padding: 1rem 1.5rem;
    }
    
    .logo h1 {
        font-size: 1.7rem;
    }
} 