/* ============================================
   DRINC Coffee Bar - Shared Styles
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --warm-brown: #4a3728;
    --cream: #f5f0e8;
    --coffee: #6f4e37;
    --gold: #c9a227;
    --dark: #2c2c2c;
    --light-brown: #d4c4b0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--cream);
    color: var(--dark);
    line-height: 1.6;
}

/* ============================================
   Navigation
   ============================================ */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(74, 55, 40, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   Hero Section (home page)
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(44, 44, 44, 0.7), rgba(44, 44, 44, 0.7)), url('images/interior.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--cream);
    padding: 100px 30px 50px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo {
    max-width: 270px;
    width: 65%;
    height: auto;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease;
}

.hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.hero-feature span {
    font-size: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button:hover {
    background: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial {
    margin-top: 40px;
    animation: fadeInUp 1s ease 0.8s both;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--cream);
    opacity: 0.9;
    transition: opacity 0.5s ease;
    min-height: 1.5em;
}

.testimonial-text.fade {
    opacity: 0;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Page Hero Banner (subpages)
   ============================================ */

.page-hero {
    padding: 140px 30px 80px;
    text-align: center;
    background: linear-gradient(rgba(44, 44, 44, 0.7), rgba(44, 44, 44, 0.7)), url('images/interior.jpg');
    background-size: cover;
    background-position: center;
    color: var(--cream);
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* ============================================
   Reviews Section
   ============================================ */

.reviews {
    background: var(--warm-brown);
    padding: 30px;
}

.reviews-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.review-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--cream);
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.review-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.review-source {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.review-stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-score {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 5px;
}

.review-badge.tripadvisor .review-stars {
    color: #00aa6c;
}

.review-badge.facebook .review-stars {
    color: #1877f2;
}

/* ============================================
   Section Titles
   ============================================ */

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--warm-brown);
}

/* ============================================
   About Section / Cards
   ============================================ */

.about {
    padding: 100px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.about-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--warm-brown);
}

.about-card p {
    color: #666;
    font-size: 0.95rem;
}

.about-card-bg {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.about-card-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

.about-card-bg .about-icon,
.about-card-bg h3,
.about-card-bg p {
    position: relative;
    z-index: 1;
}

.about-story {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.about-story-bg {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 50px 40px;
    border-radius: 15px;
    overflow: hidden;
}

.about-story-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.88);
    z-index: 0;
}

.about-story-bg p,
.about-story-bg br {
    position: relative;
    z-index: 1;
}

/* ============================================
   Teaser Cards (home page)
   ============================================ */

.teasers {
    padding: 100px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.teaser-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: var(--dark);
    display: block;
}

.teaser-card:hover {
    transform: translateY(-10px);
}

.teaser-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.teaser-card-body {
    padding: 30px;
}

.teaser-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--warm-brown);
}

.teaser-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.teaser-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Gallery Preview (home page) */
.gallery-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-preview img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

/* ============================================
   Menu Section
   ============================================ */

.menu-preview {
    background: var(--warm-brown);
    color: var(--cream);
    padding: 100px 30px;
}

.menu-preview .section-title {
    color: var(--cream);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
}

.menu-item-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.menu-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.menu-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ============================================
   Gallery Section
   ============================================ */

.gallery {
    padding: 100px 30px;
    background: var(--cream);
}

.gallery .section-title {
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   Location / Visit Section
   ============================================ */

.location {
    padding: 100px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--warm-brown);
    margin-bottom: 30px;
}

.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.location-detail span {
    font-size: 1.5rem;
}

.location-detail p {
    font-size: 1rem;
    color: #555;
}

.location-detail strong {
    color: var(--warm-brown);
    display: block;
    margin-bottom: 5px;
}

.map-container {
    border-radius: 15px;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.nearby-info {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.nearby-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--warm-brown);
    margin-bottom: 15px;
}

.nearby-info p {
    color: #666;
    font-size: 0.95rem;
}

/* ============================================
   Social / Connect Section
   ============================================ */

.social {
    background: linear-gradient(135deg, var(--coffee) 0%, var(--warm-brown) 100%);
    color: var(--cream);
    padding: 80px 30px;
    text-align: center;
}

.social h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cream);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: var(--dark);
}

.social-link span {
    font-size: 1.5rem;
}

/* ============================================
   Contact Form
   ============================================ */

.contact-section {
    padding: 100px 30px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--warm-brown);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--warm-brown);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--light-brown);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--cream);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    height: 140px;
    resize: vertical;
}

