 /*!
Theme Name: nagarkot-zip-coasters
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: nagarkot-zip-coasters
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

nagarkot-zip-coasters is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

 /*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

 /*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

 /* Normalize
--------------------------------------------- */

 /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

 /* Document
	 ========================================================================== */

 /**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */





 /* contact page  */


 body {
 	font-family: 'ALT Systema semi-bold';
 	/* background: #f5f5f5; */
 	color: #1a1a1a;
 }

 /* ── Hero Image ── */
 .yc-hero {
 	width: 100%;
 	height: 600px;
 	overflow: hidden;
 	position: relative;
 }

 .yc-hero img {
 	width: 100%;
 	height: 100%;
 	object-fit: cover;
 	object-position: center top;
 	display: block;
 }

 .yc-hero-overlay {
 	position: absolute;
 	inset: 0;
 	background: rgba(0, 0, 0, 0.18);
 }

 /* ── Body ── */
 .yc-body {
 	padding: 3rem 2rem;
 	display: grid;
 	grid-template-columns: 1fr 1fr;
 	gap: 3rem;
 	/* max-width: 960px; */
 	margin: 0 auto;
 	align-items: start;
 	/* background: #f5f5f5; */
 }

 /* ── Left Column ── */
 .yc-small {
 	font-size: 13px;
 	color: #FF6B01;
 	font-weight: 600;
 	letter-spacing: 0.04em;
 	margin-bottom: 0.75rem;
 }

 .yc-heading {
 	font-size: 41px;
 	font-weight: 600;
 	color: rgba(0, 0, 0, 0.7);
 	line-height: 1.2;
 	margin: 0;
 }

 .yc-desc {
 	font-size: 16px;
 	color: #666;
 	line-height: 1.7;
 	margin-bottom: 2rem;
 }

 /* ── Contact Row ── */
 .yc-contact-row {
 	display: grid;
 	grid-template-columns: 1fr 1fr 1fr;
 	gap: 0;
 	margin-bottom: 2rem;
 }

 .yc-contact-item {
 	display: flex;
 	gap: 10px;
 	align-items: flex-start;
 	padding: 0.75rem 0;
 }

 .yc-contact-item:not(:last-child) {
 	border-right: 1px solid #ddd;
 	padding-right: 1rem;
 }

 .yc-contact-item:not(:first-child) {
 	padding-left: 1rem;
 }

 .yc-contact-icon {
 	font-size: 20px;
 	color: #1a5fb4;
 	margin-top: 2px;
 	flex-shrink: 0;
 }

 .yc-contact-label {
 	font-size: 16px;
 	font-weight: 500;
 	color: #FF6B01;
 	margin-bottom: 3px;
 }

 .yc-contact-val {
 	font-size: 14px;
 	color: #555;
 	line-height: 1.4;
 }


 .social-icons {
 	display: flex;
 	gap: 10px;
 }

 .social-icons a {
 	width: 34px;
 	height: 34px;
 	border-radius: 6px;
 	border: 1px solid #b0c8e8;
 	display: flex;
 	align-items: center;
 	justify-content: center;
 	color: #1a5fb4;
 	font-size: 15px;
 	text-decoration: none;
 	transition: background 0.15s;
 }

 .social-icons a:hover {
 	background: #e6f1fb;
 }

 /* ── Form Card ── */
 .yc-form-card {
 	background: #fff;
 	border: 1px solid #e0e0e0;
 	border-radius: 12px;
 	padding: 2rem;
 	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
 }

 .yc-field {
 	margin-bottom: 1rem;
 }

 .yc-label {
 	font-size: 13px;
 	color: #555;
 	margin-bottom: 5px;
 	display: block;
 }

 .yc-input {
 	width: 100%;
 	padding: 9px 12px;
 	border: 1px solid #ccc;
 	border-radius: 8px;
 	font-size: 14px;
 	font-family: inherit;
 	background: #fff;
 	color: #1a1a1a;
 	outline: none;
 	transition: border-color 0.15s;
 }

 .yc-input:focus {
 	border-color: #1a5fb4;
 }

 textarea.yc-input {
 	resize: vertical;
 	min-height: 100px;
 }

 .yc-btn {
 	width: 100%;
 	padding: 12px;
 	background: #FF6B01;
 	color: #fff;
 	border: none;
 	border-radius: 8px;
 	font-size: 15px;
 	font-weight: 500;
 	cursor: pointer;
 	font-family: inherit;
 	transition: background 0.15s;
 	margin-top: 0.5rem;
 }

 .yc-btn:hover {
 	background: rgba(0, 0, 0);
 	color: #fff;
 }

 /* ── Responsive ── */
 @media (max-width: 640px) {
 	.yc-body {
 		grid-template-columns: 1fr;
 		gap: 2rem;
 		padding: 2rem 1rem;
 	}

 	.yc-heading {
 		font-size: 1.5rem;
 	}

 	.yc-contact-row {
 		grid-template-columns: 1fr;
 	}

 	.yc-contact-item:not(:last-child) {
 		border-right: none;
 		border-bottom: 1px solid #ddd;
 		padding-right: 0;
 		padding-bottom: 1rem;
 		margin-bottom: 0.5rem;
 	}

 	.yc-contact-item:not(:first-child) {
 		padding-left: 0;
 	}
 }


 /* about us page  */
 .about-section {
 	padding: 0 0 80px;
 }

 .title-center {
 	text-align: center;
 	margin-bottom: 50px;
 }

 .title-center h2 {
 	color: var(--secondary) !important;
 }

 .title-center-black h2 {
 	color: var(--text-dark) !important;
 }

 .about-image-wrap-2 {
 	display: none;
 }


 /* ══════════════════════════════
   TOP: IMAGE + CONTENT
══════════════════════════════ */


 /* ── Image ── */
 .about-image-wrap {
 	position: relative;
 	flex-shrink: 0;
 	/* width: 340px; */
 	/* height: 320px; */
 	border-radius: 5px;
 	overflow: visible;
 }

 .about-image-wrap img {
 	width: 100%;
 	height: 520px;
 	object-fit: cover;
 	border-radius: 5px;
 	display: block;
 	/* width: 480px;
 	height: 475px; */
 }

 /* Since / Year badge — top right corner */


 /* ── Content ── */
 .about-content {
 	flex: 1;
 	display: flex;
 	flex-direction: column;
 	/* gap: 14px; */
 }

 .top-title {
 	margin-top: 40px;
 	text-align: start;
 }

 .top-title h2 {
 	font-family: var(--font-bold);
 	font-size: 41px;
 	font-weight: 700;
 	line-height: 44px;
 	color: var(--text-dark);
 	letter-spacing: -1%;
 	text-transform: capitalize;
 	margin-bottom: 20px;
 }

 .top-title p {
 	font-size: 16px;
 	font-weight: 400;
 	line-height: 25px;
 	letter-spacing: -1%;
 	color: var(--text-dark);
 	margin-bottom: 15px;
 	width: 70%;
 	font-family: var(--font-regular);
 }

 .primary-btn {
 	padding: 10px 14px;
 	background: var(--primary);
 	color: #fff;
 	border-radius: 20px;
 	text-align: center;
 	justify-content: center;
 }

 .primary-btn:hover {
 	color: #fff;
 	background: rgba(0, 0, 0);
 }

 .btn-wrap {
 	margin-top: 20px;
 }