/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent phone numbers from appearing as blue links on mobile */
a[href^="tel:"] {
    color: inherit !important;
    text-decoration: none !important;
}

/* Override browser default phone number styling */
.contact-details p,
.footer-section p {
    -webkit-tap-highlight-color: transparent;
}

/* Ensure phone numbers maintain white color */
.contact-details p,
.footer-section p,
.contact-method p {
    color: #f0f0f0 !important;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; font-weight: 700; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.8rem; margin-bottom: 0.8rem; }
p { font-size: 1.1rem; margin-bottom: 1rem; color: #666; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #4B2E1E, #C39A37);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #C39A37, #4B2E1E);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(75, 46, 30, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #4B2E1E;
    border: 2px solid #4B2E1E;
}

.btn-secondary:hover {
    background: #4B2E1E;
    color: white;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #dcdccc;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo { display: flex; align-items: center; }

.logo-img {
    height: 60px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover { color: #4B2E1E; }

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #150E0B 0%, #4B2E1E 100%);
    padding-top: 80px;
}

.hero-container {
    margin-top: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content { animation: fadeInLeft 1s ease; }

.hero-title {
    color: #C39A37;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #f0f0f0;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Story Section */
.story-section {
    padding: 5rem 0;
    background: #150E0B;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.story-text {
    text-align: left;
}

.story-text h2 {
    color: #C39A37;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.story-text p {
    font-size: 1.3rem;
    color: #f0f0f0;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.story-img:hover {
    transform: scale(1.02);
}

.story-link {
    font-size: 1.1rem;
    padding: 15px 35px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.story-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(75, 46, 30, 0.4);
}

/* Products Showcase */
.products-showcase {
    padding: 5rem 0 2rem 0;
    background: #2A1F1A;
}

.products-overview {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.products-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
    max-width: 400px;
}

.product-header {
    text-align: left;
    margin-bottom: 1rem;
}

.product-header h2 {
    color: #C39A37;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-header p {
    font-size: 1.3rem;
    color: #f0f0f0;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 0;
}

.products-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.products-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.products-img:hover {
    transform: scale(1.02);
}

.product-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(195, 154, 55, 0.2);
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    background: rgba(195, 154, 55, 0.1);
}

.product-item i {
    font-size: 1.5rem;
    color: #C39A37;
    width: 30px;
    text-align: center;
}

.product-item span {
    font-size: 1.2rem;
    color: #f0f0f0;
    font-weight: 500;
}

.products-cta {
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 { 
    color: #C39A37; 
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}
.section-header p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    color: #f0f0f0;
    font-style: italic;
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #150E0B;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: #C39A37;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.about-intro {
    font-size: 1.3rem;
    color: #f0f0f0;
    margin-bottom: 2.5rem;
    font-style: italic;
    line-height: 1.8;
}

.about-features { margin-top: 2rem; }
.feature { margin-bottom: 2rem; }

.feature h4 {
    color: #C39A37;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.feature i { color: #C39A37; }

.feature p {
    font-size: 1.1rem;
    color: #f0f0f0;
    line-height: 1.6;
    margin-bottom: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(195, 154, 55, 0.2);
    font-style: italic;
}

.stat-item h3 {
    font-size: 2rem;
    color: #C39A37;
    margin-bottom: 0.5rem;
}

.stat-item p { color: #f0f0f0; margin: 0; }

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #2A1F1A;
}

.contact-content {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    width: 100%;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(195, 154, 55, 0.2);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4B2E1E, #C39A37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 { 
    color: #C39A37; 
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}
.contact-details p { 
    margin: 0.2rem 0; 
    color: #f0f0f0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-weight: 500;
}

.whatsapp-link:hover { text-decoration: underline; }

.email-link {
    color: #C39A37;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 0.5rem;
}

.email-link:hover { 
    text-decoration: underline;
    color: #A0522D;
}

/* Footer */
.footer {
    background: #150E0B;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 { color: #C39A37; margin-bottom: 1rem; }

.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.5rem; }

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover { color: #C39A37; }
.footer-section p { color: #ccc; margin-bottom: 0.5rem; }
.footer-section i { color: #C39A37; margin-right: 0.5rem; }

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Animations */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

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

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-btn i {
    transition: transform 0.3s ease;
}

.whatsapp-float-btn:hover i {
    transform: scale(1.1);
}

/* Pulse animation for WhatsApp button */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Story Page Styles */
.story-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #150E0B 0%, #4B2E1E 100%);
    padding-top: 80px;
}

.story-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-hero-content {
    animation: fadeInLeft 1s ease;
}

.story-hero-title {
    color: #C39A37;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.story-hero-subtitle {
    font-size: 1.5rem;
    color: #f0f0f0;
    margin-bottom: 2rem;
    font-style: italic;
}

.story-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease;
}

.story-hero-img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.story-hero-img:hover {
    transform: scale(1.02);
}

.story-content-section {
    padding: 5rem 0;
    background: #2A1F1A;
}

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

.story-text-content {
    color: #f0f0f0;
    line-height: 1.8;
}

.story-intro {
    font-size: 1.4rem;
    color: #C39A37;
    font-style: italic;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 500;
}

.story-paragraph {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: justify;
}

.story-mission {
    font-size: 1.3rem;
    color: #C39A37;
    font-weight: 600;
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(195, 154, 55, 0.1);
    border-radius: 15px;
    border-left: 4px solid #C39A37;
}

.back-to-home {
    padding: 3rem 0;
    background: #150E0B;
}

.back-to-home-content {
    text-align: center;
}

.back-to-home .btn {
    font-size: 1.1rem;
    padding: 15px 35px;
}

/* Active nav link styling */
.nav-link.active {
    color: #C39A37;
    font-weight: 600;
}

/* Products Page Styles */
.products-hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #150E0B 0%, #4B2E1E 100%);
    text-align: center;
}

.products-hero-content h1 {
    color: #C39A37;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.products-hero-content p {
    font-size: 1.4rem;
    color: #f0f0f0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-style: italic;
}

.product-section {
    padding: 5rem 0;
    background: #2A1F1A;
}

.product-section.alt {
    background: #150E0B;
}

/* New layout for product sections */
.product-header-section {
    max-width: 1200px;
    margin: 0 auto 4rem;
    text-align: center;
}

.product-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(195, 154, 55, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.category-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.category-box h3 {
    color: #C39A37;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-description {
    font-size: 1rem;
    color: #f0f0f0;
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.5;
}

.category-image {
    margin-bottom: 1.5rem;
}

.category-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.category-features ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.category-features li {
    padding: 0.5rem 0;
    color: #f0f0f0;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.2rem;
    line-height: 1.4;
}

.category-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #C39A37;
    font-weight: bold;
    font-size: 1rem;
}

.product-header {
    margin-bottom: 2rem;
}

.product-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #C39A37;
    color: #150E0B;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.product-header h2 {
    color: #C39A37;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-tagline {
    font-size: 1.2rem;
    color: #C39A37;
    font-style: italic;
    margin-bottom: 0;
}

.products-cta {
    padding: 1.5rem 0;
    background: #2A1F1A;
    text-align: center;
}

.cta-content h2 {
    color: #C39A37;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: #f0f0f0;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 1.5rem 0;
    }

    .nav-menu.active { left: 0; }
    .nav-menu li { 
        margin: 0.5rem 0; 
        padding: 0.3rem 0;
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 0.8rem 1rem;
        font-size: 1.1rem;
        font-weight: 500;
        transition: all 0.3s ease;
        border-radius: 8px;
        margin: 0 1rem;
    }
    
    .nav-menu .nav-link:hover {
        background-color: #f8f8f8;
        color: #4B2E1E;
        transform: translateY(-1px);
    }
    
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title { font-size: 2.5rem; }
    .hero-buttons { justify-content: center; }
    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .story-text {
        text-align: center;
    }
    
    .story-text h2 { font-size: 2rem; }
    .story-text p { font-size: 1.1rem; }
    
    .story-img {
        height: 300px;
    }
    .about-content { grid-template-columns: 1fr; gap: 2rem; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .contact-info { grid-template-columns: 1fr; }
    .products-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .product-list {
        max-width: none;
    }
    
    .product-item {
        padding: 1rem 1.5rem;
    }
    
    .product-item span {
        font-size: 1.1rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .story-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .story-hero-title {
        font-size: 2.5rem;
    }
    
    .story-hero-subtitle {
        font-size: 1.3rem;
    }
    
    .story-hero-img {
        height: 300px;
    }
    
    .story-intro {
        font-size: 1.2rem;
    }
    
    .story-paragraph {
        font-size: 1.1rem;
    }
    
    .story-mission {
        font-size: 1.2rem;
    }
    
    .products-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .products-hero-content p {
        font-size: 1.2rem;
    }
    
    .product-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .category-box {
        padding: 1.5rem;
    }
    
    .category-box h3 {
        font-size: 1.2rem;
    }
    
    .category-description {
        font-size: 0.9rem;
    }
    
    .category-image img {
        height: 150px;
    }
    
    .category-features li {
        font-size: 0.85rem;
    }
    
    .product-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .btn { padding: 10px 20px; font-size: 0.9rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .about-stats { grid-template-columns: 1fr; }
    .stat-item h3 { font-size: 2rem; }
    
    .product-categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-box {
        padding: 1.2rem;
    }
    
    .category-box h3 {
        font-size: 1.1rem;
    }
    
    .category-description {
        font-size: 0.85rem;
    }
    
    .category-image img {
        height: 120px;
    }
}

/* Smooth Scrolling */
html { scroll-behavior: smooth; }