/* ===================================
   PBK Decor Custom Styles
   Primary Color: Light Gray #959393
   Secondary Color: Bright Orange #f7651d
   =================================== */

:root {
    --primary-color: #959393;
    --secondary-color: #f7651d;
    --dark-text: #2c2c2c;
    --light-text: #6c6c6c;
    --white: #ffffff;
    --light-bg: #f5f5f5;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-text);
    background-color: var(--white);
    line-height: 1.7;
    font-size: 1.0625rem;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* ===================================
   Section Labels & Titles
   =================================== */

.section-label {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

/* ===================================
   Header & Navigation
   =================================== */

.top-bar {
    font-size: 0.85rem;
}

header .navbar {
    padding: 1rem 0;
    transition: var(--transition);
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-text);
    margin: 0 0.5rem;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color);
}

.navbar .btn-primary {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

/* ===================================
   Hero Section
   =================================== */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: -130px;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-carousel img.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 130px;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    animation: fadeInUp 0.8s ease;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease;
    max-width: 700px;
}

.hero-content .btn {
    animation: fadeInUp 1.4s ease;
    padding: 12px 35px;
    font-size: 1.1rem;
    border-radius: 30px;
}

/* ===================================
   About Section
   =================================== */

.about-section {
    padding: 6rem 0;
    background: var(--white);
}

.about-content p {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   Services Section
   =================================== */

.services-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.service-card p {
    color: var(--light-text);
    margin-bottom: 0;
    font-size: 1.0625rem;
}

/* ===================================
   Products Section
   =================================== */

.products-section {
    padding: 6rem 0;
    background: var(--white);
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 2rem 1.5rem;
    color: var(--white);
    transform: translateY(0);
    transition: var(--transition);
}

.product-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.product-overlay p {
    font-size: 0.95rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   Brands Section
   =================================== */

.brands-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.brand-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.brand-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.brand-card-link:hover .brand-card,
.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-color);
}

.brand-logo-container {
    width: 100%;
    max-width: 300px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.brand-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.brand-card:hover .brand-logo {
    transform: scale(1.05);
}

.brand-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.brand-card p {
    color: var(--light-text);
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.7;
}

/* Float Animation for Brand Logos */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Alternate float for second card */
.brand-card:nth-child(2) .brand-logo-container {
    animation-delay: 1.5s;
}

/* ===================================
   Contact Section
   =================================== */

.contact-section {
    padding: 6rem 0;
    background: var(--white);
}

.contact-info-card {
    text-align: center;
    padding: 2rem 1rem;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-info-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-info-card h5 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.contact-info-card a {
    color: var(--secondary-color);
    font-weight: 500;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

.contact-info-card p {
    margin: 0;
    color: var(--light-text);
}

.cta-box {
    background: linear-gradient(135deg, var(--light-bg) 0%, #ececec 100%);
    padding: 3rem 2rem;
    border-radius: 16px;
    border-left: 6px solid var(--secondary-color);
}

.cta-box h4 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.cta-box p {
    color: var(--light-text);
    margin-bottom: 0;
}

/* ===================================
   Footer
   =================================== */

.site-footer {
    background: var(--dark-text);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.site-footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-tagline {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.footer-legal-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-legal-link:hover {
    color: var(--secondary-color);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1.5rem;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* ===================================
   Buttons
   =================================== */

.btn {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 30px;
    padding: 12px 30px;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background: #e8540f;
    border-color: #e8540f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(247, 101, 29, 0.3);
}

.btn-light {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--dark-text);
}

.btn-light:hover {
    background-color: var(--light-bg);
    border-color: var(--light-bg);
    color: var(--dark-text);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark-text);
}

.btn-outline-secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ===================================
   Animations
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 991px) {
    .hero-section {
        height: 80vh;
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-logo {
        max-width: 280px;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .brand-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 1rem;
    }

    .hero-section {
        height: 70vh;
        min-height: 450px;
        margin-top: -120px;
    }

    .hero-content {
        padding-top: 120px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-content .btn {
        padding: 10px 25px;
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    .hero-content .btn.ms-3 {
        margin-left: 0 !important;
        margin-top: 0.5rem;
    }

    .hero-logo {
        max-width: 220px;
        margin-bottom: 1.5rem !important;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .section-label {
        font-size: 0.75rem;
    }

    .brand-logo-container {
        height: 100px;
        max-width: 250px;
    }

    .brand-card {
        padding: 2rem 1.5rem;
    }

    .brand-card h4 {
        font-size: 1.25rem;
    }

    .brand-card p {
        font-size: 0.95rem;
    }

    .product-image {
        height: 280px;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 2rem;
    }

    .service-card h4 {
        font-size: 1.125rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .contact-info-card {
        padding: 1.5rem 1rem;
    }

    .contact-info-card i {
        font-size: 2rem;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .cta-box h4 {
        font-size: 1.5rem;
    }

    .site-footer {
        padding: 3rem 0 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 65vh;
        min-height: 400px;
        margin-top: -110px;
    }

    .hero-content {
        padding-top: 110px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .hero-logo {
        max-width: 180px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .brand-card {
        padding: 1.5rem 1rem;
    }

    .brand-logo-container {
        height: 80px;
        max-width: 200px;
        margin-bottom: 1rem;
    }

    .product-image {
        height: 250px;
    }

    .product-overlay {
        padding: 1.5rem 1rem;
    }

    .product-overlay h4 {
        font-size: 1.25rem;
    }

    .service-card,
    .brand-card {
        margin-bottom: 1rem;
    }

    .cta-box h4 {
        font-size: 1.25rem;
    }

    .hero-content .btn {
        display: block;
        width: 100%;
        margin-left: 0 !important;
        margin-bottom: 0.75rem;
    }

    .top-bar .col-md-6 {
        text-align: center !important;
    }

    .top-bar .col-md-6:first-child {
        margin-bottom: 0.25rem;
    }
}

@media (max-width: 400px) {
    .hero-section {
        height: 60vh;
        min-height: 380px;
        margin-top: -105px;
    }

    .hero-content {
        padding-top: 105px;
    }

    .hero-content h1 {
        font-size: 1.35rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 0.8rem;
    }

    .hero-logo {
        max-width: 160px;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .section-subtitle {
        font-size: 0.875rem;
    }

    .section-label {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }

    .brand-card,
    .service-card {
        padding: 1.25rem 0.875rem;
    }

    .brand-logo-container {
        height: 70px;
        max-width: 180px;
    }

    .brand-card h4,
    .service-card h4 {
        font-size: 1.125rem;
    }

    .brand-card p,
    .service-card p {
        font-size: 0.875rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.75rem;
    }

    .product-image {
        height: 220px;
    }

    .product-overlay h4 {
        font-size: 1.125rem;
    }

    .product-overlay p {
        font-size: 0.8rem;
    }

    .cta-box {
        padding: 1.5rem 1rem;
    }

    .cta-box h4 {
        font-size: 1.125rem;
    }

    .cta-box p {
        font-size: 0.875rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .contact-info-card h5 {
        font-size: 1rem;
    }

    .contact-info-card i {
        font-size: 1.75rem;
    }

    .about-section,
    .services-section,
    .products-section,
    .brands-section,
    .contact-section {
        padding: 4rem 0;
    }

    .site-footer {
        padding: 2.5rem 0 1rem;
    }

    .footer-tagline,
    .site-footer h5 {
        font-size: 1rem;
    }

    .site-footer p,
    .footer-links a,
    .footer-contact li {
        font-size: 0.875rem;
    }
}
