/* St. Ann's Restaurant - Main Stylesheet */

:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ecb328;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

/* Global Styles */
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

/* Custom Navigation Bar */
.custom-navbar {
    background-color: #fff;
    padding: 5px 0 15px 0;
    position: relative;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.custom-navbar-toggler {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.custom-navbar-toggler span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.custom-navbar-toggler.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.custom-navbar-toggler.active span:nth-child(2) {
    opacity: 0;
}

.custom-navbar-toggler.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.custom-navbar-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.custom-navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
}

.custom-logo-icon {
    color: #ecb328;
    font-size: 1.5rem;
}

.custom-logo-text {
    color: #ccc;
    font-weight: 400;
}

.custom-logo-img {
    height: 100px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.custom-navbar-nav {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
    flex-wrap: wrap;
}

.custom-nav-item {
    position: relative;
}

.custom-nav-link {
    color: #333;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.custom-nav-link.active {
    color: #ecb328;
}

.custom-nav-link:hover {
    color: #ecb328;
}

.custom-nav-link.dropdown-toggle {
    cursor: pointer;
}

.custom-nav-link .fa-chevron-down {
    font-size: 0.7rem;
    margin-left: 5px;
}

.dropdown-menu {
    background-color: #000;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 10px 0;
    margin-top: 10px;
    min-width: 180px;
}

.dropdown-item {
    color: #fff;
    padding: 8px 20px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background-color: #333;
    color: #ecb328;
}

.custom-buy-btn {
    background-color: #ecb328;
    color: #000;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.custom-buy-btn:hover {
    background-color: #ffcd39;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(255, 193, 7, 0.4);
    color: #000;
}

.custom-navbar-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.custom-navbar-social .social-link {
    color: #333;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.custom-navbar-social .social-link:hover {
    color: #ecb328;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
    padding: 0;
}

.hero-slider-top-border {
    height: 4px;
    background-color: #ecb328;
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 600px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 20px;
    color: white;
}

.welcome-banner {
    background-color: #000;
    padding: 8px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.welcome-banner::before,
.welcome-banner::after {
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
}

.welcome-banner::before {
    left: -10px;
    border-width: 0 10px 32px 0;
    border-color: transparent #000 transparent transparent;
}

.welcome-banner::after {
    right: -10px;
    border-width: 32px 10px 0 0;
    border-color: #000 transparent transparent transparent;
}

.diamond-bullet {
    color: white;
    font-size: 10px;
}

.hero-main-title {
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 20px 0;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-decorative {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    width: 100%;
    max-width: 500px;
}

.decorative-line {
    flex: 1;
    height: 2px;
    background-image: repeating-linear-gradient(
        to right,
        white 0px,
        white 4px,
        transparent 4px,
        transparent 8px
    );
    max-width: 150px;
}

.decorative-icon {
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 20px 0 30px;
    font-weight: 500;
}

.hero-cta-btn {
    display: inline-block;
    padding: 12px 40px;
    background-color: white;
    color: #000;
    text-decoration: none;
    border: 2px solid #000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.hero-cta-btn:hover {
    background-color: #ecb328;
    border-color: #ecb328;
    color: #000;
    transform: translateY(-2px);
}

/* Hero Slider Navigation */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ecb328;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #000;
    font-size: 20px;
}

.hero-slider-nav:hover {
    background-color: #ffcd39;
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-prev {
    left: 20px;
}

.hero-slider-next {
    right: 20px;
}

/* Hero Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-slider-dots .dot.active {
    background-color: #ecb328;
    border-color: white;
    transform: scale(1.2);
}

.hero-slider-dots .dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* We Believe Section */
.we-believe-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.we-believe-image {
    position: relative;
}

.we-believe-image img {
    width: 100%;
    height: auto;
    display: block;
}

.we-believe-content {
    padding: 40px;
    text-align: center;
}

.we-believe-heading {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.we-believe-quote {
    position: relative;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.quote-mark {
    font-size: 4rem;
    font-weight: 300;
    color: #333;
    line-height: 1;
    font-family: Georgia, serif;
}

.quote-mark-left {
    align-self: flex-start;
}

.quote-mark-right {
    align-self: flex-end;
}

.quote-text {
    font-size: 2.5rem;
    font-style: italic;
    font-weight: 400;
    color: #333;
    line-height: 1.2;
}

.we-believe-divider {
    width: 100px;
    height: 2px;
    margin: 30px auto;
    background-image: repeating-linear-gradient(
        to right,
        #333 0px,
        #333 4px,
        transparent 4px,
        transparent 8px
    );
}

.we-believe-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    text-align: left;
}

.we-believe-btn {
    display: inline-block;
    padding: 12px 40px;
    background-color: white;
    color: #000;
    text-decoration: none;
    border: 2px solid #000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.we-believe-btn:hover {
    background-color: #000;
    color: white;
    transform: translateY(-2px);
}

/* Services Section */
.services-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.services-header {
    margin-bottom: 60px;
}

.services-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.services-title-top {
    font-size: 2.5rem;
    font-weight: 300;
    font-style: italic;
    color: #ecb328;
    letter-spacing: 2px;
    line-height: 1.2;
}

.services-title-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 600px;
}

.services-title-main {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
}

.services-divider-left,
.services-divider-right {
    flex: 1;
    height: 2px;
    background-color: #000;
    position: relative;
    max-width: 150px;
}

.services-divider-left::after,
.services-divider-right::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
}

.services-divider-left::after {
    right: 0;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #000;
}

.services-divider-right::after {
    left: 0;
    border-width: 6px 8px 6px 0;
    border-color: transparent #000 transparent transparent;
}

.service-block {
    position: relative;
    text-align: center;
    padding: 20px 15px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-block:hover .service-arc {
    background-color: #ecb328;
    border-color: #ecb328;
}

.service-arc {
    width: 120px;
    height: 60px;
    border: 4px solid #000;
    border-bottom: none;
    border-radius: 120px 120px 0 0;
    margin-bottom: -30px;
    position: relative;
    z-index: 1;
    background-color: transparent;
    transition: all 0.3s ease;
}

.service-ribbon {
    background-color: #000;
    color: #fff;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    display: inline-block;
}

.service-ribbon::before,
.service-ribbon::after {
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
}

.service-ribbon::before {
    left: -10px;
    border-width: 0 10px 38px 0;
    border-color: transparent #000 transparent transparent;
}

.service-ribbon::after {
    right: -10px;
    border-width: 38px 10px 0 0;
    border-color: #000 transparent transparent transparent;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    text-align: left;
    margin: 0;
    padding-top: 10px;
}

/* Our Special Section */
.our-special-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.our-special-header {
    margin-bottom: 50px;
}

.our-special-title {
    font-size: 3rem;
    font-weight: 400;
    font-style: italic;
    color: #ecb328;
    margin-bottom: 15px;
    font-family: Georgia, serif;
    letter-spacing: 1px;
}

.our-special-subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.our-special-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

.our-special-divider-left,
.our-special-divider-right {
    flex: 1;
    height: 2px;
    background-color: #000;
    position: relative;
    max-width: 80px;
}

.our-special-divider-left::after,
.our-special-divider-right::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
}

.our-special-divider-left::after {
    right: 0;
    border-width: 4px 0 4px 6px;
    border-color: transparent transparent transparent #000;
}

.our-special-divider-right::after {
    left: 0;
    border-width: 4px 6px 4px 0;
    border-color: transparent #000 transparent transparent;
}

.special-product-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.special-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.special-product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background-color: #f8f9fa;
}

.special-product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sale-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ecb328;
    color: #000;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.sale-tag::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 0 6px;
    border-color: #d4a017 transparent transparent transparent;
}

.special-product-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.special-product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.4;
}

