/* CSS Variables für das beige Farbschema */
:root {
    --primary-beige: #D4B8A3;
    --secondary-beige: #E8D5C4;
    --dark-beige: #B8956A;
    --light-beige: #F5F0E8;
    --warm-white: #FEFDFB;
    --dark-brown: #2D2D2D;
    --accent-gold: #D4A574;
    --text-dark: #3A3A3A;
    --text-light: #666666;
}

/* Reset und Grundstile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif;
    background-color: var(--warm-white);
    color: var(--text-dark);
    line-height: 1.47059;
    overflow-x: hidden;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -0.022em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(254, 253, 251, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 160px;
    height: 160px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-brown);
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: var(--dark-beige);
    background: rgba(212, 165, 116, 0.1);
    transform: translateY(-1px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dark-beige);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
    width: 100%;
}

.nav-menu a:focus {
    outline: 2px solid var(--dark-beige);
    outline-offset: 4px;
    border-radius: 4px;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.burger:focus {
    outline: 2px solid var(--dark-beige);
    outline-offset: 2px;
    background-color: rgba(212, 165, 116, 0.1);
}

.burger div {
    width: 25px;
    height: 3px;
    background: var(--dark-brown);
    margin: 3px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-beige) 0%, var(--secondary-beige) 100%);
    position: relative;
    overflow: hidden;
}

/* Falling Chickpeas Animation */
.chickpeas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.chickpea {
    position: absolute;
    width: 25px;
    height: 25px;
    background-image: url('./chickpea.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #D4A574;
    border-radius: 50%;
    opacity: 1;
    border: 1px solid #B8956A;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Individual chickpea animations - Links und Rechts konzentriert */
.chickpea-1 {
    left: 5%;
    animation: fall-rotate 4s linear infinite;
    animation-delay: 0s;
}

.chickpea-2 {
    left: 95%;
    animation: fall-rotate 4.5s linear infinite;
    animation-delay: 0.5s;
}

.chickpea-3 {
    left: 8%;
    animation: fall-rotate 5s linear infinite;
    animation-delay: 1s;
}

.chickpea-4 {
    left: 92%;
    animation: fall-rotate 4.2s linear infinite;
    animation-delay: 1.5s;
}

.chickpea-5 {
    left: 2%;
    animation: fall-rotate 4.8s linear infinite;
    animation-delay: 2s;
}

.chickpea-6 {
    left: 98%;
    animation: fall-rotate 4.3s linear infinite;
    animation-delay: 2.5s;
}

.chickpea-7 {
    left: 12%;
    animation: fall-rotate 4.6s linear infinite;
    animation-delay: 3s;
}

.chickpea-8 {
    left: 88%;
    animation: fall-rotate 4.4s linear infinite;
    animation-delay: 3.5s;
}

.chickpea-9 {
    left: 3%;
    animation: fall-rotate 4.7s linear infinite;
    animation-delay: 4s;
}

.chickpea-10 {
    left: 97%;
    animation: fall-rotate 4.1s linear infinite;
    animation-delay: 4.5s;
}

.chickpea-11 {
    left: 10%;
    animation: fall-rotate 4.9s linear infinite;
    animation-delay: 5s;
}

.chickpea-12 {
    left: 90%;
    animation: fall-rotate 4.35s linear infinite;
    animation-delay: 5.5s;
}

@keyframes fall-rotate {
    0% {
        top: -30px;
        transform: rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        top: calc(100vh + 30px);
        transform: rotate(360deg);
        opacity: 0;
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 980px;
    padding: 0 40px;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-logo-img {
    width: clamp(400px, 50vw, 500px);
    height: clamp(400px, 50vw, 500px);
    margin: 0 auto;
    animation: float 3s ease-in-out infinite;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: 19px;
    font-weight: 600;
    color: var(--dark-beige);
    margin-bottom: 4px;
    letter-spacing: 0.012em;
    line-height: 1.21053;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
    margin-top: 27px;
    margin-bottom: 0;
    max-width: 734px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description p {
    font-size: clamp(18px, 3vw, 24px);
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: -0.011em;
    color: var(--text-dark);
    margin-bottom: 0.8em;
    text-align: center;
    animation: fadeInUp 0.8s ease calc(0.4s + var(--delay, 0s)) both;
}

.hero-description p:nth-child(1) { --delay: 0s; }
.hero-description p:nth-child(2) { --delay: 0.1s; }
.hero-description p:nth-child(3) { --delay: 0.2s; }



/* Section Styles */
.section-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-brown);
    position: relative;
    letter-spacing: -0.003em;
    line-height: 1.08349;
}

.section-title::after {
    display: none;
}

/* Concept Section */
.concept-section {
    padding: 100px 0 120px;
    background: var(--warm-white);
    position: relative;
}

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

.concept-card {
    background: var(--light-beige);
    padding: 40px 32px 48px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    border: 0.5px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 4px 16px rgba(180, 149, 106, 0.04);
    position: relative;
    overflow: hidden;
}

.concept-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.concept-card:hover::before {
    opacity: 1;
}

.concept-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(180, 149, 106, 0.08);
    border-color: rgba(212, 165, 116, 0.3);
}

.concept-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--dark-beige) 0%, var(--accent-gold) 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(180, 149, 106, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.concept-card h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.16667;
    letter-spacing: 0.009em;
    margin-bottom: 8px;
    color: var(--dark-brown);
}

.concept-card p {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
}

/* History Section */
.history-section {
    padding: 100px 0 120px;
    background: var(--light-beige);
    position: relative;
}

.history-section::before {
    display: none;
}

.history-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.history-text {
    padding: 0;
}

.history-story p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

.history-story strong {
    color: var(--dark-beige);
    font-weight: 600;
}



/* Location Section */
.location-section {
    padding: 100px 0 120px;
    background: var(--warm-white);
    position: relative;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-brown);
}

