/* Brand Hero Section */
.brand-hero {
    height: 70vh;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
                url('../assets/images/brand/brand-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -90px;
}

.hero-container {
    max-width: 800px;
    padding: 0 2rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.hero-title {
    font-size: 4.5rem;
    color: #2C3E2D;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
}

.hero-subtitle {
    font-size: 1.6rem;
    color: #5C6D5D;
    font-style: italic;
}

/* Brand Story Section */
.brand-story {
    padding: 120px 0;
    background-color: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.story-content {
    padding-right: 2rem;
    opacity: 0;
    animation: fadeInLeft 1s ease forwards;
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5C6D5D;
}

.featured-text {
    font-size: 1.8rem;
    color: #2C3E2D;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.story-text p {
    margin-bottom: 2rem;
}

.story-image {
    position: relative;
    opacity: 0;
    animation: fadeInRight 1s ease forwards;
}

.story-image:before {
    content: "";
    position: absolute;
    top: -2rem;
    right: -2rem;
    bottom: 2rem;
    left: 2rem;
    border: 1px solid rgba(44, 62, 45, 0.1);
    z-index: -1;
}

.story-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Tea Master Section */
.tea-master {
    padding: 120px 0;
    background-color: #F8F8F6;
}

.master-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.master-image {
    position: relative;
    opacity: 0;
    animation: fadeInLeft 1s ease forwards;
}

.master-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 2rem;
    right: -4rem;
    background: #2C3E2D;
    color: white;
    padding: 1rem 2rem;
    transform: rotate(90deg);
    transform-origin: right bottom;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.master-content {
    padding-left: 2rem;
    opacity: 0;
    animation: fadeInRight 1s ease forwards;
}

.credentials-list {
    list-style: none;
    margin: 3rem 0;
}

.credentials-list li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    color: #5C6D5D;
    font-size: 1.1rem;
    line-height: 1.6;
}

.credentials-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2C3E2D;
}

.master-quote {
    padding: 2rem;
    background: white;
    margin-top: 3rem;
    position: relative;
}

.master-quote:before {
    content: """;
    position: absolute;
    top: -1rem;
    left: 2rem;
    font-size: 5rem;
    color: #2C3E2D;
    opacity: 0.1;
}

.master-quote blockquote {
    font-size: 1.4rem;
    color: #2C3E2D;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* Philosophy Section */
.philosophy {
    padding: 120px 0;
    background-color: white;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.philosophy-card {
    padding: 3rem;
    background: #F8F8F6;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.philosophy-card:nth-child(1) { animation: fadeInUp 1s ease forwards 0.2s; }
.philosophy-card:nth-child(2) { animation: fadeInUp 1s ease forwards 0.4s; }
.philosophy-card:nth-child(3) { animation: fadeInUp 1s ease forwards 0.6s; }

.philosophy-card:hover {
    transform: translateY(-10px);
}

.philosophy-card h3 {
    font-size: 1.8rem;
    color: #2C3E2D;
    margin-bottom: 1.5rem;
}

.philosophy-card p {
    color: #5C6D5D;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

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

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

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

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .featured-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 1024px) {
    .story-grid,
    .master-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .story-content,
    .master-content {
        padding: 0;
    }
    
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-badge {
        right: -2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .master-quote blockquote {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}
