/* 
* Template Name: Treasure Toast
* Version: 1.0
* Template Author: Claude
*/

/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===== Basic ===== */
:root {
    --primary-color: #D2B48C; /* Warm Tan */
    --secondary-color: #A0522D; /* Sienna - for hover/secondary */
    --accent-color: #E63946;   /* Vibrant Red */
    --logo-orange: #F5A623; /* Re-added logo orange color */
    --dark-color: #333333;
    --light-color: #F8F9FA;
    --body-font: 'Poppins', sans-serif;
    --heading-font: 'Poppins', sans-serif;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Header ===== */
.header-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
}

.header-area.transparent-bar {
    background-color: transparent;
}

.header-area.header-black {
    background-color: rgba(0, 0, 0, 0.8);
}

.logo {
    padding: 15px 0;
}

.logo img {
    max-height: 50px;
}

.main-menu ul {
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
    height: 80px; /* Match the header height */
}

.main-menu ul li {
    margin-left: 30px;
    position: relative;
}

.main-menu ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    display: block;
}

.main-menu ul li a:hover {
    color: var(--accent-color); /* Red accent on hover */
}

/* Order Now Button Styles */
.btn-order {
    background-color: var(--logo-orange);
    color: #fff !important;
    padding: 10px 25px !important;
    border-radius: 25px;
    font-weight: 600 !important;
    transition: all 0.3s ease;
    border: 2px solid var(--logo-orange);
}

.btn-order:hover {
    background-color: transparent;
    color: var(--logo-orange) !important;
    transform: translateY(-2px);
}

/* Mobile Menu Button Styles */
#mobile-menu-active .btn-order {
    display: inline-block;
    margin: 10px 0;
}

/* ===== Carousel Styles (Replaces Slider) ===== */
#heroCarousel .carousel-item {
    height: 70vh; /* Adjust height as needed */
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

#heroCarousel .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

#heroCarousel .carousel-caption {
    bottom: 20%; /* Position caption lower */
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* Add text shadow for better readability */
}

#heroCarousel .carousel-caption h1 {
    font-size: 48px; /* Adjust font size */
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

#heroCarousel .carousel-caption p {
    font-size: 18px; /* Adjust font size */
    margin-bottom: 0;
    color: #fff;
}

#heroCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.5);
}

#heroCarousel .carousel-indicators .active {
    background-color: #fff;
}

/* ===== About Area ===== */
.about-area {
    padding: 100px 0;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-content h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--primary-color); /* Use primary warm color */
}

.about-peragraph p {
    margin-bottom: 20px;
}

/* ===== Count Area ===== */
.count-area {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.count-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.single-count {
    position: relative;
    z-index: 1;
    color: #fff;
}

.count-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--accent-color); /* Use accent red for icons */
}

.single-count h2 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #fff;
}

.single-count span {
    font-size: 18px;
}

/* ===== Footer ===== */
.footer-area {
    background-color: var(--dark-color);
    color: #fff;
}

.footer-bottom {
    padding: 20px 0;
}

.copyright p {
    margin: 0;
}

/* Custom Logo Orange Text Color */
.text-logo-orange {
    color: var(--logo-orange);
}

/* Custom Logo Orange Button Style */
.btn-logo-orange {
    background-color: var(--logo-orange);
    border-color: var(--logo-orange);
    color: #fff; /* Ensuring text is white for contrast */
}

.btn-logo-orange:hover,
.btn-logo-orange:focus,
.btn-logo-orange:active {
    background-color: #e09115; /* A slightly darker orange for interaction */
    border-color: #d38812; 
    color: #fff;
}

/* Custom Accent Text Color */
.text-accent {
    color: var(--accent-color);
}

/* Custom Accent Button Style */
.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}

.btn-accent:hover,
.btn-accent:focus,
.btn-accent:active {
    background-color: #c82333; /* Darker red */
    border-color: #bd2130; 
    color: #fff;
}

/* Custom Outline Button Style */
.btn-outline-primary-warm {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary-warm:hover,
.btn-outline-primary-warm:focus,
.btn-outline-primary-warm:active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Philosophy Area Cards */
.philosophy-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; /* Enhance shadow on hover */
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .main-menu {
        display: none;
    }
    
    .mobile-menu-area {
        display: block;
    }
    
    .slider-content h1 {
        font-size: 40px;
    }
    
    .slider-content p {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .about-area {
        padding: 60px 0;
    }
    
    .about-content {
        margin-bottom: 40px;
    }
    
    .count-area {
        padding: 60px 0;
    }
    
    .single-count {
        margin-bottom: 30px;
    }
}

/* Mobile Menu Specific Styles */
#mobile-menu-active ul {
    list-style: none; /* Remove bullet points */
    padding-left: 0; /* Remove default padding */
}

#mobile-menu-active ul li a {
    color: #fff; /* Set mobile menu link color to white */
    display: block; /* Make links easier to tap */
    padding: 10px 15px; /* Add some padding */
    text-decoration: none;
}

#mobile-menu-active ul li a:hover {
    color: var(--accent-color); /* Red accent on hover */
} 