.location-address {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.address-link {
    color: var(--dark-beige);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.address-link:hover {
    color: var(--dark-brown);
    transform: translateY(-1px);
}

.address-link::after {
    content: '📍';
    margin-left: 8px;
    font-size: 1rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.address-link:hover::after,
.address-link:focus::after {
    opacity: 1;
}

.address-link:focus {
    outline: 2px solid var(--dark-beige);
    outline-offset: 4px;
    border-radius: 4px;
}

.location-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-dot {
    width: 12px;
    height: 12px;
    background: var(--dark-beige);
    border-radius: 50%;
    display: inline-block;
}

.location-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.location-highlight {
    background: linear-gradient(135deg, var(--light-beige) 0%, var(--secondary-beige) 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--dark-beige);
    box-shadow: 0 15px 30px rgba(180, 149, 106, 0.2);
    position: relative;
}

.location-highlight h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.location-highlight p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.location-marker {
    width: 20px;
    height: 20px;
    background: var(--dark-beige);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}

.location-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--warm-white);
    border-radius: 50%;
}

/* Location Map Styling */
.map-link {
    display: block;
    position: relative;
    text-decoration: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.map-link:hover {
    transform: scale(1.02);
}

.location-map {
    width: 100%;
    height: auto;
    max-width: 320px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(180, 149, 106, 0.3);
    transition: all 0.3s ease;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 45, 45, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
}

.map-link:hover .map-overlay {
    opacity: 1;
}

.map-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.map-text {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.map-link:hover .location-map,
.map-link:focus .location-map {
    box-shadow: 0 12px 35px rgba(180, 149, 106, 0.4);
}

.map-link:focus {
    outline: 2px solid var(--dark-beige);
    outline-offset: 4px;
}

.map-link:focus .map-overlay {
    opacity: 1;
}

/* Contact Section */
.contact-section {
    padding: 100px 0 120px;
    background: var(--light-beige);
    position: relative;
}

.contact-section::before {
    display: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-brown);
}

.contact-item a {
    color: var(--dark-beige);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

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

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

/* Social Media Section */
.social-media {
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--light-beige) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--secondary-beige);
    box-shadow: 0 10px 30px rgba(180, 149, 106, 0.1);
    position: relative;
    overflow: hidden;
}

.social-media::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

.social-media h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-brown);
    text-align: center;
    position: relative;
    z-index: 2;
}