.form-submit {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--warm-brown);
    color: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-message.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.form-message.error {
    background: #fbe9e7;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.contact-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--warm-brown);
    margin-bottom: 25px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-detail-item span {
    font-size: 1.5rem;
}

.contact-detail-item p {
    font-size: 1rem;
    color: #555;
}

.contact-detail-item strong {
    color: var(--warm-brown);
    display: block;
    margin-bottom: 5px;
}

.contact-social {
    margin-top: 30px;
}

.contact-social h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--warm-brown);
    margin-bottom: 15px;
}

.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-social-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--coffee);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 10px 16px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-social-links a:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateX(5px);
}

.contact-social-links a span {
    font-size: 1.3rem;
}

.contact-social-links a svg {
    width: 20px;
    height: 20px;
    fill: var(--coffee);
    flex-shrink: 0;
    transition: fill 0.3s ease;
}

.contact-social-links a:hover svg {
    fill: var(--dark);
}

/* ============================================
   What's On / Events
   ============================================ */

.events-section {
    padding: 100px 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.events-placeholder {
    background: white;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto;
}

.events-placeholder span {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.events-placeholder h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--warm-brown);
    margin-bottom: 15px;
}

.events-placeholder p {
    color: #666;
    font-size: 0.95rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.event-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.event-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--warm-brown);
    margin-bottom: 10px;
}

.event-card .event-date {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.event-card p {
    color: #666;
    font-size: 0.95rem;
}

.events-intro {
    color: #666;
    font-size: 1rem;
    max-width: 600px;
    margin: -30px auto 40px;
}

.events-month {
    margin-bottom: 50px;
    text-align: left;
}

.events-month:last-child {
    margin-bottom: 0;
}

.month-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--warm-brown);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    margin-bottom: 25px;
}

.events-month .events-grid {
    margin-top: 0;
}

/* ============================================
   Text Menu (menu page)
   ============================================ */

.menu-text {
    padding: 80px 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-text-note {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 50px;
    font-style: italic;
}

.menu-text-note strong {
    color: var(--warm-brown);
}

.menu-category {
    margin-bottom: 50px;
}

.menu-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--warm-brown);
    margin-bottom: 8px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}

.menu-category .menu-cat-note {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    margin-bottom: 20px;
}

.menu-text-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.menu-text-item:last-child {
    border-bottom: none;
}

.menu-text-item-info {
    flex: 1;
    padding-right: 20px;
}

.menu-text-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 3px;
}

.menu-text-item h4 .vegan-badge {
    display: inline-block;
    background: #4caf50;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 3px;
    letter-spacing: 1px;
    text-transform: uppercase;
    vertical-align: middle;
    margin-left: 8px;
}

.menu-text-item .item-desc {
    font-size: 0.85rem;
    color: #888;
}

.menu-text-item .item-price {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--warm-brown);
    white-space: nowrap;
}

.menu-text-item .item-add {
    font-size: 0.8rem;
    color: #999;
    font-style: italic;
    margin-top: 3px;
}

/* Private Hire & Vouchers */
.highlight-section {
    padding: 80px 30px;
    background: var(--warm-brown);
    color: var(--cream);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-card span {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.highlight-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.highlight-card p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.7;
}

/* ============================================
   Footer
   ============================================ */

footer {
    background: var(--dark);
    color: var(--cream);
    padding: 50px 30px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-info {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    text-decoration: none;
    transition: background 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: rgba(255,255,255,0.9);
    transition: fill 0.3s ease;
}

.footer-social a:hover svg {
    fill: var(--dark);
}

.footer-credit {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    opacity: 0.5;
}

.footer-credit a {
    color: inherit;
    text-decoration: underline;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1000px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }

    .hero-logo {
        max-width: 225px;
    }

    .hero-features {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(74, 55, 40, 0.98);
        padding: 20px 30px;
        gap: 0;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .hamburger {
        display: flex;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .page-hero {
        padding: 120px 20px 60px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .teaser-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }
}

/* Floating Call Button (mobile) */
.float-call {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--coffee);
    color: #fff;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(111, 78, 55, 0.5);
    animation: pulse-call 2s infinite;
    text-decoration: none;
}

.float-call svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

@keyframes pulse-call {
    0% { box-shadow: 0 4px 20px rgba(111, 78, 55, 0.5); }
    50% { box-shadow: 0 4px 30px rgba(111, 78, 55, 0.8), 0 0 0 8px rgba(111, 78, 55, 0.15); }
    100% { box-shadow: 0 4px 20px rgba(111, 78, 55, 0.5); }
}

@media (max-width: 768px) {
    .float-call { display: flex; }
}
