@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --white-color: #FFFFFF;
  --golden-color: #C8A862;
  --text-font-family-inter: "Inter", sans-serif;
}

/* Header */

header#site-header nav.menu-main-menu-container ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    letter-spacing: 0.025em;
    gap: 2rem;
    font-family: var(--text-font-family-inter);
}

header#site-header nav.menu-main-menu-container ul li a {
    color: var(--white-color);
    font-weight: 300;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

header#site-header nav.menu-main-menu-container ul li a:hover {
    color: var(--golden-color);
}

/* Contact Form */

.cp-form .row {
    margin: 0 0 2rem 0;
}

.cp-form .mb-0 {
    margin-bottom: 0;
}

.cp-form p {
    margin: 0;
}

.cp-form p label {
    font-family: var(--text-font-family-inter);
    font-size: 1rem;
    color: var(--golden-color);
    text-transform: uppercase;
    margin: 0 0 0.8rem 0;
}

.cp-form input[type="text"], .cp-form input[type="email"], .cp-form select {
    color: rgb(242, 239, 234);
    font-size: 1rem;
    font-family: var(--text-font-family-inter);
    font-weight: 300;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
    background: rgba(46, 46, 46, 0.3);
    border: 1px solid rgba(200, 168, 98, 0.2);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.cp-form input[type="text"]:focus, .cp-form input[type="email"]:focus, .cp-form select:focus {
    background: rgba(46, 46, 46, 0.5);
    border-color: var(--golden-color);
    outline: none;
    box-shadow: 0 0 0 1px rgba(200, 168, 98, 0.3);
}

.cp-form textarea {
    color: rgb(242, 239, 234);
    font-size: 1rem;
    font-family: var(--text-font-family-inter);
    font-weight: 300;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
    background: rgba(46, 46, 46, 0.3);
    border: 1px solid rgba(200, 168, 98, 0.2);
    transition: all 0.3s ease;
    border-radius: 4px;
    height: 146px;
    resize: none;
}

.cp-form textarea:focus {
    background: rgba(46, 46, 46, 0.5);
    border-color: var(--golden-color);
    outline: none;
    box-shadow: 0 0 0 1px rgba(200, 168, 98, 0.3);
}

.cp-form input[type="submit"] {
    font-size: 1rem;
    font-weight: 500;
    background: var(--golden-color);
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    padding: 0.875rem 2rem;
    box-shadow: 0 4px 12px rgba(200, 168, 98, 0.2);
    cursor: pointer;
    color: #FFFFFF;
    font-family: var(--text-font-family-inter);
    font-size: 1rem;
    border-color: var(--golden-color);
}

/* Report an Issue Form */

.report-issue .row {
    margin: 0 0 2rem 0;
	display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.report-issue .row .col {
    width: 50%;
}

.report-issue .mb-0 {
    margin-bottom: 0;
}

.report-issue p {
    margin: 0;
}

.report-issue p label {
    font-family: var(--text-font-family-inter);
    font-size: 1rem;
    color: var(--golden-color);
    text-transform: uppercase;
    margin: 0 0 0.8rem 0;
}

.report-issue input[type="text"], .report-issue input[type="email"], .report-issue select {
    color: rgb(242, 239, 234);
    font-size: 1rem;
    font-family: var(--text-font-family-inter);
    font-weight: 300;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
    background: rgba(46, 46, 46, 0.3);
    border: 1px solid rgba(200, 168, 98, 0.2);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.report-issue input[type="text"]:focus, .report-issue input[type="email"]:focus, .report-issue select:focus {
    background: rgba(46, 46, 46, 0.5);
    border-color: var(--golden-color);
    outline: none;
    box-shadow: 0 0 0 1px rgba(200, 168, 98, 0.3);
}

.report-issue textarea {
    color: rgb(242, 239, 234);
    font-size: 1rem;
    font-family: var(--text-font-family-inter);
    font-weight: 300;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
    background: rgba(46, 46, 46, 0.3);
    border: 1px solid rgba(200, 168, 98, 0.2);
    transition: all 0.3s ease;
    border-radius: 4px;
    height: 146px;
    resize: none;
}

.report-issue textarea:focus {
    background: rgba(46, 46, 46, 0.5);
    border-color: var(--golden-color);
    outline: none;
    box-shadow: 0 0 0 1px rgba(200, 168, 98, 0.3);
}

.report-issue input[type="submit"] {
    font-size: 1rem;
    font-weight: 500;
    background: var(--golden-color);
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    padding: 0.875rem 2rem;
    box-shadow: 0 4px 12px rgba(200, 168, 98, 0.2);
    cursor: poincenterter;
    color: #FFFFFF;
    font-family: var(--text-font-family-inter);
    font-size: 1rem;
    border-color: var(--golden-color);
}

.report-issue .center {
    justify-content: center;
}

.wpcf7 form .wpcf7-response-output {
    border: 0;
    color: #FF0000;
    padding: 0;
    margin: 0;
}

.wpcf7-not-valid-tip {
    margin: 1rem 0 0 0;
}

.policy-pg * {
    color: #FFFFFF;
    margin: 0;
    padding: 0;
}

.policy-pg h1 {
    margin: 0 0 3rem 0;
}

.policy-pg div {
    margin: 0 0 1rem 0;
}

.policy-pg ul {
    margin: 0 0 1rem 3rem;
}

.policy-pg h2 {
    margin: 4rem 0 2rem 0;
    font-size: 1.6rem;
    font-weight: 600;
}

.policy-pg a span {
    color: #B79A57 !important;
}

.policy-pg table tr th {
    padding: 1rem;
    color: #FFFFFF !important;
    font-size: 1rem;
}

.policy-pg table tr td {
    padding: 1rem;
    color: #FFFFFF !important;
    font-size: 1rem !important;
}

.policy-pg div h3, .policy-pg div span {
    margin: 0 0 1rem 0;
    display: block;
}

.policy-pg div span {
    color: #FFFFFF !important;
}

/* Footer */

footer#site-footer.site-footer {
    display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
    color: #46b450;
}

/* Responsive */

@media screen and (max-width: 767px) {
	
	/* Mobile menu default hidden */
	header#site-header nav.menu-main-menu-container {
		overflow: hidden;
		max-height: 0;
		transition: max-height 0.4s ease;
	}

	/* Active state */
	header#site-header nav.menu-main-menu-container.menu-open {
		max-height: 500px; /* menu ki height ke hisaab se adjust kar sakte hain */
	}
	
	header#site-header nav.menu-main-menu-container ul {
		background: #c8a862;
		flex-direction: column;
		padding: 0;
		margin: 0;
		gap: 0rem;
	}

	header#site-header nav.menu-main-menu-container ul li a {
		border-bottom: solid 1px rgb(255 255 255 / 25%);
		display: block;
		padding: 1rem;
		margin: 0;
	}

	header#site-header nav.menu-main-menu-container ul li a:hover {
        background: #5b431d;
        color: #FFFFFF;
	}
	
	.report-issue .row .col {
    	width: 100%;
	}

	
}