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

:root {
    --primary-red: #ce4f2b;
    --secondary-red: #b84426;
    --terracotta: #e6734f;
    --light-beige: #F5E6D3;
    --cream: #FFF8F0;
    --dark-red: #a03d22;
    --golden: #D2691E;
    --text-primary: #3D2914;
    --text-secondary: #6B4E3D;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-beige) 100%);
    color: var(--text-primary);
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' /%3E%3C/svg%3E");
}


.main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.hero-section {
    text-align: center;
    position: relative;
    max-width: 800px;
    width: 100%;
}

.abstract-pattern {
    position: absolute;
    pointer-events: none;
    animation: floatPattern 20s ease-in-out infinite;
}

.pattern-1 {
    top: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.pattern-2 {
    bottom: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    animation-delay: 10s;
}

@keyframes floatPattern {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.content-wrapper {
    position: relative;
    z-index: 20;
}

.main-title {
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: var(--text-secondary);
    position: relative;
}

.title-line {
    display: block;
    font-family: "Allura", cursive;
    font-style: normal;
    font-size: clamp(3.2rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.title-word {
    display: inline-block;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.title-word:nth-child(1) {
    animation-delay: 0.3s;
    margin-right: 0.5rem;
}

.brewing-word {
    color: var(--text-secondary);
    animation-delay: 0.6s;
    position: relative;
}

.at-word {
    display: block;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.9s forwards;
    margin: 1rem 0;
    color: var(--text-secondary);
}

.logo-main-container {
    margin: 2rem 0 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

.logo-main {
    width: 500px;
    max-width: 90vw;
    height: auto;
}


.tagline {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.8s forwards;
}

.location {
    font-family: 'Bitter', serif;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--golden);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.2s forwards;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    opacity: 0;
    animation: fadeIn 1s ease-out 2.1s forwards;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--terracotta), transparent);
}

.divider-icon {
    margin: 0 1rem;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.8s forwards;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-red);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    z-index: -1;
}

.social-link:hover {
    color: var(--text-primary);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(206, 79, 43, 0.3);
}

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

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    text-align: center;
    z-index: 100;
    background: linear-gradient(to top, rgba(255, 248, 240, 0.95), transparent);
}

.footer-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    opacity: 0;
    animation: fadeIn 1s ease-out 2s forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .title-line {
        font-size: clamp(2.5rem, 9vw, 3.5rem);
    }
    
    .at-word {
        font-size: clamp(1.2rem, 2vw, 1.5rem);
    }
    
    .logo-main {
        width: 350px;
    }
    
    .abstract-pattern {
        display: none;
    }
    
    .social-links {
        gap: 1.5rem;
    }
    
    .divider-line {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 1rem;
    }
    
    .logo-main {
        width: 280px;
    }
    
}