/*
Theme Name: Sunrise Printing Mailing, Convention, Same Day Las Vegas
Theme URI: https://sunriseprintinglv.com/
Author: AWS
Author URI: https://aliantewebdesign.com/
Description: Custom theme for Sunrise Printing Las Vegas.
Version: 25.01
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, portfolio, featured-images, full-width-template, e-commerce, translation-ready, rtl-language-support, theme-options, custom-colors, custom-logo, custom-menu, footer-widgets, left-sidebar, right-sidebar, custom-background, one-column, two-columns
Text Domain: sunriseprintinglv
*/

body{margin:0;font-family:Arial,sans-serif;line-height:1.6;color:#000;text-align:left;background-color:#fff;}img{vertical-align:middle;border-style:none;}svg{overflow:hidden;vertical-align:middle;}p, ul, li, h1, h2, h3, h4, h5, h6 {font-family:Arial,sans-serif;}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: .9rem 4%;
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 1);
    border-bottom: var(--border);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
}


.logo {
    font-size: 1.8rem;
    font-weight: 700;
}

.logo svg {
    display: block;
    fill: url(#linear-gradient); /* Apply gradient to SVG if possible */
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 20px;
    justify-content: space-between;
    z-index: 1100;
}

.bar {
    width: 100%;
    height: 3px;
    background: #c51114; /* White bars to match nav-links color */
    transition: all 0.4s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
	       gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease;
    font-size: 12px;
    letter-spacing: 0.3px;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.nav-links a:hover {
    color: #fada52;
    background: rgba(0, 0, 0, 0.1);
    text-shadow: none;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    margin-left: 30px;
}

.signin-btn, .get-started-btn {
    padding: 0.7rem 1.5rem;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border-radius: 30px;
}

.signin-btn {
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: white;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
}

.signin-btn:hover {
    background: white;
    color: black;
}

.get-started-btn {
    background: linear-gradient(to right, #2A5AF1, #119F66);
    color: #ffffff;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}

.get-started-btn:hover {
    background: linear-gradient(to right, #119F66, #2A5AF1);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 900;
}
.nav-links .menu-item-has-children {
    position: relative;
}

.nav-links .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    min-width: 210px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1001;
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links .sub-menu a {
    color: white;
    padding: 8px 16px;
	margin:7px 3px;
	width: 250px;
    text-decoration: none;
    display: block;
    font-size: 12px;
    transition: all 0.3s ease;
}

.nav-links .sub-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fada52;
}

/* Show dropdown on hover (desktop) */
.nav-links .menu-item-has-children:hover .sub-menu {
    display: block;
}
.nav-links .menu-item-has-children > a::after {
    content: '▾';
 
    margin-left:5px;
    display: inline-block; /* Required for transform */
    transition: transform 0.3s ease; /* Smooth rotation */
    transform: rotate(0deg); /* Explicit default state */
}
.nav-links .menu-item-has-children:hover > a::after,
.nav-links .menu-item-has-children.open > a::after {
    transform: rotate(180deg); /* Rotate up */
}
.nav-links .menu-item-has-children {
    position: relative;
}

@media (max-width: 1200px) {
    .nav-buttons {
        gap: 10px;
    }
.nav-links {
    display: flex;
	       gap: 5px;
}
    .navbar {padding: 1.1rem 1px;}
}
/* Mobile styles */
@media (max-width: 1040px) {
    .hamburger {
        display: flex;
    }
	.nav-links .menu-item-has-children > a::after {
        transition: transform 0.3s ease;
    }
    .nav-links .menu-item-has-children.open > a::after {
        transform: rotate(180deg);
    }
    .nav-links .menu-item-has-children:hover > a::after {
        transform: none; /* No rotation on hover */
    }
	
.nav-links .menu-item-has-children.active .sub-menu {
    left: 0 !important;
}
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        flex-direction: column;
        padding: 60px 20px 20px;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu.active .sub-menu {
        width: 252px; /* Full width for mobile */
        background: rgba(0, 0, 0, 0.95); /* Slightly darker for contrast */
        padding: 0;
        margin: 0;
    }
    .nav-menu.active .sub-menu li {
        display: block; /* Each item on its own line */
        width: 100%;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Separator */
    }
    .nav-menu.active .sub-menu li a {
        display: block;
        white-space: nowrap; /* Prevent text wrapping */
        padding: 8px 18px; /* Larger tap area */
 
        text-decoration: none;
        font-size: 13px;
        line-height: 1.5;
    }
    .nav-menu.active .sub-menu li a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
	ul.nav-links {padding-left: 0;}
    .nav-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .hamburger.active .top-bar {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .middle-bar {
        opacity: 0;
    }

    .hamburger.active .bottom-bar {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Submenu styles */
    .nav-links .sub-menu {
        position: absolute;
        top: 0;
        left: 100%;
        width: 250px;
        height: 100vh;
        background: rgba(20, 20, 20, 0.95);
        padding: 40px 20px 20px;
        transition: left 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Use left instead of right */
        z-index: 1001;
        list-style: none;
        margin: 0;
        box-shadow: none;
        border-radius: 0;
    }

    /* Submenu links */
    .nav-links .sub-menu a {
        color: white;
        padding: 10px 20px;
        display: block;
    }
	
    .nav-links .menu-item-has-children:hover .sub-menu {
        left: 100%; /* Keep off-screen on hover */
    }

    /* Show submenu when active */
    .nav-links .menu-item-has-children.active .sub-menu {
        left: 0; /* Slide fully to the left, replacing main menu */
    }

    /* Ensure submenu stays off-screen when not active */
    .nav-links .menu-item-has-children:not(.active) .sub-menu {
        left: 100%;
    }
	.nav-links .sub-menu {
        position: absolute;
        top: 0;
        left: 100%;
        width: 250px;
        height: 100vh;
        background: rgba(20, 20, 20, 0.95);
        padding: 60px 20px 20px;
        transition: left 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        z-index: 1001;
        list-style: none;
        margin: 0;
        box-shadow: none;
        border-radius: 0;
    }

    /* Show submenu when open */
    .nav-links .menu-item-has-children.open .sub-menu {
        left: 0;
    }

    /* Hide submenu when not open */
    .nav-links .menu-item-has-children:not(.open) .sub-menu {
        left: 100%;
    }
	
/* Arrow in mobile */
    .nav-links .menu-item-has-children > a::after {
        transition: transform 0.3s ease; /* Ensure transition persists */
        transform: rotate(-90deg); /* Default state */
    }

    /* Rotate arrow when open (mobile) */
    .nav-links .menu-item-has-children.open > a::after {
        transform: rotate(90deg); /* Rotate up */
    }

    /* Prevent hover rotation on mobile */
    .nav-links .menu-item-has-children:hover > a::after {
        transform: rotate(0deg); /* No rotation on hover */
    }	
}


.menu {
    list-style-type: none; /* Removes bullets */
    padding: 0; /* Removes padding */
    margin: 0; /* Removes margin */
}

.menu-item {
    display: inline-block; /* Ensures menu items are inline */
}

.menu-item a {
    color: black;
    text-decoration: none;
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease;
    font-size: 13px;
    letter-spacing: 0.3px;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.menu-item a:hover {
    color: #c51114;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}
.current-menu-item a {
    color: #f39c12; /* Change this to your preferred highlight color */
    background: rgba(255, 255, 255, 0.1);
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.9rem 4%;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: var(--border);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
}

.logo img {
    display: block;
    max-width: 100%;
    height: auto;
}
.quote-card {
			font-family: 'Arial', sans-serif;
            background-color: #fff;
            max-width:740px;
            padding: 38px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            position: relative;
            margin: 20px;
        }

        .quote-card::before {
            content: '“';
            font-size: 60px;
            color: #f3872c;
            position: absolute;
            top: 12px;
            left: 17px;
            opacity: 0.3;
        }

        .quote-card::after {
            content: '”';
            font-size: 60px;
            color: #f3872c;
            position: absolute;
            bottom: 30px;
            right: 17px;
            opacity: 0.3;
        }

        .quote-text {
            font-size: 18px;
            line-height: 1.6;
            color: #333;
            margin: 20px 0;
            position: relative;
            z-index: 1;
        }

        .quote-attribution {
            font-size: 16px;
            font-weight: bold;
            color: #f3872c;
            text-align: right;
            margin-top: 20px;
        }

        .quote-attribution::before {
            content: '– ';
            color: #333;
        }
		.ofont {color:#f3872c;}
        @media (max-width: 600px) {
            .quote-card {
                padding: 30px;
				margin: 0px;
            }

        .quote-card::before {
            top: 9px;
            left: 12px;
        }

            .quote-text {
                font-size: 15px;
            }

            .quote-card::before {
                font-size: 50px;
            }
        }