/*
Theme Name: SME RestoSuite
Theme URI: 
Author: Your Name
Author URI: 
Description: Basic restaurant theme for SME
Version: 1.0
License: GPL v2
Text Domain: sme-restosuite
*/

/* Your existing CSS content here */
:root {
    --navy: #1e3446;
    --blue: #3e617d;
    --dark: #1a2b3c;
    --orange: #bd5902;
    --text: #333;
    --white: #fff;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.55;
    padding-bottom: 0;
}
a {
    text-decoration: none;
    color: inherit;
}
img, iframe {
    max-width: 100%;
}
.container {
    width: min(100% - 40px, 1140px);
    margin-inline: auto;
}
.text-center {
    text-align: center;
}
.text-white {
    color: #fff;
}
.bg-white {
    background: #fff;
}
.bg-black {
    background: #000;
}
.row {
    display: flex;
    flex-wrap: wrap;
}
.g-0 {
    gap: 0;
}
.col-lg-6 {
    width: 50%;
}
.col-md-6, .col-lg-3 {
    width: 25%;
}
.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.pt-5 {
    padding-top: 3rem;
}
.p-4 {
    padding: 1.5rem;
}
.p-5 {
    padding: 3rem;
}
.mb-0 {
    margin-bottom: 0;
}
.mb-2 {
    margin-bottom: .5rem;
}
.mb-3 {
    margin-bottom: 1rem;
}
.mb-4 {
    margin-bottom: 1.5rem;
}
.mb-5 {
    margin-bottom: 3rem;
}
.mt-4 {
    margin-top: 1.5rem;
}
.my-3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.my-4 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.mx-auto {
    margin-inline: auto;
}
.fw-bold {
    font-weight: 700;
}
.opacity-75 {
    opacity: .75;
}
.display-4 {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    line-height: 1.12;
}
.display-6, h2 {
    font-size: 35px;
    line-height: 1.2;
}
h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;
}
h3 {
    font-size: 1.55rem;
}
h5 {
    font-size: 1.25rem;
}
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 86px;
    background: var(--navy);
    display: flex;
    align-items: center;
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
    .bg-white.p-5, .bg-navy-dark.p-5 {
        border-radius: 10px;
    }
