/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* :root {
    --primary-color: #5b3e29;
    --secondary-color: #e6c9a8;
    --dark-primary: #422b1e;
    --text-color: #333;
    --light-bg: #f9f5f0;
    --white: #fff;
    
    
}

:root {
    --primary-color: #2d8659;
    --secondary-color: #c5e8d5;
    --dark-primary: #1d5a3a;
    --text-color: #333;
    --light-bg: #f9f5f0;
    --white: #fff;
} */

:root {
    --primary-color: #50613b;
    --secondary-color: #d8e0cc;
    --dark-primary: #4a563a;
    --text-color: #333;
    --light-bg: #f9f5f0;
    --white: #fff;
}


body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}
a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}
/* Header Styling */
header {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    border-radius: 0 0 50px 50px;
}

nav {
    display: flex;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.main-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}
.main-logo img:hover {
    transform: translatey(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.brand-name {
    font-family: 'Rakkas', serif;
    margin-left: 1rem;
    font-size: 2rem;
    color: var(--secondary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-links {
    display: flex;
    margin-left: auto;
}

.links {
    margin-left: 2rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.links a {
    position: relative;
    padding: 0.5rem;
}

.links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.links a:hover:after {
    width: 100%;
}
.nav-links .active a {     
    font-weight: bold;
}
.nav-links .active a::after {     
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/products/tea1.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 5rem 1rem;
    margin-bottom: 4rem;
    border-radius: 20px;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-content h2 {
    font-family: 'Rakkas', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--light-bg);
    color: var(--text-color);
    font-weight: bolder;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--text-color);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
/* Main Section */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5%;
}
.main-container {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 2rem;
}
.main-content {
    flex: 1;
    padding-right: 2rem;
}
.welcome-message {
    font-family: 'Rakkas', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}
.main-content-text {
    line-height: 1.8;
    color: #555;
}

/*Image Styling*/
.floating-video {
    width: 50%;
    border-radius: 5%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

/*products Styling */

.products-container {
    margin-bottom: 4rem;
    text-align: center;
}
.products-container h2 {
    font-family: 'Rakkas', serif;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}
.products-container h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 25%;
}

.items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;

}
.item {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.item p {
    padding: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 110%;
}
.item small {
    font-weight: 700;
    color: #996b08;
}

/*button*/

.see-more {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: bold;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}
.see-more:hover {
    background-color: var(--dark-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
/* tea facts */

.fun-facts-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(228px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.fact {
    text-align: center;
    margin-bottom: 0;
}

.fact img {
    width: 100%;
    height: auto;
    margin: 0 auto 1rem;
    mix-blend-mode: multiply;
}
.fact h3 {
    font-family: "Rakkas";
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--primary-color);
    line-height: 1.8;
    padding: 1.5rem;
}

/* Fun Facts Table Styling */
.fun-facts-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.fun-facts-table th {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fun-facts-table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--secondary-color);
    color: var(--text-color);
    vertical-align: middle;
    line-height: 1.6;
}

.fun-facts-table tbody tr:hover {
    background-color: var(--secondary-color);
    transition: background-color 0.3s ease;
}

.fun-facts-table tbody tr:last-child td {
    border-bottom: none;
}

.num{
    text-align: center;
    font-size: 1.5rem;
}


/* location */
.map-location-container {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.map-container {
    flex: 1;
}

.map-container img {
    width: 100%;
    display: block;
}

.location-text-container {
    flex: 1;
    padding: 2rem;
    text-align: center;
}

.location-text-container h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.location-text-container h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #777;
}

.location-text-container p {
    margin-bottom: 2rem;
    color: #666;
    font-size: 1.1rem;
}

.location-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.location-button:hover {
    background-color: var(--dark-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Newsletter */
.newsletter-container {
    background-color: var(--white);
    border-radius: 10px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.newsletter-container h2 {
    font-family: 'Rakkas', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.newsletter-container p {
    margin-bottom: 2rem;
    color: #666;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid #ddd;
    border-radius: 30px 0 0 30px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.subscribe-button {
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.subscribe-button:hover {
    background-color: var(--dark-primary);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 3rem 5%;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    font-family: 'Oswald', sans-serif;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: -5px;
    left: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(3px);
}

.footer-section a {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links img {
    width: 45px;
    height: auto;
    transition: transform 0.3s ease;
    filter: brightness(60%);
}

.social-links img:hover {
    transform: scale(1.1);
    filter: brightness(80%);
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(230, 201, 168, 0.3);
    font-size: 0.9rem;
}