.social-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--warm-white);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(180, 149, 106, 0.1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(180, 149, 106, 0.25);
}

.instagram-link:hover {
    border-color: #E4405F;
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.05) 0%, rgba(247, 119, 55, 0.05) 100%);
}

.tiktok-link:hover {
    border-color: #FF0050;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(255, 0, 80, 0.05) 100%);
}

.social-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--warm-white);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(180, 149, 106, 0.2);
    transition: all 0.3s ease;
    border: 3px solid var(--secondary-beige);
}

.social-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.social-link:hover .social-logo {
    transform: scale(1.1) rotate(5deg);
}

.social-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.social-platform {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--dark-brown);
    margin-bottom: 0.2rem;
}

.social-handle {
    font-size: 1rem;
    color: var(--dark-beige);
    font-weight: 600;
}

.social-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.2rem;
}

.social-arrow {
    font-size: 1.5rem;
    color: var(--dark-beige);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.social-link:hover .social-arrow {
    transform: translateX(5px);
    color: var(--dark-brown);
}

.instagram-link:hover .social-icon {
    border-color: #E4405F;
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.3);
}

.tiktok-link:hover .social-icon {
    border-color: #FF0050;
    box-shadow: 0 8px 25px rgba(255, 0, 80, 0.3);
}

/* Footer */
.footer {
    background: var(--dark-brown);
    color: var(--light-beige);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--light-beige);
    margin-bottom: 0.5rem;
    display: block;
}

.footer-logo p {
    color: var(--secondary-beige);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--secondary-beige);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--light-beige);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-beige);
    color: var(--secondary-beige);
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-25px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gentleGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 165, 116, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(212, 165, 116, 0.2);
    }
}