.special-product-prices {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.original-price {
    font-size: 0.95rem;
    color: #999;
    text-decoration: line-through;
}

.sale-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    text-decoration: underline;
}

.add-to-cart-btn {
    display: inline-block;
    background-color: #ecb328;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
}

.add-to-cart-btn:hover {
    background-color: #ffcd39;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    color: #000;
}

/* Gallery Section */
.gallery-section {
    width: 100%;
    overflow: hidden;
}

.gallery-panel {
    position: relative;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px 20px;
    transition: transform 0.3s ease;
}

.gallery-panel:hover {
    transform: scale(1.05);
    z-index: 1;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease;
}

.gallery-panel:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.gallery-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 100%;
}

.gallery-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    font-family: Georgia, serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Old hero section styles for backward compatibility */
.hero-section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../images/hero-bg.jpg') center/cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-buttons {
    margin-top: 2rem;
}

/* Page Header */
.page-header {
    padding-top: 60px !important;
}

/* Product Cards */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.product-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.05);
}

.product-card .price {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Category Title */
.category-title {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
}

.category-title:first-child {
    margin-top: 0;
}

/* About Image */
.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Contact Form */
.contact-info .icon-box {
    width: 50px;
    text-align: center;
}

.social-links a {
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

/* Contact Page Styles */
.contact-page-section {
    background-color: #ffffff;
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.contact-page-header {
    margin-bottom: 50px;
}

.contact-page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #666;
}

.breadcrumb-item {
    background-color: #e0e0e0;
    padding: 6px 15px;
    border-radius: 4px;
    color: #666;
    font-weight: 500;
}

.breadcrumb-separator {
    color: #999;
}

.breadcrumb-current {
    color: #333;
    font-weight: 600;
}

.contact-form-wrapper,
.contact-info-wrapper {
    padding: 0;
}

.contact-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.contact-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #ecb328;
}

.contact-form {
    margin-top: 30px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form .form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 0;
    background-color: #fff;
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #999;
    box-shadow: none;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    padding: 12px 40px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 10px;
}

.contact-submit-btn:hover {
    background-color: #000;
    color: #fff;
}

.contact-alert {
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 4px;
    font-size: 0.95rem;
}

.contact-alert.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-alert.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-info-list {
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon-circle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info-text {
    flex: 1;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-info-text a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: #ecb328;
}

.contact-description {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Full Width Map Section */
.contact-map-section {
    width: 100%;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
    overflow: hidden;
}

.contact-map-container {
    width: 100vw;
    max-width: 100vw;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.contact-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Responsive Styles for Contact Page */
@media (max-width: 768px) {
    .contact-page-title {
        font-size: 2rem;
    }
    
    .contact-section-title {
        font-size: 1.3rem;
    }
    
    .contact-info-item {
        gap: 15px;
    }
    
    .contact-icon-circle {
        width: 35px;
        height: 35px;
        min-width: 35px;
        font-size: 0.9rem;
    }
    
    .contact-form .form-control {
        font-size: 16px; /* Prevent iOS zoom */
    }
}

@media (max-width: 480px) {
    .contact-page-section {
        padding: 40px 0;
    }
    
    .contact-page-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .contact-breadcrumb {
        font-size: 0.85rem;
    }
    
    .breadcrumb-item {
        padding: 5px 12px;
    }
    
    .contact-section-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .contact-form .form-group {
        margin-bottom: 20px;
    }
    
    .contact-info-item {
        margin-bottom: 20px;
    }
    
    .contact-submit-btn {
        width: 100%;
        padding: 12px 20px;
    }
    
    .contact-map-container {
        height: 350px;
    }
}

/* Map Container */
.map-container {
    border-radius: 10px;
    overflow: hidden;
}

/* Footer */
.custom-footer {
    margin-top: auto;
    position: relative;
}

/* Top Decorative Border with Triangles */
.footer-top-border {
    height: 20px;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.footer-top-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        #000 0px,
        #000 18px,
        transparent 18px,
        transparent 20px
    );
}

.footer-top-border::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 8px,
            #000 8px,
            #000 10px,
            transparent 10px,
            transparent 18px,
            #000 18px,
            #000 20px
        );
    clip-path: polygon(
        0 0, 10px 0, 20px 20px, 30px 0, 40px 20px, 
        50px 0, 60px 20px, 70px 0, 80px 20px, 
        90px 0, 100px 20px, 100% 20px, 100% 0
    );
}

/* Trusted Expert Support Section */
.trusted-expert-section {
    width: 100%;
    overflow: hidden;
    padding: 80px 0;
}

.trusted-expert-left {
    background-color: #2c2c2c;
    color: #fff;
    padding: 80px 50px;
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trusted-expert-content {
    position: relative;
    z-index: 2;
}

.trusted-expert-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    font-family: Georgia, serif;
    text-align: center;
}

.trusted-expert-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.trusted-expert-btn {
    display: inline-block;
    background-color: #d4a574;
    color: #fff;
    padding: 12px 35px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 14px;
    text-align: center;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    display: block;
}

.trusted-expert-btn:hover {
    background-color: #c49564;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.trusted-expert-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    opacity: 0.3;
    z-index: 1;
}

.trusted-expert-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.trusted-expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trusted-expert-right {
    background-color: #f8f9fa;
    padding: 80px 50px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trusted-expert-testimonial {
    width: 100%;
    max-width: 400px;
}

.trusted-expert-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.testimonial-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-nav {
    background: transparent;
    border: none;
    color: #333;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
    z-index: 2;
}

.testimonial-nav:hover {
    color: #d4a574;
}

.testimonial-content {
    flex: 1;
    text-align: center;
}

.testimonial-profile {
    margin-bottom: 20px;
}

.testimonial-avatar {
    margin-bottom: 15px;
    color: #666;
}

.testimonial-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-location {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 15px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background-color: #d4a574;
    width: 12px;
    height: 12px;
}

/* About Hero Section */
.about-hero-section {
    position: relative;
    background-image: url('../images/abtitle.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
}

.about-hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #fff;
    font-family: Georgia, serif;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.about-hero-subtitle {
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 500;
    margin: 0;
}

/* Products Hero Section */
.products-hero-section {
    position: relative;
    background-image: url('../images/prd1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.products-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
}

.products-hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #fff;
    font-family: Georgia, serif;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.products-hero-subtitle {
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 500;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Our Pastries Section */
.our-pastries-section {
    position: relative;
    background-image: url('../images/prodt1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.our-pastries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.our-pastries-title {
    font-size: 4.5rem;
    font-weight: 400;
    font-style: italic;
    color: #fff;
    font-family: Georgia, serif;
    margin-bottom: 50px;
    letter-spacing: 3px;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.pastries-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
}

.pastry-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 20px 0;
}

.pastry-image-wrapper {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #f0f0f0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.pastry-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pastry-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pastry-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.pastry-description {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.pastry-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

.pastry-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #212529;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.pastry-tag {
    display: inline-block;
    padding: 6px 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    border-radius: 3px;
}

.tag-sale {
    background-color: #212529;
}

.tag-promo {
    background-color: #d4a574;
}

.tag-new {
    background-color: #212529;
}

.pastry-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 15px 0;
}

/* Our Cakes Section */
.our-cakes-section {
    position: relative;
    background-image: url('../images/prodt2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.our-cakes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.our-cakes-title {
    font-size: 4.5rem;
    font-weight: 400;
    font-style: italic;
    color: #fff;
    font-family: Georgia, serif;
    margin-bottom: 50px;
    letter-spacing: 3px;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.cakes-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
}

.cake-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 20px 0;
}

.cake-image-wrapper {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #f0f0f0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.cake-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cake-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cake-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cake-description {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.cake-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

.cake-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #212529;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cake-tag {
    display: inline-block;
    padding: 6px 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    border-radius: 3px;
}

.cake-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 15px 0;
}
.gallery-hero-section {
    position: relative;
    background-image: url('../images/abtitle.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0;
}

.gallery-hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    font-family: Georgia, serif;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.gallery-hero-subtitle {
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 500;
    margin: 0;
}

/* Gallery Grid Section */
.gallery-grid-section {
    background-color: #1a1a1a;
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid-item {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    background-color: #2c2c2c;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-grid-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-grid-item:hover .gallery-grid-image {
    transform: scale(1.1);
}

/* What We Do Section */
.what-we-do-section {
    background-color: #fff;
    padding: 80px 0;
}

.what-we-do-content {
    padding-right: 40px;
}

.what-we-do-label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d4a574;
    font-weight: 600;
    margin-bottom: 15px;
}

.what-we-do-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    font-family: Georgia, serif;
    margin-bottom: 25px;
    line-height: 1.2;
}

.what-we-do-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
}

.quality-standards {
    margin-bottom: 35px;
}

.quality-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.progress-bar-wrapper {
    width: 100%;
    height: 8px;
    background-color: #e6e6e6;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-bar-wrapper:hover {
    background-color: #333;
}

.progress-bar-fill {
    height: 100%;
    background-color: #333;
    border-radius: 4px;
    transition: width 0.3s ease;
    position: relative;
}

.progress-bar-wrapper:hover .progress-bar-fill {
    width: 100% !important;
    background-color: #000;
}

.what-we-do-btn {
    display: inline-block;
    background-color: #d4a574;
    color: #000;
    padding: 12px 35px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.what-we-do-btn:hover {
    background-color: #c49564;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
    color: #000;
}

.what-we-do-image {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.what-we-do-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Main Footer Section */
.footer-main {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 60px 0;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    font-style: italic;
    color: #ecb328;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.footer-logo {
    margin-bottom: 20px;
    text-align: center;
}

.footer-logo-img {
    max-width: 150px;
    height: auto;
    display: inline-block;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 25px;
}

.footer-social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: transparent;
    color: #aaa;
    border: 1px solid #555;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-icon:hover {
    background-color: #ecb328;
    color: #000;
    border-color: #ecb328;
    transform: translateY(-3px);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list li a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: block;
}

.footer-list li a:hover {
    color: #ecb328;
    padding-left: 5px;
}

/* Footer Menu - Header Style */
.footer-menu {
    margin-top: 20px;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-item {
    margin-bottom: 15px;
}

.footer-menu-item:last-child {
    margin-bottom: 0;
}

.footer-menu-link {
    color: #aaa;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: block;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.footer-menu-link.uppercase {
    text-transform: uppercase;
}

.footer-menu-link:hover {
    color: #ecb328;
}

.footer-menu-link.active {
    color: #ecb328;
}

/* Footer Gallery */
.footer-gallery {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-gallery-item {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.footer-gallery-item:hover {
    transform: scale(1.1);
}

.footer-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-cta-title {
    font-size: 1.1rem;
    font-weight: 700;
    font-style: italic;
    color: #ecb328;
    margin-bottom: 15px;
    font-family: Georgia, serif;
}

.footer-buy-btn {
    display: inline-block;
    background-color: #ecb328;
    color: #2c2c2c;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-buy-btn:hover {
    background-color: #ffcd39;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    color: #000;
}

/* Decorative Border (Sawtooth Pattern) */
.footer-border {
    height: 20px;
    background-color: #ecb328;
    position: relative;
    overflow: hidden;
}

.footer-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2c2c2c;
    clip-path: polygon(
        0 0, 10px 0, 20px 20px, 30px 0, 40px 20px, 
        50px 0, 60px 20px, 70px 0, 80px 20px, 
        90px 0, 100px 20px, 110px 0, 120px 20px,
        130px 0, 140px 20px, 150px 0, 160px 20px,
        100% 20px, 100% 0
    );
}

/* Copyright Section */
.footer-copyright {
    background-color: #ecb328;
    padding: 20px 0;
}

.copyright-text {
    text-align: center;
    color: #000;
    margin: 0;
    font-size: 0.9rem;
}

/* Old Footer Styles */
footer {
    margin-top: auto;
}

footer .social-links a {
    display: inline-block;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

footer .social-links a:hover {
    transform: translateY(-3px);
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #ecb328;
    border: 2px solid #212529;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 0;
    line-height: 1;
}

.back-to-top-btn.show {
    display: flex;
}

.back-to-top-btn:hover {
    background-color: #ffcd39;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.back-to-top-btn:active {
    transform: translateY(-1px);
}

.back-to-top-btn i {
    font-size: 12px;
    line-height: 1;
    margin: -2px 0;
}

.back-to-top-btn i:first-child {
    margin-bottom: -4px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-slider-container {
        height: 500px;
    }
    
    .hero-main-title {
        font-size: 3rem;
    }
    
    .hero-slider-nav {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .hero-slider-prev {
        left: 15px;
    }
    
    .hero-slider-next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    /* Custom Navbar Responsive */
    .custom-navbar {
        padding: 5px 0 12px 0;
    }
    
    .navbar-content {
        position: relative;
    }
    
    .custom-logo-img {
        height: 80px;
        max-width: 150px;
    }
    
    .custom-navbar-toggler {
        display: flex;
    }
    
    .custom-navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }
    
    .custom-navbar-menu.active {
        display: flex;
    }
    
    .custom-navbar-nav {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .custom-nav-item {
        width: 100%;
    }
    
    .custom-nav-link {
        padding: 10px 0;
        width: 100%;
    }
    
    .custom-buy-btn {
        display: none;
    }
    
    .custom-navbar-social {
        justify-content: center;
        margin-top: 10px;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 10px;
        margin-left: 20px;
    }
    
    .hero-slider-container {
        height: 400px;
    }
    
    .hero-main-title {
        font-size: 2rem;
        letter-spacing: 2px;
        margin: 15px 0;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
        margin: 15px 0 20px;
    }
    
    .welcome-banner {
        font-size: 12px;
        padding: 6px 15px;
        margin-bottom: 15px;
    }
    
    .hero-decorative {
        margin: 15px 0;
        max-width: 300px;
    }
    
    .decorative-icon {
        font-size: 20px;
    }
    
    .hero-cta-btn {
        padding: 10px 30px;
        font-size: 12px;
    }
    
    .hero-slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .hero-slider-prev {
        left: 10px;
    }
    
    .hero-slider-next {
        right: 10px;
    }
    
    .hero-slider-dots {
        bottom: 20px;
    }
    
    .hero-section {
        min-height: 400px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .product-card {
        margin-bottom: 1.5rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    /* We Believe Section Responsive */
    .we-believe-section {
        padding: 60px 0;
    }
    
    .we-believe-content {
        padding: 20px;
        text-align: center;
    }
    
    .we-believe-heading {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .quote-mark {
        font-size: 3rem;
    }
    
    .quote-text {
        font-size: 1.8rem;
    }
    
    .we-believe-text {
        text-align: center;
        font-size: 0.95rem;
    }
    
    .we-believe-btn {
        padding: 10px 30px;
        font-size: 12px;
    }
    
    /* Services Section Responsive */
    .services-section {
        padding: 60px 0;
    }
    
    .services-title-top {
        font-size: 2rem;
    }
    
    .services-title-main {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .services-divider-left,
    .services-divider-right {
        max-width: 100px;
    }
    
    .service-block {
        min-height: 260px;
        padding: 15px 10px;
    }
    
    .service-arc {
        width: 100px;
        height: 50px;
        border-width: 3px;
    }
    
    .service-ribbon {
        padding: 8px 20px;
        font-size: 12px;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    /* Our Special Section Responsive */
    .our-special-section {
        padding: 60px 0;
    }
    
    .our-special-title {
        font-size: 2.5rem;
    }
    
    .our-special-subtitle {
        font-size: 1rem;
    }
    
    .special-product-content {
        padding: 15px;
    }
    
    .special-product-title {
        font-size: 1rem;
    }
    
    .sale-price {
        font-size: 1.1rem;
    }
    
    .add-to-cart-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    /* Gallery Section Responsive */
    .gallery-panel {
        height: 350px;
        padding: 30px 15px;
    }
    
    .gallery-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .gallery-description {
        font-size: 0.9rem;
    }
    
    /* Footer Responsive */
    .footer-main {
        padding: 40px 0;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-logo-img {
        max-width: 120px;
    }
    
    .footer-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .footer-gallery-item {
        width: 70px;
        height: 70px;
    }
    
    .footer-cta-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .footer-buy-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    /* Back to Top Button Tablet */
    .back-to-top-btn {
        width: 48px;
        height: 48px;
        bottom: 25px;
        right: 25px;
    }
    
    /* Trusted Expert Section Responsive */
    .trusted-expert-section {
        padding: 60px 0;
    }
    
    .trusted-expert-left,
    .trusted-expert-right {
        padding: 50px 30px;
        min-height: 400px;
    }
    
    .trusted-expert-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .trusted-expert-text,
    .trusted-expert-description {
        font-size: 0.95rem;
    }
    
    .trusted-expert-image {
        height: 400px;
    }
    
    /* About Hero Section Responsive */
    .about-hero-section {
        min-height: 350px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .about-hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
    
    /* Products Hero Section Responsive */
    .products-hero-section {
        min-height: 350px;
    }
    
    .products-hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .products-hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
    
    /* Our Pastries Section Responsive */
    .our-pastries-section {
        padding: 60px 0;
        min-height: 600px;
        background-attachment: scroll;
    }
    
    .our-pastries-title {
        font-size: 3rem;
        margin-bottom: 30px;
    }
    
    .pastries-card {
        padding: 30px 20px;
    }
    
    .pastry-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 0;
    }
    
    .pastry-image-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .pastry-title {
        font-size: 1.3rem;
    }
    
    .pastry-description {
        font-size: 0.9rem;
    }
    
    .pastry-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .pastry-price {
        font-size: 1.2rem;
    }
    
    /* Our Cakes Section Responsive */
    .our-cakes-section {
        padding: 60px 0;
        min-height: 600px;
        background-attachment: scroll;
    }
    
    .our-cakes-title {
        font-size: 3rem;
        margin-bottom: 30px;
    }
    
    .cakes-card {
        padding: 30px 20px;
    }
    
    .cake-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 0;
    }
    
    .cake-image-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .cake-title {
        font-size: 1.3rem;
    }
    
    .cake-description {
        font-size: 0.9rem;
    }
    
    .cake-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .cake-price {
        font-size: 1.2rem;
    }
    
    /* What We Do Section Responsive */
    .what-we-do-section {
        padding: 60px 0;
    }
    
    .what-we-do-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .what-we-do-title {
        font-size: 2.2rem;
    }
    
    .what-we-do-text {
        font-size: 0.95rem;
    }
    
    /* Gallery Grid Responsive */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 15px;
    }
    
    .gallery-grid-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .custom-logo-img {
        height: 60px;
        max-width: 120px;
    }
    
    .hero-slider-container {
        height: 350px;
    }
    
    .hero-main-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
        margin: 10px 0;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1px;
        margin: 10px 0 15px;
    }
    
    .welcome-banner {
        font-size: 10px;
        padding: 5px 12px;
        margin-bottom: 10px;
    }
    
    .diamond-bullet {
        font-size: 8px;
    }
    
    .hero-decorative {
        margin: 10px 0;
        max-width: 250px;
        gap: 10px;
    }
    
    .decorative-icon {
        font-size: 18px;
    }
    
    .hero-cta-btn {
        padding: 8px 25px;
        font-size: 11px;
    }
    
    .hero-slider-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .hero-slider-prev {
        left: 5px;
    }
    
    .hero-slider-next {
        right: 5px;
    }
    
    .hero-slider-dots {
        bottom: 15px;
    }
    
    .hero-slider-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .hero-section {
        min-height: 300px;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    /* We Believe Section Small Mobile */
    .we-believe-section {
        padding: 40px 0;
    }
    
    .we-believe-content {
        padding: 15px;
    }
    
    .we-believe-heading {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .quote-mark {
        font-size: 2.5rem;
    }
    
    .quote-text {
        font-size: 1.4rem;
    }
    
    .we-believe-divider {
        width: 80px;
        margin: 20px auto;
    }
    
    .we-believe-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .we-believe-btn {
        padding: 8px 25px;
        font-size: 11px;
    }
    
    /* Services Section Small Mobile */
    .services-section {
        padding: 40px 0;
    }
    
    .services-title-top {
        font-size: 1.5rem;
    }
    
    .services-title-main {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .services-title-bottom {
        gap: 10px;
    }
    
    .services-divider-left,
    .services-divider-right {
        max-width: 60px;
    }
    
    .service-block {
        min-height: 240px;
        padding: 10px;
    }
    
    .service-arc {
        width: 80px;
        height: 40px;
        border-width: 2px;
    }
    
    .service-ribbon {
        padding: 6px 15px;
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .service-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* Our Special Section Small Mobile */
    .our-special-section {
        padding: 40px 0;
    }
    
    .our-special-title {
        font-size: 2rem;
    }
    
    .our-special-subtitle {
        font-size: 0.9rem;
    }
    
    .our-special-subtitle-wrapper {
        gap: 10px;
    }
    
    .our-special-divider-left,
    .our-special-divider-right {
        max-width: 50px;
    }
    
    .special-product-content {
        padding: 12px;
    }
    
    .special-product-title {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .special-product-prices {
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .original-price {
        font-size: 0.85rem;
    }
    
    .sale-price {
        font-size: 1rem;
    }
    
    .sale-tag {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .add-to-cart-btn {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    /* Gallery Section Small Mobile */
    .gallery-panel {
        height: 300px;
        padding: 25px 15px;
    }
    
    .gallery-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .gallery-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* Footer Small Mobile */
    .footer-main {
        padding: 30px 0;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .footer-logo-img {
        max-width: 100px;
    }
    
    .footer-text {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .footer-gallery {
        gap: 6px;
        margin-bottom: 15px;
    }
    
    .footer-gallery-item {
        width: 60px;
        height: 60px;
    }
    
    .footer-cta-title {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .footer-buy-btn {
        padding: 8px 18px;
        font-size: 12px;
    }
    
    .copyright-text {
        font-size: 0.8rem;
    }
    
    /* Trusted Expert Section Small Mobile */
    .trusted-expert-section {
        padding: 40px 0;
    }
    
    .trusted-expert-left,
    .trusted-expert-right {
        padding: 40px 20px;
        min-height: 350px;
    }
    
    .trusted-expert-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .trusted-expert-text,
    .trusted-expert-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .trusted-expert-btn {
        padding: 10px 25px;
        font-size: 12px;
        max-width: 200px;
    }
    
    .trusted-expert-image {
        height: 300px;
    }
    
    .testimonial-name {
        font-size: 1.1rem;
    }
    
    .testimonial-location {
        font-size: 0.9rem;
    }
    
    /* About Hero Section Small Mobile */
    .about-hero-section {
        min-height: 300px;
    }
    
    .about-hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .about-hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    
    /* Products Hero Section Small Mobile */
    .products-hero-section {
        min-height: 300px;
    }
    
    .products-hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .products-hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    
    /* Our Pastries Section Small Mobile */
    .our-pastries-section {
        padding: 40px 0;
        min-height: 500px;
    }
    
    .our-pastries-title {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }
    
    .pastries-card {
        padding: 25px 15px;
    }
    
    .pastry-item {
        padding: 20px 0;
    }
    
    .pastry-image-wrapper {
        width: 90px;
        height: 90px;
    }
    
    .pastry-title {
        font-size: 1.1rem;
    }
    
    .pastry-description {
        font-size: 0.85rem;
    }
    
    .pastry-price {
        font-size: 1.1rem;
    }
    
    .pastry-tag {
        padding: 5px 12px;
        font-size: 0.7rem;
    }
    
    /* Our Cakes Section Small Mobile */
    .our-cakes-section {
        padding: 40px 0;
        min-height: 500px;
    }
    
    .our-cakes-title {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }
    
    .cakes-card {
        padding: 25px 15px;
    }
    
    .cake-item {
        padding: 20px 0;
    }
    
    .cake-image-wrapper {
        width: 90px;
        height: 90px;
    }
    
    .cake-title {
        font-size: 1.1rem;
    }
    
    .cake-description {
        font-size: 0.85rem;
    }
    
    .cake-price {
        font-size: 1.1rem;
    }
    
    .cake-tag {
        padding: 5px 12px;
        font-size: 0.7rem;
    }
    
    /* What We Do Section Small Mobile */
    .what-we-do-section {
        padding: 40px 0;
    }
    
    .what-we-do-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .what-we-do-text {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .quality-title {
        font-size: 1rem;
    }
    
    .what-we-do-btn {
        padding: 10px 25px;
        font-size: 12px;
    }
    
    /* Gallery Grid Small Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }
    
    .gallery-grid-item {
        padding-bottom: 100%;
    }
    
    .gallery-grid-section {
        padding: 40px 0;
    }
    
    .gallery-hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .gallery-hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    
    /* Back to Top Button Mobile */
    .back-to-top-btn {
        width: 44px;
        height: 44px;
        bottom: 20px;
        right: 20px;
        font-size: 14px;
    }
    
    .back-to-top-btn i {
        font-size: 11px;
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Validation */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.is-invalid {
    border-color: var(--danger-color);
}

.invalid-feedback {
    display: block;
    color: var(--danger-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Smooth Scrolling */
/* Note: html styles are defined in Global Styles section above */

/* Image Placeholder */
.img-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

