/*
Theme Name: DD theme
Author: Mutahir Hussain
Author URI: https://linkdin.com/in/mutahirhussain
Description: Custom theme for Temptation Indian restaurant
Version: 1.0
Text Domain: temptation
*/

@font-face {
    font-family: "simfang";
    src: url(/assets/fonts/simfang.ttf) format("truetype");
}

li#menu-item-16137 {
    background: transparent !important;
    padding: 0px !important;
}

li#menu-item-16137:hover {
    box-shadow: none !important;
    transform: translate(0px) !important;
}

.menu-item-16137 {
    background: transparent !important;
    padding: 0px !important;
}

.menu-item-16137:hover {
    box-shadow: none !important;
    transform: translate(0px) !important;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #DAC782;
}

.woocommerce .star-rating span {
    display: none !important;
}

.site-header {
        margin-bottom: 160px !important;
    }

/* Header Styling */


.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    z-index: 5;
}

/* Menus */
.header-menu .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.header-menu .menu li {
    display: inline-block;
}

.header-menu .menu li a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
    font-family: jost, sans-serif;
    text-transform: uppercase;
    font-weight: 400;
}

.header-menu .menu li a:hover {
    color: #651010;
}

/* Logo */
.header-logo {
    padding-left: 45px;
    flex: 1;
}
.header-logo img {
    max-height: 120px;
    width: auto;
}

/* Right Side */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Button */
.catering-btn {
    color: #651010;
    padding: 10px 20px;
    border: 1px solid #651010;
    text-decoration: none;
    font-weight: 300;
    font-family: jost, sans-serif;
    transition: 0.3s;
}

.catering-btn:hover {
    background-color: #651010;
    color: #fff;
    border: 1px solid #651010;
}


/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #f4e4a6 0%, #e6d280 50%, #d4c266 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
}


/* Left Section */
.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px;
}

.hero-title {
    font-family: simfang;
    font-size: 4.5rem;
    font-weight: 400;
    color: #651010;
    line-height: 0.9;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.hero-title span {
    display: block;
    color: #651010;
    font-size: 4rem;
    margin-top: 10px;
}

.hero-description {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    color: #651010;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 400px;
}

.hero-highlight {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
    color: #651010;
    font-weight: 600;
    font-style: italic;
    position: relative;
    margin-top: 0px;
    transform: rotate(-10deg);
}

/* Center Section - Chef Photo */
.hero-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.slider-container {
    position: relative;
    width: 280px;
    height: 360px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 150px;
    overflow: hidden;
    border: 6px solid #25382D;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Right Section - Service Info */
.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
    position: relative;
}

.service-info {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(139, 69, 19, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.info-title {
    font-family: 'jost', serif;
    font-size: 1.4rem;
    color: #651010;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-align: left;
}

.info-title:last-of-type {
    margin-top: 30px;
}

.hours-section {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(139, 69, 19, 0.2);
    padding-bottom: 15px;
}

.hours-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.days {
    font-family: 'jost', serif;
    font-size: 1rem;
    color: #651010;
    font-weight: 400;
    margin-bottom: 5px;
}

.time {
    font-family: 'jost', serif;
    font-size: 0.95rem;
    color: #651010;
    margin: 0;
    font-weight: 400;
}

/* Decorative Elements */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content h1 {
    font-family: 'Jost';
    font-size: 2rem;
    font-weight: 100;
    width: 67%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr 250px 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-title span {
        font-size: 3rem;
    }
    
    .slider-container {
        width: 230px;
        height: 230px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-left {
        padding-left: 0;
        order: 1;
    }
    
    .hero-center {
        order: 2;
    }
    
    .hero-right {
        padding-right: 0;
        order: 3;
    }
    
    .service-info {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-title span {
        font-size: 2.4rem;
    }
    
    .hero-highlight {
        font-size: 2rem;
    }
    
    .slider-container {
        width: 200px;
        height: 200px;
    }
    
    .service-info {
        padding: 30px 20px;
    }
    
    .info-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-title span {
        font-size: 1.9rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .slider-container {
        width: 180px;
        height: 220px;
    }
}

.category-heading {
    color: #720909;
    font-family: semifang;
    font-size: 2.3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 50px;
}

/* Stock badge styles - add this to your CSS */
.product-image-container {
    position: relative;
    overflow: hidden;
}

.stock-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.out-of-stock-badge {
    background: #dc3545;
    color: white;
}

.low-stock-badge {
    background: #ffc107;
    color: #212529;
}

/* Out of stock product styling */
.product-card[data-stock-status="outofstock"] {
    opacity: 0.7;
}

.product-card[data-stock-status="outofstock"] .product-image {
    filter: grayscale(50%);
}

.product-card button:disabled,
.product-card select:disabled,
.product-card input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #5D0808 !important;
}

.add-to-cart:disabled {
    background: #6c757d !important;
    border-color: #6c757d !important;
    color: white !important;
}

/* Variation select disabled options */
select option:disabled {
    color: #6c757d;
    font-style: italic;
}

.products-grid {
    display: flex
;
    flex-wrap: wrap;
    gap: 30px;
}

h3.category-title {
    font-family: semifang;
    color: #5D0808;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 18px;
    margin-top: 18px;
}


