:root {
    --primary-color: #2a4494;
    --secondary-color: #4CAF50;
    --background-color: #f8f9fa;
    --text-color: #333;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    padding-top: 76px;
}

/* Navbar Styles */
.navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.navbar-brand {
    padding: 0;
    margin-right: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

.nav-logo {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .nav-logo {
        height: 90px;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-nav .nav-link {
        font-size: 1.2rem;
        padding: 0.75rem 1rem;
    }
    
    .navbar-toggler {
        padding: 0.75rem;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .nav-logo {
        height: 140px;
        animation: logoGlow 2s ease-in-out;
    }
    
    .navbar {
        padding: 1rem;
    }
    
    .navbar-brand {
        flex: 1;
        display: flex;
        align-items: center;
        white-space: nowrap;
        overflow: hidden;
        padding-right: 1rem;
    }
    
    .brand-text {
        font-size: 1.2rem;
    }
    
    .navbar-collapse {
        background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,249,250,0.95) 100%);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 0.5rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transform-origin: top;
        animation: pourDown 0.4s ease-out;
    }
    
    .navbar-nav .nav-item {
        opacity: 0;
        transform: translateY(10px);
        animation: fadeInUp 0.3s ease-out forwards;
    }
    
    .navbar-nav .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .navbar-nav .nav-item:nth-child(2) { animation-delay: 0.2s; }
    .navbar-nav .nav-item:nth-child(3) { animation-delay: 0.3s; }
    .navbar-nav .nav-item:nth-child(4) { animation-delay: 0.4s; }
    
    .navbar-nav .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
        text-align: center;
        border-radius: 6px;
        position: relative;
        overflow: hidden;
    }
    
    .navbar-nav .nav-link::after {
        content: '☕';
        position: absolute;
        right: -20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.9rem;
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:active::after {
        right: 1rem;
        opacity: 1;
    }
    
    .navbar-nav .nav-link:hover {
        background: var(--background-color);
    }
    
    .navbar-toggler {
        padding: 0.8rem;
        border: none;
        background: transparent;
        position: relative;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
}

/* Tea Menu Icon */
.tea-menu-icon {
    width: 35px;
    height: 35px;
    position: relative;
    cursor: pointer;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 5px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.tea-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 10px;
    position: absolute;
    left: 0;
    transition: all 0.4s ease;
    transform-origin: center;
}

.tea-line.top { 
    top: 8px; 
    width: 50%;
    left: 25%;
}

.tea-line.middle { 
    top: 16px;
    width: 70%;
    left: 15%;
}

.tea-line.bottom { 
    bottom: 8px;
    width: 50%;
    left: 25%;
}

.navbar-toggler[aria-expanded="true"] .tea-line.top {
    transform: translateY(8px) rotate(45deg);
    width: 80%;
    left: 10%;
}

.navbar-toggler[aria-expanded="true"] .tea-line.middle {
    opacity: 0;
    transform: scale(0);
}

.navbar-toggler[aria-expanded="true"] .tea-line.bottom {
    transform: translateY(-8px) rotate(-45deg);
    width: 80%;
    left: 10%;
}

.navbar-toggler[aria-expanded="true"] .tea-menu-icon {
    background: var(--background-color);
    transform: rotate(180deg);
}

.menu-steam {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .menu-steam {
    opacity: 1;
}

.menu-steam span {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 10px;
    opacity: 0.5;
}

.menu-steam span:nth-child(1) { transform: translateX(-8px) rotate(-15deg); animation: steam 2s infinite; }
.menu-steam span:nth-child(2) { transform: translateX(0); animation: steam 2s infinite 0.4s; }
.menu-steam span:nth-child(3) { transform: translateX(8px) rotate(15deg); animation: steam 2s infinite 0.8s; }

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.scroll-indicator.visible {
    opacity: 1;
}

.teacup {
    width: 100%;
    height: 100%;
    position: relative;
}

.cup {
    width: 20px;
    height: 15px;
    border: 2px solid var(--primary-color);
    border-radius: 0 0 10px 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center;
    animation: tiltCup 2s ease-in-out infinite;
}

.handle {
    width: 8px;
    height: 10px;
    border: 2px solid var(--primary-color);
    border-left: none;
    border-radius: 0 10px 10px 0;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
}

.saucer {
    width: 26px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 10px;
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
}

/* Animations */
@keyframes pourDown {
    from { transform: scaleY(0); opacity: 0; }
    to { transform: scaleY(1); opacity: 1; }
}

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

@keyframes steam {
    0% { height: 8px; opacity: 0.5; }
    50% { height: 15px; opacity: 0.2; }
    100% { height: 8px; opacity: 0; }
}

@keyframes tiltCup {
    0% { transform: translate(-50%, -50%) rotate(0); }
    25% { transform: translate(-50%, -50%) rotate(-15deg); }
    75% { transform: translate(-50%, -50%) rotate(15deg); }
    100% { transform: translate(-50%, -50%) rotate(0); }
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 5px rgba(42, 68, 148, 0)); }
    50% { filter: drop-shadow(0 0 10px rgba(42, 68, 148, 0.3)); }
    100% { filter: drop-shadow(0 0 5px rgba(42, 68, 148, 0)); }
}

/* Ripple Effects */
.nav-ripple,
.toggle-ripple {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

.nav-ripple {
    width: 100px;
    height: 100px;
    opacity: 0.1;
}

.toggle-ripple {
    width: 50px;
    height: 50px;
    opacity: 0.2;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.navbar-nav .nav-link {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--background-color) 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-title {
    color: var(--primary-color);
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
}

.hero-tagline {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.hero-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    opacity: 0.85;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-tagline {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 15px;
    }

    .hero-content {
        width: 100%;
        padding: 0;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
        width: 100%;
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero-tagline {
        font-size: 1.5rem;
        padding: 0 10px;
        margin-bottom: 1.5rem;
    }

    .hero-text {
        font-size: 1rem;
        padding: 0 10px;
        margin-bottom: 2rem;
    }

    .teacup-decoration {
        display: none;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.teacup-decoration {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    opacity: 0.1;
    border-radius: 50% 50% 0 0;
    transform: rotate(45deg);
}

.teacup-decoration.left {
    left: -80px;
    top: 20px;
}

.teacup-decoration.right {
    right: -80px;
    top: 20px;
}

.blockchain-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    z-index: 1;
}

.blockchain-circles::before,
.blockchain-circles::after {
    content: '';
    position: absolute;
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    opacity: 0.15;
    animation: rotate 20s linear infinite;
}

.blockchain-circles::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.blockchain-circles::after {
    top: 50px;
    left: 50px;
    right: 50px;
    bottom: 50px;
    animation-direction: reverse;
    animation-duration: 15s;
}

.mission-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(42, 68, 148, 0.2);
    transition: all 0.3s ease;
}

.mission-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 68, 148, 0.3);
}

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

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

/* Section Styles */
.section {
    padding: 80px 0;
}

.section h2 {
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.about-decoration {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2rem;
}

.blockchain-node {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    opacity: 0.1;
    border-radius: 50%;
    position: relative;
}

.blockchain-node::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

/* Team Section */
.team-grid {
    gap: 30px;
    justify-content: center;
}

/* Contact Form */
.form-control {
    border: 2px solid #ddd;
    padding: 12px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

/* Story Section */
.story-section {
    background: linear-gradient(135deg, #fff 0%, var(--background-color) 100%);
    padding: 6rem 0;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.story-header {
    margin-bottom: 3rem;
}

.story-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.story-header .author {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

.story-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.story-chapter {
    margin-bottom: 3rem;
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.story-chapter::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 2rem;
    width: 4px;
    height: calc(100% - 4rem);
    background: linear-gradient(to bottom, #8B4513, #4CAF50);
    border-radius: 2px;
}

.quote-block {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(139, 69, 19, 0.05);
    border-left: 4px solid #8B4513;
    border-radius: 0 15px 15px 0;
}

.quote-block .highlight {
    font-size: 1.4rem;
    color: #8B4513;
    font-weight: 600;
    margin-bottom: 1rem;
}

.highlight-quote {
    background: rgba(76, 175, 80, 0.05);
    border-left-color: #4CAF50;
}

.highlight-quote p {
    font-size: 1.6rem;
    color: #4CAF50;
    font-weight: 600;
    font-style: italic;
    text-align: center;
}

.reflection-block {
    margin: 2rem 0;
    padding: 2rem;
    text-align: center;
    font-style: italic;
    color: #666;
}

.closing-statement {
    margin-top: 2rem;
    padding: 2rem;
    text-align: center;
    font-size: 1.3rem;
    color: #8B4513;
    font-weight: 500;
    line-height: 2;
}

@media (max-width: 768px) {
    .story-content {
        padding: 0 1rem;
    }

    .story-chapter::before {
        left: -1rem;
    }

    .story-chapter {
        padding: 1.5rem;
    }
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, var(--background-color) 0%, #fff 100%);
    padding: 4rem 0;
}

.section-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.mission-card,
.approach-card,
.commitment-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card:hover,
.approach-card:hover,
.commitment-card:hover {
    transform: translateY(-5px);
}

.teacup-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    position: relative;
}

.teacup-icon .cup {
    width: 40px;
    height: 30px;
    border: 3px solid var(--primary-color);
    border-radius: 0 0 20px 20px;
    position: absolute;
    bottom: 0;
}

.teacup-icon .steam {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 20px;
    background: linear-gradient(to bottom, transparent, var(--primary-color));
    opacity: 0;
    animation: steamRise 2s infinite;
}

/* Team Section */
.team-section {
    background: linear-gradient(135deg, #fff 0%, var(--background-color) 100%);
    padding: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
}

.team-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card.featured {
    background: linear-gradient(135deg, #fff 0%, rgba(139, 69, 19, 0.1) 100%);
    border: 2px solid rgba(139, 69, 19, 0.2);
}

.team-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 50px 50px 0;
    border-color: transparent #8B4513 transparent transparent;
}

.team-member {
    text-align: center;
    position: relative;
    z-index: 1;
}

.team-member h3 {
    color: #8B4513;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.member-card h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

@keyframes steamRise {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--background-color) 0%, #fff 100%);
    padding: 4rem 0;
}

.contact-intro {
    margin-bottom: 3rem;
}

.teacup-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.decorative-teacup {
    width: 60px;
    height: 60px;
    position: relative;
    animation: gentleBounce 3s infinite;
}

.decorative-teacup:nth-child(2) {
    animation-delay: 0.5s;
}

.decorative-teacup:nth-child(3) {
    animation-delay: 1s;
}

.decorative-teacup .cup {
    width: 40px;
    height: 30px;
    border: 3px solid #8B4513;
    border-radius: 0 0 20px 20px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #8B4513;
}

.decorative-teacup .steam {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 20px;
    background: linear-gradient(to bottom, transparent, #4CAF50);
    opacity: 0;
    animation: steamRise 2s infinite;
}

.contact-form-wrapper {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
    border-color: #8B4513;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #8B4513;
}

.submit-btn {
    position: relative;
    padding: 1rem 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #8B4513;
    border-color: #8B4513;
}

.submit-btn:hover {
    background: #704012;
    border-color: #704012;
    transform: translateY(-2px);
}

.btn-teacup {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.btn-teacup .cup {
    width: 20px;
    height: 15px;
    border: 2px solid white;
    border-radius: 0 0 10px 10px;
    position: absolute;
    bottom: 0;
}

.btn-teacup .steam {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: linear-gradient(to bottom, transparent, #4CAF50);
    opacity: 0;
    animation: steamRise 2s infinite;
}

.email-contact {
    margin-top: 2rem;
    font-size: 1.1rem;
}

.email-contact a {
    color: #8B4513;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-contact a:hover {
    color: #704012;
}

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

/* Delegate Section Styles */
.delegate-section {
    background-color: var(--background-color);
    padding: 5rem 0;
}

.drep-id-card, .how-to-delegate-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.drep-id-card:hover, .how-to-delegate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.drep-id-card h3, .how-to-delegate-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.drep-id-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: #f0f5ff;
    border-radius: 10px;
    padding: 1rem;
    border: 2px solid var(--primary-color);
    position: relative;
}

.drep-id {
    font-family: monospace;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0;
    word-break: break-all;
    font-weight: 600;
    text-align: center;
}

.copy-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
}

.copy-btn:hover {
    background-color: #1a3366;
}

.delegation-steps {
    margin-top: 2rem;
}

.step {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.delegation-note {
    background-color: #f0f5ff;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.delegation-note p {
    margin: 0;
    color: var(--primary-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .drep-id-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .drep-id {
        font-size: 0.9rem;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* Footer */
.footer {
    background-color: var(--background-color);
    padding: 40px 0;
    margin-top: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 200px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .nav-logo {
        height: 90px;
    }
    
    .navbar {
        padding: 1rem;
    }

    .navbar-collapse {
        background: white;
        border-radius: 15px;
        padding: 1rem;
        margin-top: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 0.8rem 1.2rem;
        text-align: center;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(139, 69, 19, 0.1);
        color: #8B4513;
    }

    .nav-link.active {
        background: #8B4513;
        color: white;
    }

    .navbar-toggler {
        border: none;
        padding: 0.8rem;
    }

    .tea-menu-icon {
        transform: scale(1.2);
    }
}
