body {
    color: hsl(0, 0%, 20%);
    overflow-x: hidden;
}


.logo-text {
    background: linear-gradient(90deg, #D4AF37 0%, #F9D423 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
        
.gold-border {
    border: 2px solid transparent;
    border-image: linear-gradient(90deg, #D4AF37 0%, #F9D423 100%);
    border-image-slice: 1;
}
        
.gradient-bg {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}
        
.tea-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
        
.floating {
    animation: floating 6s ease-in-out infinite;
}
        
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
        
.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
        
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}
        
.rotate-leaf {
    animation: rotate 15s linear infinite;
}
        
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
        
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
        
.glow-text {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
}
        
.slide-in {
    animation: slideIn 1s ease-out forwards;
}
        
@keyframes slideIn {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
        
.fade-in {
    animation: fadeIn 1.5s ease-in forwards;
}
        
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
        
.hover-scale {
    transition: transform 0.3s ease;
}
        
.hover-scale:hover {
    transform: scale(1.05);
}

.featured-categories {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 1px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-item {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.category-image {
    position: relative;
    height: 100%;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 40px 20px 20px;
    text-align: center;
}

.category-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 400;
}

.category-overlay p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.category-link {
    color: white;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    border-bottom: 1px solid white;
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
}

.category-link:hover {
    opacity: 0.7;
}

.category-item:hover .category-image img {
    transform: scale(1.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 280px;
    object-fit: contain;
}

@keyframes smoothFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-smooth-up {
    opacity: 0; /* Initial state for smoother transition */
    animation-name: smoothFadeUp;
    animation-duration: 0.9s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

.animate-delay-100 {
    animation-delay: 0.1s;
}
.animate-delay-300 {
    animation-delay: 0.3s;
}
.animate-delay-500 {
    animation-delay: 0.5s;
}

.herosm {
    margin-top: 175px;
}

@media (min-width: 640px) {
    .herosm {
        margin-top: 0px;
    }
}

.teapot {
    height: 250px;
    width: 250px;
    margin-bottom: 100px;
}

@media (min-width: 640px) {
    .teapot {
        height: auto;
        width: auto;
        margin-bottom: 0px;
    }
}
        
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
            
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}



.title07{
    font-family: "Magnolia Script";
}

/* * {
  outline: 1px solid red;
} */

@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.animate-floating {
  animation: floating 4s ease-in-out infinite;
}

.hero-text {

    max-width: 700px;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.5rem;
    max-width: 570px;
}

@font-face {
    font-family: "Birds of Paradise + PERSONAL USE ONLY";
    src: url("resources/fonts/Birds of Paradise + PERSONAL USE ONLY.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Demo The Morydane";
    src: url("resources/fonts/Demo The Morydane.otf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Mitchell Demo";
    src: url("resources/fonts/Mitchell Demo.otf Demo.otf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Back to Black Demo";
    src: url("resources/fonts/Back to Black Demo.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "exmouth_";
    src: url("resources/fonts/exmouth_.ttf");
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: "GoldenHillsDEMO";
    src: url("resources/fonts/GoldenHillsDEMO.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Magnolia Script";
    src: url("resources/fonts/Magnolia Script.otf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "NovaQuinta_PERSONAL_USE_ONLY";
    src: url("resources/fonts/NovaQuinta_PERSONAL_USE_ONLY.otf");
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: "Pacifico";
    src: url("resources/fonts/Pacifico.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "WorldDiscovery_PERSONAL_USE_ONLY";
    src: url("resources/fonts/WorldDiscovery_PERSONAL_USE_ONLY.otf");
    font-weight: normal;
    font-style: normal;
}


.title01{
    font-family: "Birds of Paradise + PERSONAL USE ONLY";
}

.title02{
    font-family: "Demo The Morydane";
}

.title03{
    font-family: "Mitchell Demo";
}

.title04{
    font-family: "Back to Black Bold Demo";
}

.title05{
    font-family: "exmouth_";
}

.title06{
    font-family: "GoldenHillsDEMO";
}

.title07{
    font-family: "Magnolia Script";
}

.title08{
    font-family: "NovaQuinta_PERSONAL_USE_ONLY";
}

.title09{
    font-family: "Pacifico";
}

.title10{
    font-family: "Birds of Paradise + PERSONAL USE ONLY";
}

.title011{
    font-family: "WorldDiscovery_PERSONAL_USE_ONLY";
}


.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