@keyframes subtleScale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .concept-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .hero-logo-img {
        width: clamp(350px, 60vw, 450px);
        height: clamp(350px, 60vw, 450px);
    }
    
    .history-content,
    .location-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .concept-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .concept-card {
        padding: 3rem 2rem;
    }
    
    .social-links {
        gap: 1.2rem;
    }
    
    .social-link {
        padding: 1.8rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .logo img {
        width: 100px;
        height: 100px;
    }
    
    .burger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(254, 253, 251, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        border-left: 1px solid rgba(212, 165, 116, 0.2);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin-bottom: 2.5rem;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        font-weight: 600;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .concept-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .concept-card {
        padding: 2.5rem 2rem;
        margin: 0 10px;
    }
    
    .social-media {
        padding: 2.5rem 2rem;
    }
    
    .social-link {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
    }
    
    .social-logo {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo img {
        width: 80px;
        height: 80px;
    }
    
    .hero-logo-img {
        width: clamp(280px, 80vw, 350px);
        height: clamp(280px, 80vw, 350px);
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .concept-section,
    .history-section,
    .location-section,
    .contact-section {
        padding: clamp(3rem, 8vh, 6rem) 0;
    }
    
    .concept-card {
        padding: 2rem 1.5rem;
        margin: 0 5px;
    }
    
    .concept-icon-circle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .social-media {
        padding: 2rem 1.5rem;
    }
    
    .social-link {
        padding: 1.2rem;
        gap: 0.8rem;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-logo {
        width: 30px;
        height: 30px;
    }
    
    .social-platform {
        font-size: 1.1rem;
    }
    
    .social-handle {
        font-size: 0.9rem;
    }
    
    .location-map {
        max-width: 250px;
    }
}

/* Legal Pages Styling */
.legal-page {
    background: var(--warm-white);
    padding-top: 44px;
    padding-bottom: 100px;
    min-height: calc(100vh - 200px);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 40px 60px;
}

.legal-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-brown);
    letter-spacing: -0.003em;
    line-height: 1.2;
}

.legal-section {
    margin-bottom: 48px;
    padding: 0 0 24px 0;
    border-bottom: 1px solid rgba(212, 165, 116, 0.15);
}

.legal-section:last-of-type {
    border-bottom: none;
    margin-bottom: 60px;
}

.legal-section h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.27273;
    letter-spacing: 0.009em;
    margin-bottom: 20px;
    color: var(--dark-brown);
    padding-top: 8px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: -0.011em;
    color: var(--text-dark);
    margin-bottom: 16px;
    max-width: none;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-link {
    color: var(--dark-beige);
    text-decoration: none;
    transition: color 0.1s ease-in-out;
}

.legal-link:hover,
.legal-link:focus {
    color: var(--dark-brown);
    text-decoration: underline;
}

.back-to-home {
    margin-top: 60px;
    margin-bottom: 40px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 165, 116, 0.15);
}

.back-link {
    display: inline-block;
    padding: 14px 28px;
    background: var(--light-beige);
    color: var(--dark-brown);
    text-decoration: none;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.011em;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    border: 0.5px solid rgba(212, 165, 116, 0.2);
}

.back-link:hover,
.back-link:focus {
    background: var(--secondary-beige);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(180, 149, 106, 0.1);
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-page {
        padding-bottom: 80px;
    }
    
    .legal-content {
        padding: 30px 20px 40px;
    }
    
    .legal-title {
        font-size: clamp(24px, 6vw, 32px);
        margin-bottom: 40px;
    }
    
    .legal-section {
        margin-bottom: 36px;
        padding-bottom: 20px;
    }
    
    .legal-section h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .legal-section p {
        font-size: 15px;
        line-height: 1.53333;
        margin-bottom: 14px;
    }
    
    .back-to-home {
        margin-top: 40px;
        margin-bottom: 30px;
        padding-top: 24px;
    }
    
    .back-link {
        padding: 12px 24px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .legal-page {
        padding-bottom: 60px;
    }
    
    .legal-content {
        padding: 20px 16px 30px;
    }
    
    .legal-title {
        font-size: 22px;
        margin-bottom: 32px;
    }
    
    .legal-section {
        margin-bottom: 28px;
        padding-bottom: 16px;
    }
    
    .legal-section h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .legal-section p {
        font-size: 14px;
        line-height: 1.57143;
        margin-bottom: 12px;
    }
    
    .back-to-home {
        margin-top: 30px;
        margin-bottom: 20px;
    }
}

/* Additional Styling for Privacy Policy */
.legal-subtitle {
    text-align: center;
    font-size: 19px;
    font-weight: 500;
    color: var(--dark-beige);
    margin-bottom: 40px;
    font-style: italic;
}

.contact-details {
    background: var(--light-beige);
    padding: 20px 24px;
    border-radius: 12px;
    margin: 16px 0;
    border: 0.5px solid rgba(212, 165, 116, 0.2);
}

.contact-details p {
    margin-bottom: 0 !important;
    font-size: 15px;
    line-height: 1.6;
}

.legal-list {
    margin: 16px 0;
    padding-left: 0;
    list-style: none;
}

.legal-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-dark);
}

.legal-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--dark-beige);
    font-weight: bold;
    font-size: 18px;
}

/* Responsive adjustments for additional elements */
@media (max-width: 768px) {
    .legal-subtitle {
        font-size: 17px;
        margin-bottom: 32px;
    }
    
    .contact-details {
        padding: 16px 20px;
        margin: 12px 0;
    }
    
    .contact-details p {
        font-size: 14px;
    }
    
    .legal-list li {
        font-size: 15px;
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .legal-subtitle {
        font-size: 16px;
        margin-bottom: 28px;
    }
    
    .contact-details {
        padding: 14px 16px;
    }
    
    .contact-details p {
        font-size: 13px;
    }
    
    .legal-list li {
        font-size: 14px;
        padding-left: 18px;
        margin-bottom: 6px;
    }
}