/* cafe.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #215020;
    --secondary-color: #ffffff;
    --accent-color: #8B4513;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f8f8;
    --bg-cream: #FFF8F0;
    --border-light: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section - Header'dan bağımsız tam genişlik */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-image: url('../img/ashivacafe/ashivacafebg.png');
    /*background: linear-gradient(135deg, #215020 0%, #3a7a3a 50%, #8B4513 100%);*/
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(139, 69, 19, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(33, 80, 32, 0.2) 0%, transparent 50%);
    animation: bgPulse 10s ease-in-out infinite;
}

.coffee-steam {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
}

.coffee-steam span {
    position: absolute;
    bottom: 0;
    width: 60px;
    height: 120px;
    background: linear-gradient(to top, transparent, rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    animation: steam 3s ease-in-out infinite;
}

.coffee-steam span:nth-child(1) {
    left: -20px;
    animation-delay: 0s;
}

.coffee-steam span:nth-child(2) {
    left: 0;
    animation-delay: 1s;
}

.coffee-steam span:nth-child(3) {
    left: 20px;
    animation-delay: 2s;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--secondary-color);
    animation: fadeInUp 1s ease-out;
}

.coffee-icon {
    font-size: 5rem;
    margin-bottom: 30px;
    animation: bounce 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 400;
    margin-top: 200px;
    opacity: 0.9;
    font-style: italic;
}

/* Introduction Section */
.intro-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.intro-content {
    text-align: center;
}

.lead-text {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 300;
}

.lead-text .highlight {
    color: var(--primary-color);
    font-weight: 500;
}

/* About Lounge Section */
.about-lounge {
    padding: 100px 0;
    background: var(--secondary-color);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-content h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 400;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    background: var(--bg-cream);
}

.feature-icon {
    font-size: 2rem;
}

.feature-item p {
    margin: 0;
    font-size: 1.1rem;
}

/* Lounge Card */
.lounge-card {
    width: 100%;
    height: 400px;
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.lounge-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.card-front {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--secondary-color);
}

.card-back {
    background: var(--accent-color);
    color: var(--secondary-color);
    transform: rotateY(180deg);
}

.card-front h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.card-back p {
    font-size: 1.5rem;
    font-style: italic;
}

/* What We Offer Section */
.what-we-offer {
    padding: 100px 0;
    background: var(--bg-light);
}

.what-we-offer h2 {
    text-align: center;
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--primary-color);
    margin-bottom: 60px;
    font-weight: 400;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.offer-card {
    padding: 40px;
    background: var(--secondary-color);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.offer-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.offer-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.offer-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Coffee Promise Section */
.coffee-promise {
    padding: 100px 0;
    background: var(--bg-cream);
}

.promise-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.coffee-animation {
    position: relative;
}

.cup {
    position: relative;
    width: 150px;
    height: 120px;
}

.cup-handle {
    position: absolute;
    right: -30px;
    top: 20px;
    width: 40px;
    height: 60px;
    border: 8px solid var(--accent-color);
    border-left: none;
    border-radius: 0 30px 30px 0;
}

.cup-body {
    width: 150px;
    height: 120px;
    background: var(--accent-color);
    border-radius: 0 0 70px 70px;
    position: relative;
    overflow: hidden;
}

.coffee-level {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(to bottom, #6F4E37, #3E2723);
    animation: coffeeFill 3s ease-in-out infinite;
}

.steam-container {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.steam {
    position: absolute;
    width: 20px;
    height: 60px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    animation: steamRise 3s ease-in-out infinite;
}

.steam1 {
    left: -15px;
    animation-delay: 0s;
}

.steam2 {
    left: 0;
    animation-delay: 1s;
}

.steam3 {
    left: 15px;
    animation-delay: 2s;
}

.promise-text h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 20px;
}

.promise-text p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 300;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* Location Info */
.location-info {
    padding: 80px 0;
    background: var(--secondary-color);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.location-card {
    padding: 30px;
    text-align: center;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    background: var(--bg-cream);
}

.location-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.location-card p {
    color: var(--text-light);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes steam {
    0% {
        opacity: 0;
        transform: translateY(0) scaleX(1);
    }
    50% {
        opacity: 0.5;
        transform: translateY(-50px) scaleX(1.2);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scaleX(0.8);
    }
}

@keyframes steamRise {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translateY(-40px);
    }
}

@keyframes coffeeFill {
    0%, 100% {
        height: 75%;
    }
    50% {
        height: 85%;
    }
}

@keyframes bgPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
        margin-top: -70px; /* Mobilde header daha küçük */
        padding-top: 70px;
    }

    .coffee-icon {
        font-size: 3rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .promise-content {
        flex-direction: column;
        gap: 40px;
    }

    .intro-section,
    .about-lounge,
    .what-we-offer,
    .coffee-promise,
    .cta-section {
        padding: 60px 0;
    }

    .location-info {
        padding: 50px 0;
    }
}