/* =============================================
   OASIS INNOVATES THEME - MAIN STYLESHEET
   ============================================= */

/* Root Variables */
:root {
	--primary-color: #2c3e50;
	--accent-color: #c9a876;
	--secondary-color: #34495e;
	--light-color: #ecf0f1;
	--dark-color: #1a252f;
	--border-color: #bdc3c7;
	--success-color: #27ae60;
	--danger-color: #e74c3c;
	--font-primary: 'Poppins', sans-serif;
	--font-accent: 'Playfair Display', serif;
}

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

html,
body {
	font-family: var(--font-primary);
	color: var(--primary-color);
	line-height: 1.6;
	background-color: #fff;
}

body {
	font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-accent);
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-weight: 600;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
	margin-bottom: 1rem;
}

a {
	color: var(--accent-color);
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: var(--primary-color);
	text-decoration: underline;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	border-radius: 0.25rem;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-primary {
	background-color: var(--accent-color);
	color: #fff;
}

.btn-primary:hover {
	background-color: var(--primary-color);
	color: #fff;
	text-decoration: none;
}

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

.btn-outline-primary:hover {
	background-color: var(--primary-color);
	color: #fff;
}

.btn-outline-light {
	border-color: #fff;
	color: #fff;
	background: transparent;
}

.btn-outline-light:hover {
	background-color: #fff;
	color: var(--primary-color);
}

.btn-sm {
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
}

.btn-lg {
	padding: 1rem 2rem;
	font-size: 1.125rem;
}

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

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

/* Header */
.site-header {
	background-color: #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-top {
	padding: 1.5rem 0;
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.site-branding img {
	max-width: 150px;
	height: auto;
}

.site-title {
	margin: 0;
	font-size: 1.5rem;
	color: var(--primary-color);
}

/* Navigation */
.main-navigation {
	display: flex;
	gap: 2rem;
}

.main-navigation a {
	color: var(--primary-color);
	font-weight: 500;
	position: relative;
}

.main-navigation a:hover,
.main-navigation a.current-menu-item {
	color: var(--accent-color);
}

.main-navigation a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--accent-color);
	transition: width 0.3s ease;
}

.main-navigation a:hover::after {
	width: 100%;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

/* Hero Section */
.hero-section {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	color: #fff;
	padding: 8rem 2rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,133.3C1248,128,1344,128,1392,128L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
	background-size: cover;
	opacity: 0.1;
	z-index: 0;
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
}

.hero-title {
	font-size: 4rem;
	margin-bottom: 1rem;
	color: #fff;
}

.hero-subtitle {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* Featured Products */
.featured-products {
	padding: 4rem 2rem;
	background-color: #f8f9fa;
}

.featured-products h2 {
	text-align: center;
	margin-bottom: 3rem;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

/* Why Choose Us */
.why-choose-us {
	padding: 4rem 2rem;
	background-color: #fff;
}

.why-choose-us h2 {
	text-align: center;
	margin-bottom: 3rem;
}

.feature-card {
	background: #f8f9fa;
	padding: 2rem;
	border-radius: 0.5rem;
	text-align: center;
	transition: all 0.3s ease;
	border-top: 3px solid transparent;
}

.feature-card:hover {
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	border-top-color: var(--accent-color);
}

.feature-icon {
	font-size: 3rem;
	color: var(--accent-color);
	margin-bottom: 1rem;
}

.feature-card h3 {
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.feature-card p {
	color: #666;
	margin-bottom: 0;
}

/* Call to Action */
.cta-section {
	background: linear-gradient(135deg, var(--accent-color) 0%, #b8925a 100%);
	color: #fff;
	padding: 4rem 2rem;
	text-align: center;
}

.cta-section h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #fff;
}

.cta-section p {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.95);
}

/* Footer */
.site-footer {
	background-color: var(--primary-color);
	color: #fff;
	padding: 3rem 0;
	margin-top: 4rem;
}

.footer-main {
	padding-bottom: 2rem;
}

.footer-widget h4 {
	color: var(--accent-color);
	margin-bottom: 1.5rem;
}

.footer-widget ul {
	margin-bottom: 0;
}

.footer-widget li {
	margin-bottom: 0.5rem;
}

.footer-widget a {
	color: #bdc3c7;
	text-decoration: none;
}

.footer-widget a:hover {
	color: var(--accent-color);
	text-decoration: underline;
}

.social-links {
	display: flex;
	gap: 1rem;
}

.footer-bottom {
	background-color: rgba(0, 0, 0, 0.2);
	padding: 2rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
	margin-bottom: 0;
	color: #bdc3c7;
}

.footer-menu {
	display: flex;
	gap: 2rem;
	justify-content: flex-end;
	flex-wrap: wrap;
}

.footer-menu a {
	color: #bdc3c7;
	text-decoration: none;
}

.footer-menu a:hover {
	color: var(--accent-color);
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.container-fluid {
	width: 100%;
	padding-left: 2rem;
	padding-right: 2rem;
}

/* Articles & Posts */
.entry-header {
	margin-bottom: 2rem;
}

.entry-title {
	margin-bottom: 1rem;
}

.entry-meta {
	font-size: 0.875rem;
	color: #999;
}

.entry-meta span {
	margin-right: 1.5rem;
}

.entry-image {
	margin-bottom: 2rem;
	border-radius: 0.5rem;
	overflow: hidden;
}

.entry-image img {
	width: 100%;
	height: auto;
	display: block;
}

.entry-content {
	line-height: 1.8;
}

.entry-footer {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border-color);
}

.entry-tags {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.tag-link {
	display: inline-block;
	background-color: #f0f0f0;
	padding: 0.5rem 1rem;
	border-radius: 0.25rem;
	font-size: 0.875rem;
	color: var(--primary-color);
	text-decoration: none;
	transition: all 0.3s ease;
}

.tag-link:hover {
	background-color: var(--accent-color);
	color: #fff;
}

/* Pagination */
.pagination {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	margin: 2rem 0;
	flex-wrap: wrap;
}

.pagination a,
.pagination span {
	display: inline-block;
	padding: 0.5rem 0.75rem;
	border: 1px solid var(--border-color);
	background-color: #fff;
	color: var(--primary-color);
	text-decoration: none;
	border-radius: 0.25rem;
	transition: all 0.3s ease;
}

.pagination a:hover,
.pagination .current {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
	color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
	h1 { font-size: 2rem; }
	h2 { font-size: 1.75rem; }
	h3 { font-size: 1.5rem; }
	h4 { font-size: 1.25rem; }

	.hero-section {
		padding: 4rem 1rem;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.25rem;
	}

	.hero-buttons {
		flex-direction: column;
	}

	.main-navigation {
		flex-direction: column;
		gap: 1rem;
	}

	.header-top .row {
		flex-direction: column;
	}

	.why-choose-us .row {
		grid-template-columns: 1fr;
	}

	.footer-menu {
		justify-content: flex-start;
	}

	.products-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: 1rem;
	}
}

@media (max-width: 576px) {
	h1 { font-size: 1.5rem; }
	h2 { font-size: 1.25rem; }
	h3 { font-size: 1rem; }

	.container,
	.container-fluid {
		padding: 0 1rem;
	}

	.hero-section {
		padding: 3rem 1rem;
	}

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

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

	.btn {
		display: block;
		width: 100%;
	}

	.hero-buttons {
		flex-direction: column;
	}
}
/* Skip to content link */
.skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	background: var(--accent-color);
	color: white;
	padding: 8px;
	z-index: 100;
}

.skip-link:focus {
	top: 0;
}
