.elementor-10 .elementor-element.elementor-element-09a7323{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:-50px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(max-width:1024px){.elementor-10 .elementor-element.elementor-element-09a7323{--margin-top:-10px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}}@media(max-width:767px){.elementor-10 .elementor-element.elementor-element-09a7323{--margin-top:-20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}}/* Start custom CSS for html, class: .elementor-element-9f43832 *//* HERO SECTION CSS */
/* Add this to Elementor → Custom CSS */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0A0A0A;
    overflow: hidden;
    padding: 8rem 2rem 6rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(165, 28, 28, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(201, 168, 89, 0.06) 0%, transparent 50%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    background-image: 
        linear-gradient(rgba(201, 168, 89, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 89, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(201, 168, 89, 0.15);
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C9A859;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: #E5E5E5;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: #C9A859;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #A0A0A0;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #A51C1C, #8B1414);
    color: #E5E5E5;
}

.btn-primary:hover {
    background: transparent;
    border-color: #A51C1C;
    color: #A51C1C;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #C9A859;
    border: 1px solid #C9A859;
}

.btn-secondary:hover {
    background: #C9A859;
    color: #0A0A0A;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 1.5rem 4rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d017e05 *//* ABOUT SECTION CSS */
/* Add this to Elementor → Custom CSS */

.about-section {
    padding: 8rem 2.5rem;
    background: #1A1A1A;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 89, 0.15) 50%, transparent);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.section-badge {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A859;
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #C9A859;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #E5E5E5;
    line-height: 1.3;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.section-title .highlight {
    color: #C9A859;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #A0A0A0;
    margin-bottom: 1.5rem;
}

.halal-certification {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(201, 168, 89, 0.15);
}

.halal-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: rgba(165, 28, 28, 0.1);
    border: 1px solid rgba(201, 168, 89, 0.2);
    border-radius: 8px;
}

.halal-icon {
    color: #C9A859;
    flex-shrink: 0;
}

.halal-text {
    flex: 1;
}

.halal-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #E5E5E5;
    margin-bottom: 0.3rem;
}

.halal-subtitle {
    font-size: 0.9rem;
    color: #A0A0A0;
}

.about-image {
    position: relative;
    height: 550px;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.5), transparent 60%);
    pointer-events: none;
}

/* Responsive */
@media (max-width: 968px) {
    .about-section {
        padding: 5rem 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-image {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 4rem 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .halal-badge {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-faeba3c *//* FEATURES SECTION CSS */
/* Add this to Elementor → Custom CSS */

.features-section {
    padding: 8rem 2.5rem;
    background: #0F0F0F;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 3rem 2rem;
    background: #1A1A1A;
    border: 1px solid rgba(201, 168, 89, 0.15);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #C9A859;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #A51C1C, #8B1414);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E5E5E5;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #E5E5E5;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-description {
    font-size: 0.95rem;
    color: #A0A0A0;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 968px) {
    .features-section {
        padding: 5rem 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 4rem 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1945502 *//* MENU SECTION CSS */
/* Add this to Elementor → Custom CSS */

.menu-section {
    padding: 8rem 2.5rem;
    background: #0A0A0A;
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 89, 0.15) 50%, transparent);
}

.menu-container {
    max-width: 1400px;
    margin: 0 auto;
}

.menu-header {
    text-align: center;
    margin-bottom: 5rem;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 1px solid rgba(201, 168, 89, 0.15);
    border-radius: 4px;
    color: #A0A0A0;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-tab:hover,
.menu-tab.active {
    background: #C9A859;
    color: #0A0A0A;
    border-color: #C9A859;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.menu-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: #1A1A1A;
    border: 1px solid rgba(201, 168, 89, 0.15);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-item:hover {
    border-color: #C9A859;
    transform: translateX(5px);
}

.menu-item-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    background: linear-gradient(135deg, #1A1A1A, #0F0F0F);
    flex-shrink: 0;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item-content {
    flex: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    gap: 1rem;
}

.menu-item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #E5E5E5;
    font-weight: 600;
}

.menu-item-price {
    font-size: 1.2rem;
    color: #C9A859;
    font-weight: 700;
    white-space: nowrap;
}

.menu-item-description {
    font-size: 0.95rem;
    color: #A0A0A0;
    line-height: 1.6;
}

.menu-categories {
    max-width: 1000px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background: #1A1A1A;
    border: 1px solid rgba(201, 168, 89, 0.15);
    border-radius: 8px;
}

.category-note h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #E5E5E5;
    margin-bottom: 1.5rem;
}

.category-note ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.8rem;
}

.category-note li {
    color: #A0A0A0;
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.category-note li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #C9A859;
}

.category-note li strong {
    color: #C9A859;
    font-weight: 600;
}

.menu-cta {
    text-align: center;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 968px) {
    .menu-section {
        padding: 5rem 2rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-tabs {
        gap: 0.8rem;
    }
    
    .menu-tab {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .menu-section {
        padding: 4rem 1.5rem;
    }
    
    .menu-item {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .menu-item-image {
        width: 100%;
        height: 200px;
    }
    
    .menu-item-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .menu-categories {
        padding: 1.5rem;
    }
    
    .menu-cta {
        flex-direction: column;
    }
    
    .menu-cta .btn {
        width: 100%;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-09a7323 *//* ================================================
   SOFRA KABAB - MASTER STYLES
   Add this to Elementor → Custom CSS FIRST
   Then add individual section CSS as needed
   ================================================ */

/* CSS Variables - Color Palette */
:root {
    --deep-red: #A51C1C;
    --gold: #C9A859;
    --dark-gold: #B89944;
    --charcoal: #1A1A1A;
    --dark-bg: #0F0F0F;
    --darker-bg: #0A0A0A;
    --light-text: #E5E5E5;
    --muted-text: #A0A0A0;
    --accent-light: #F5F5F0;
    --border-subtle: rgba(201, 168, 89, 0.15);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Shared Component Styles */
*:focus{
    outline:none;
}

button:focus{
    background: none;
}

a:hover{
    color: white;
}

a:focus{
    color: white;
    background: none;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}

/* Section Title */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--light-text);
    line-height: 1.3;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.section-title .highlight {
    color: var(--gold);
}

/* Container */
.about-container,
.features-container,
.menu-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Button Styles */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--deep-red), #8B1414);
    color: var(--light-text);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--deep-red);
    color: var(--deep-red);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--darker-bg);
    transform: translateY(-2px);
}

/* Links */
a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-gold);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--gold);
    color: var(--darker-bg);
}

/* Global Responsive Adjustments */
@media (max-width: 968px) {
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-badge {
        font-size: 0.75rem;
    }
    
    .btn {
        font-size: 0.95rem;
        padding: 0.9rem 2rem;
    }
}

/* Print Styles */
@media print {
    .hero-section,
    .cta-section {
        display: none;
    }
}/* End custom CSS */