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

:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --accent-color: #F4E4BC;
    --dark-color: #2C1810;
    --light-color: #FFF8F0;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --gold: #DAA520;
    --coffee-light: #CD853F;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-soft: 0 2px 10px rgba(139, 69, 19, 0.1);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--coffee-light) 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark-color);
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
    box-shadow: var(--shadow-soft);
}

.section-title::before {
    content: '☕';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    opacity: 0.3;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
    height: 80px;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(139, 69, 19, 0.2);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-gold);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Add scroll offset for fixed navbar */
section[id] {
    scroll-margin-top: 120px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(139, 69, 19, 0.2) 100%),
        url('assets/coffee-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(218, 165, 32, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 50%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.3s both;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 15px 35px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.8rem;
    animation: bounce 2s infinite;
    z-index: 3;
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition);
}

.hero-scroll:hover {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
}

/* About Section */
.about {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, var(--light-color) 0%, rgba(244, 228, 188, 0.7) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(139, 69, 19, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(218, 165, 32, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content {
    padding: 2rem 0;
}

.about-text {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
}

.about-text::first-letter {
    font-size: 3.5rem;
    float: left;
    line-height: 1;
    margin: 0.1rem 0.5rem 0 0;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--gold);
}

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

.feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: var(--accent-color);
    padding: 0.8rem;
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
}

.feature span {
    font-weight: 600;
    color: var(--dark-color);
}

.about-image {
    text-align: center;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.about-image img:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Menu Section */
.menu {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F4E4BC' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.tab-btn {
    padding: 15px 30px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition);
    z-index: -1;
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.tab-btn.active::before,
.tab-btn:hover::before {
    left: 0;
}

.tab-content {
    display: none;
}

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

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.menu-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
}

.menu-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.menu-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    position: relative;
}

.menu-item h3::after {
    content: '☕';
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0.2;
    font-size: 1.2rem;
}

.menu-item p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-style: italic;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gallery Section */
.gallery {
    padding: 120px 0;
    background: var(--light-color);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 69, 19, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(218, 165, 32, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    height: 280px;
    background: var(--accent-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

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

/* Contact Section */
.contact {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, var(--white) 0%, rgba(244, 228, 188, 0.3) 100%);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    padding: 2rem 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--gold);
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.info-item i {
    font-size: 1.8rem;
    color: var(--white);
    background: var(--gradient-primary);
    padding: 1rem;
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
    margin-top: 0.2rem;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.info-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: center;
    justify-content: flex-start;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

/* Contact Map Section */
.contact-map-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
    padding-top: 2rem;
}

.contact-map {
    flex: 0 0 250px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--border-radius-lg);
}

.sister-location-text {
    text-align: center;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin-top: -4rem;
    min-height: 300px;
}

/* Enhanced animations for sister location */
@keyframes twinkle {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes glow-text {
    0%, 100% {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(218, 165, 32, 0.8)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }
}

/* Ensure both contact columns have equal visual weight */
@media (min-width: 769px) {
    .contact-info {
        min-height: 600px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .contact-map-section {
        min-height: 600px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 2rem;
    }
    
    .contact-map {
        flex: 0 0 250px;
    }
    
    .sister-location-text {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 300px;
    }
}

/* Fun animations */
@keyframes gentle-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes excited-bounce {
    0%, 20%, 60%, 100% {
        transform: translateY(-8px) scale(1.03);
    }
    40% {
        transform: translateY(-15px) scale(1.05);
    }
    80% {
        transform: translateY(-10px) scale(1.04);
    }
}

@keyframes rotate-wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg) scale(1.1);
    }
    50% {
        transform: rotate(10deg) scale(1.2);
    }
    75% {
        transform: rotate(-5deg) scale(1.1);
    }
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes sparkle {
    0%, 100% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
    50% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.5);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
    50% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 15px rgba(255, 255, 255, 0.7), 0 0 25px rgba(255, 255, 255, 0.4);
    }
}

/* Specific social media platform colors */
.social-link:nth-child(1):hover {
    background: #E4405F;
}

.social-link:nth-child(2):hover {
    background: #00AF87;
}

/* Ensure both contact columns have equal visual weight */
@media (min-width: 769px) {
    .contact-info {
        min-height: 600px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .contact-map-section {
        min-height: 600px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 2rem;
    }
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-map-section {
        min-height: auto;
    }
    
    .contact-map {
        min-height: 250px;
    }
    
    .bakery-image {
        min-height: 200px;
    }
    
    .gallery-item {
        height: 250px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Footer */
.footer {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.05'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.footer-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.nomadic-credit {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
    font-style: italic;
}

.nomadic-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nomadic-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nomadic-link:hover {
    color: var(--accent-color);
    transform: translateY(-1px);
}

.nomadic-link:hover::after {
    width: 100%;
    background: var(--accent-color);
}

.sister-location {
    text-align: center;
    margin: 0.5rem 0;
}

.sister-location p {
    font-size: 0.95rem;
    color: var(--white);
    opacity: 0.9;
    margin: 0;
}

.sister-location i {
    margin-right: 0.5rem;
    color: var(--gold);
}

.sister-location strong {
    color: var(--gold);
    font-weight: 600;
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer-logo {
        gap: 0.4rem;
    }
    
    .footer-logo img {
        width: 25px;
        height: 25px;
    }
    
    .footer-logo span {
        font-size: 1rem;
    }
    
    .footer p {
        font-size: 0.8rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

.sister-location-link {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
    padding: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
    border: none;
    overflow: visible;
}

.sister-location-line {
    font-size: 1.8rem;
    line-height: 1.4;
    margin: 0.5rem 0;
    display: block;
    text-align: center;
    text-shadow: none;
    position: relative;
}

.sister-location-line:nth-child(1) {
    font-size: 1.6rem;
    opacity: 0.9;
}

.sister-location-line:nth-child(2) {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0.8rem 0;
    color: var(--gold);
}

.sister-location-line:nth-child(3) {
    font-size: 1.7rem;
    opacity: 0.9;
    color: var(--primary-color);
}

.sister-location-link:hover {
    transform: translateY(-2px);
    color: var(--gold);
}

.sister-location-link:hover .sister-location-line:nth-child(2) {
    color: var(--primary-color);
}