/*
Theme Name: Raja Keskus
Text Domain: twentytwentyone
Template: twentytwentyone
Theme URI: https://wordpress.org/themes/twentytwentyone/
Description: Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.
Author: the WordPress team
Author URI: https://wordpress.org/
Version: 1.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* Header */
.site-header {
    background: rgba(0, 0, 0, 0.77);
    z-index: 1000;
}
.site-header .logo img {
  height: 100px;
  width: auto !important;
  max-width: unset !important;
  transform-origin: top center;
}

/* Desktop menu */
.main-menu li {
	text-align: center;
}
.main-menu li a {
    color: #f1c75e;
	font-size: 1.5rem;
    text-decoration: none;
    font-weight: 400;
}
.main-menu li a:hover {
    color: #fff;
}
/* Burger button */
.menu-toggle {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    z-index: 1100; /* above menu */
}

.menu-toggle .burger {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animate into "X" */
.menu-toggle.active .burger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active .burger:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active .burger:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile nav overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.35s ease;
    z-index: 1000;
}

.mobile-nav.active {
    transform: translateY(0);
}

/* Mobile menu items */
.mobile-menu li {
    margin: 15px 0;
    text-align: center;
}
.mobile-menu li a {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.2s ease;
	    justify-content: center;
}
.mobile-menu li a a.contact-button{
	color: #000 !important;
}
.mobile-menu li a:hover {
    color: #d4a019;
}

/* Disable scroll when menu is open */
body.noscroll {
    overflow: hidden;
}

/* Sections */
#section1{
	margin-top: 100px;
}

.wysiwyg-content p{
	color: #fff;
}
.wysiwyg-content a{
	color: #f1c75e;
}
.wysiwyg-content a:hover{
	text-decoration: underline;
}

/* Contact button style */
.btn-contact {
    background: #f1c75e;
    color: #000 !important;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
	text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}
.btn-contact:hover {
    background: #b88a17;
}

/* Footer */ 
.footer-logo{
	max-width: 200px;
	margin: 1rem auto;
}
.footer-left{
	width: auto !important;
}

/* MAP */ 

.imp-tooltip h3{
	font-family: 'Barlow Semi Condensed' !important;
	color: #000 !important;
	font-size: 1.5rem !important;
	font-weight: 500 !important;
	text-wrap: nowrap;
}
.squares-element{
	padding-bottom: 0 !important;
}
.squares-element>p{
	color: #000 !important;
}

.table-content-text p.highlighted{
	color: #f1c75e !important;
	font-weight: 600;
}

/* Mobile only */
@media (max-width: 991px) {   
    .site-header {
        background: #000; 
    }
	.site-header .logo img {
		height: 70px;
	}
	#section1{
		margin-top: 70px;
	}
}

/* MAP TABLE  */
    .plan-table {
        border-collapse: collapse;
		width: 100%;
		margin-bottom: 1rem;
    }
	.plan-table th{
		color: #f1c75e;
	}
    .plan-table th, .plan-table td {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: left;
    }
    .plan-table__row.highlighted {
        background-color: #f1c75e;
		color: #000;
    }
.plan-table__row:hover{
	background-color: #f1c75e;
	color: #000;
}
.table-content-text p{
	color: #fff !important;
	font-size: 1rem !important;
	margin: 0 0 0.5rem !important;
}