.navbar-brand {
    font-size: 25px;
    color: #fff;
}
.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 44px;
    height: 44px;
    cursor: pointer;
}
.nav-toggle span, .nav-toggle:before, .nav-toggle:after {
    content: "";
    display: block;
    height: 2px;
    background: #fff;
    margin: 7px 5px;
}
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-link {
    color: #fff;
    padding-bottom: 5px;
}
.nav-link:hover, .navbar-brand:hover {
    color: var(--orange);
}
.active {
    border-bottom: 2px solid var(--orange);
}
.btn_blue, .btn_orange {
    display: inline-block;
    color: #fff;
    border-radius: 4px;
    padding: 15px 25px;
    font-weight: 700;
    border:0;
}
.btn_blue {
    background: var(--blue);
}
.btn_orange {
    background: var(--orange);
}
.btn_blue:hover {
    background: var(--orange);
    color: #fff;
}
.btn_orange:hover {
    background: var(--blue);
    color: #fff;
}
.hero {
    min-height: 520px;
    padding: 95px 0 125px;
    display: flex;
    align-items: center;
    background: #182839;
    background-image: linear-gradient(135deg, rgba(30,52,70,.96), rgba(0,0,0,.72));
    background-size: cover;
    background-position: center;
}
@media (min-width: 768px) {
    .hero {
        min-height: 600px;
        padding: 120px 0 160px;
    }
}
.hero h1 {
    max-width: 1000px;
    margin-inline: auto;
}
.hero h5 {
    font-size: clamp(1.1rem, 3vw, 1.55rem);
    margin-top: 20px;
}
.banner-cta {
    margin-top: -80px;
    position: relative;
    z-index: 2;
}
.card {
    background: #fff;
    border-radius: 15px;
    border-top: 5px solid var(--orange);
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.banner-cta .card {
    max-width: 1000px;
    margin-inline: auto;
    padding: 40px 24px;
}
.banner-cta p {
    font-size: 16px;
    padding: 10px;
}
.cta-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
form button.btn_orange {
    cursor: pointer;
}
.takeaway_p {
    max-width: 800px;
    margin-inline: auto;
}
.section-title:after, .orange-divider {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--orange);
    margin: 15px auto;
}
section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 620px;
}
.hero, .banner-cta {
    content-visibility: visible;
    contain-intrinsic-size: auto;
}
.opening-hours-section {
    padding: 50px 0 70px;
}
.hours-card {
    max-width: 500px;
    padding: 35px 50px;
    border: 1px solid #c5c5c5;
    border-radius: 30px;
    background: #fff;
    text-align: left;
}
p.mb-0.address_text {
    width: 200px !important;
}
footer .container {
    padding-bottom: 30px;
}
footer a:hover {
    color: var(--orange) !important;
}
.hour-line, .footer-line {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    margin-bottom: 1rem;
}
.footer-line span {
    font-size: 20px;
    width: 20px;
}
.orange-text {
    color: var(--orange);
}
.icon {
    display: inline-grid;
    place-items: center;
    min-width: 20px;
    color: var(--orange);
    font-style: normal;
}
.online-ordering-section {
    background: var(--dark);
    padding: 80px 1rem;
}
.megaphone-icon {
    font-size: 48px;
}
.ordering-description {
    max-width: 900px;
    margin-inline: auto;
}
.p-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}
.map-container {
    min-height: 450px;
    height: 100%;
}
.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
.map-placeholder {
    min-height: 450px;
    height: 100%;
    display: grid;
    place-items: center;
    text-align: center;
    color: #1e2d3b;
    padding: 24px;
    background: url(https://king-kebab-aberdeen.websitepro.hosting/wp-content/uploads/2026/04/map-2.webp);
    background-size: cover;
    align-items: end;
}
.map-placeholder a {
    color: #fff;
    background: var(--orange);
    padding: 12px 18px;
    border-radius: 4px;
    font-weight: 700;
    margin-top: 12px;
    display: inline-block;
}
.map-placeholder div {
    background: #e9f4ffb3;
    padding: 40px;
    width: 100%;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
}
.bg-navy-darker {
    background: #1e2d3b;
}
.delivery-content {
    max-width: 600px;
}
.delivery-content .orange-divider {
    margin-left: 0;
    width: 70px;
}
.social-card {
    max-width: 40%;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,.09);
}
.facebook-icon-box {
    width: 120px;
    height: 120px;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    display: grid;
    place-items: center;
    margin-inline: auto;
}
.fb-icon {
    display: grid;
    place-items: center;
     background: #fff;
    color: #000;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    font-size: 42px;
    font-weight: 700;
    font-family: cursive;
}
.fb-icon:hover {
    background: var(--orange);
    color: #fff;
}
.bg-navy-dark {
    background: #0d122b;
}
.accordion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.accordion-item {
    margin-bottom: 1rem;
}
.accordion-button {
    width: 100%;
    border: 0;
    border-radius: 4px;
    background: #fff;
    color: #1a2b3c;
    font: 700 1rem Georgia, "Times New Roman", serif;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
}
.accordion-button:after {
    content: "+";
    font-size: 1.2rem;
}
.accordion-button[aria-expanded="true"]:after {
    content: "−";
}
.accordion-body {
    display: none;
    color: #fff;
    border: 1px solid rgba(255,255,255,.3);
    border-top: 0;
    padding: 1rem;
}
.accordion-body.show {
    display: block;
}
footer {
    color: #fff;
}
footer * {
    color: #fff;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.footer-divider {
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,.5);
}
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: .5rem;
}
.footer-list li:before {
    content: "•";
    position: absolute;
    left: 0;
}
.footer-section i {
    width: 20px;
    text-align: center;
}
.mobile-fixed-footer {
    display: none;
}
.copyright {
    padding: 1rem;
    text-align: center;
    border-top: 1px solid #6c757d;
}
.go-top {
    display: none;
    position: fixed;
    bottom: 50px;
    right: 30px;
    z-index: 99;
    border: 0;
    background: var(--blue);
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,.3);
}
.go-top.show {
    display: block;
}
.go-top:hover {
    background: var(--orange);
}
@media (min-width: 991px) {
.col-md-6.mb-3.last_name_col {
    padding-top: 28px;
	}
    .f-d-3{
    padding-bottom: 20px;
    }
}
@media (max-width: 990px) {
    form .col-md-6 {
        width: 100% !important;
    }
    .accordion-grid {
        gap: 0px;
    }
    body {
        padding-bottom: 45px;
    }
    .nav-toggle {
        display: block;
    }
    .navbar {
        height: 76px;
    }
    .navbar-collapse {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--blue);
        display: none;
        padding: 10px 20px 20px;
    }
    .navbar-collapse.open {
        display: block;
    }
    .navbar-nav {
        display: block;
    }
    .navbar-nav li {
        margin: 0;
    }
    .nav-link {
        display: block;
        padding: 10px 0;
        text-transform: uppercase;
    }
    .navbar-nav .btn_blue, .navbar-nav .btn_orange {
        display: none;
    }
    .mobile-fixed-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        display: flex;
    }
    .mobile-fixed-footer a {
        flex: 1;
        text-align: center;
        border-radius: 0;
        padding: 12px 0;
    }
    .container {
        width: 100%;
        padding-inline: 20px;
    }
    .go-top {
        bottom: 80px;
        right: 20px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .accordion-grid {
        grid-template-columns: 1fr;
    }
    .col-lg-6 {
        width: 100%;
    }
    .map-container {
        min-height: 350px;
    }
    .delivery-content-wrap {
        padding: 30px 30px 50px !important;
    }
}
@media (max-width: 767px) {
	.mb-4 {
    margin-bottom: 10px;
	}
    .hero {
        min-height: 520px;
        padding: 90px 0 120px;
    }
    .accordion-grid {
        gap: 0;
    }
    .online-ordering-section {
        padding-top: 50px;
        padding-bottom: 30px;
    }
    .opening-hours-section {
        padding-top: 20px;
        padding-bottom: 50px;
    }
    .p-70 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .hours-card {
        padding: 25px;
        margin-inline: 15px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .banner-cta .card {
        padding: 30px 18px;
    }
    .col-md-6, .col-lg-3 {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .cta-row {
        display: grid;
    }
    .btn_blue, .btn_orange {
        text-align: center;
    }
    .banner-cta {
        margin-top: -55px;
    }
    .hero {
        min-height: 500px;
    }
    .display-4 {
        font-size: 2rem;
    }
}


/* Page Header Styles */

.page-header {
  min-height: 300px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://king-kebab-aberdeen.websitepro.hosting/wp-content/uploads/2026/04/sub-banner.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    margin-top: 0;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.page-header .container {
    margin-inline: auto;
    text-align: left;
    height: 350px;
        display: flex;
    align-items: center;
}

.page-header h1 {
    font-size: 56px;
    margin-bottom: 0;
}

.page-header .text-white {
    color: #fff;
    display: inline-block;
    position: relative;
}

.page-header .text-white:after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--orange, #bd5902);
    border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    section.delivery-map-section {
    padding: 0 15px;
    }
    .map-placeholder{
        padding: 0;
    }
    .banner-cta h3,  .opening-hours-section h2, .delivery-content h2, .social-media-section h2 {
    margin-bottom: 0;
    }
    .faq-section .mb-5 {
    margin-bottom: 25px;
    }
    .page-header {
        min-height: 250px;
        background-attachment: scroll;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header .text-white:after {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .page-header {
        min-height: 200px;
    }
}






/*Contact page*/


/* Info Cards in Navy Box */
.info-card-custom {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.icon-box-white {
    width: 45px;
    height: 45px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.info-card-custom:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Contact Page Additional Styles */
.bg-light {
    background-color: #f8f9fa;
}

.page-header-mini {
    padding: 20px 0;
}

.page-header-mini h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--navy, #1e3446);
    margin-bottom: 0;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-family: Georgia, "Times New Roman", serif;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.row {
    display: flex;
    flex-wrap: wrap;
/*     margin: 0 -15px; */
}

.col-lg-7 {
    width: 58.333%;
    padding: 0 15px;
}

.col-lg-5 {
    width: 41.666%;
    padding: 0 15px;
}

.col-md-6 {
    width: 50%;
    padding: 0 12px;
}

.shadow-sm {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.rounded-4 {
    border-radius: 16px;
}

.text-muted {
    color: #6c757d;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--orange, #bd5902);
    box-shadow: 0 0 0 3px rgba(189, 89, 2, 0.1);
}

textarea.form-control {
    resize: vertical;
    font-family: Georgia, "Times New Roman", serif;
}

.h-100 {
    height: 100%;
}

.info-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: background 0.2s;
    height: 80px;
    cursor: pointer;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.info-icon {
    font-size: 28px;
    min-width: 50px;
    text-align: center;
        margin-top: -20px;
}

.social-icon-link {
    display: inline-block;
    text-decoration: none;
}

.fb-icon-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #0d122b;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 700;
    transition: all 0.2s;
        font-family: cursive;
}

.fb-icon-small:hover {
    background: var(--orange, #bd5902);
    color: #fff;
    transform: translateY(-2px);
}

.border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.text-orange { color: #d65d0e; }

/* Responsive Styles for Contact Page */
@media (max-width: 992px) {
    .col-lg-7, .col-lg-5 {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .row {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .col-md-6 {
        width: 100%;
    }
    
    .bg-white.p-5, .bg-navy-dark.p-5 {
        padding: 1.5rem !important;
    }
    
    .info-card-custom, .info-card {
        padding: 5px !important;
    }
    h2.fw-bold.mb-4 {
    margin-bottom: 30px;
	}
    #scrollTopBtn {
    bottom: 130px !important;
    right: 20px !important;
    }
}

@media (max-width: 480px) {
    .alert {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    button.btn_orange {
        width: 100%;
    }
    .info-card a.mb-0.small.opacity-75 {
    font-size: 13px !important;
	}
}

@media (min-width: 768px) {
.container h2 {
    margin-bottom: 10px;
}
}


#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 15px 10px 10px 10px;
    font-size: 18px;
    border-radius: 5px;
    background-color: var(--orange);
    color: white;
    cursor: pointer;
    border: 1px solid #fff;
    z-index: 9999;
    font-family: monospace;
    line-height: 10px;
}

#scrollTopBtn:hover {
  background-color: var(--blue);
    color: white;
}

