/* Responsive Media Queries */

/* Extra Small Devices (Portrait Phones, less than 576px) */
@media (max-width: 575px) {
	.hero-title {
		font-size: 32px;
		line-height: 1.3;
	}

	.hero-subtitle {
		font-size: 16px;
	}

	.stat-item {
		flex: 1 1 100%;
	}

	.stat-number {
		font-size: 28px;
	}

	.stat-label {
		font-size: 12px;
	}

	.section {
		padding: 50px 0;
	}

	.section-title {
		font-size: 28px;
	}

	.section-subtitle {
		font-size: 15px;
	}

	.craft-btn {
		padding: 10px 20px;
	}

	.craft-btn span {
		font-size: 32px;
	}

	.craft-btn-content h4 {
		font-size: 18px;
	}

	.feature-card {
		padding: 30px 15px;
	}

	.icon-circle {
		width: 80px;
		height: 80px;
		font-size: 32px;
	}

	.video-container {
		margin-bottom: 40px;
	}

	.app-demo-section {
		padding: 60px 0;
	}

	.step-card {
		padding: 50px 20px 30px;
	}

	.step-icon {
		font-size: 48px;
	}

	.step-card h4 {
		font-size: 20px;
	}

	.newsletter h2 {
		font-size: 32px;
	}

	.newsletter-subtitle {
		font-size: 16px;
	}

	.form-control {
		width: 100%;
		margin-bottom: 10px;
	}

	.newsletter button {
		width: 100%;
	}

	.body-footer {
		font-size: 20px;
	}

	.footer {
		padding: 40px 0 20px;
	}

	.footer-brand,
	.footer-links,
	.footer-social-section {
		text-align: center;
		margin-bottom: 40px;
	}

	.footer-social ul {
		justify-content: center;
	}
}

/* Small Devices (Landscape Phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
	.hero-title {
		font-size: 38px;
	}

	.hero-subtitle {
		font-size: 18px;
	}

	.stat-number {
		font-size: 36px;
	}

	.section-title {
		font-size: 34px;
	}

	.craft-btn {
		padding: 12px 25px;
	}

	.download-buttons {
		flex-direction: row;
		justify-content: center;
	}

	.hero-stats {
		justify-content: center;
	}
}

/* Medium Devices (Tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
	.hero-title {
		font-size: 44px;
	}

	.hero-subtitle {
		font-size: 20px;
	}

	.stat-number {
		font-size: 38px;
	}

	.section-title {
		font-size: 38px;
	}

	.section-subtitle {
		font-size: 17px;
	}

	.feature-block {
		margin-bottom: 40px;
	}

	.video-container {
		margin-bottom: 40px;
	}

	.step-card {
		margin-bottom: 50px;
	}

	.footer-brand {
		text-align: center;
		margin-bottom: 40px;
	}

	.footer-links {
		text-align: center;
		margin-bottom: 40px;
	}

	.footer-social-section {
		text-align: center;
	}

	.footer-social ul {
		justify-content: center;
	}
}

/* Large Devices (Desktops, 992px and up) */
@media (min-width: 992px) {
	.hero-title {
		font-size: 52px;
	}

	.hero-subtitle {
		font-size: 22px;
	}

	.stat-number {
		font-size: 42px;
	}

	.container {
		max-width: 960px;
	}
}

/* Extra Large Devices (Large Desktops, 1200px and up) */
@media (min-width: 1200px) {
	.hero-title {
		font-size: 56px;
	}

	.container {
		max-width: 1140px;
	}
}

/* Landscape Orientation */
@media (max-height: 600px) and (orientation: landscape) {
	.head {
		min-height: auto;
		padding: 100px 0 50px;
	}

	.head-items {
		padding: 40px 0;
	}

	.hero-stats {
		margin-top: 30px;
	}
}

/* High Resolution Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
	.head {
		background-size: cover;
	}
}

/* Print Styles */
@media print {
	.custom-menu,
	.newsletter,
	.footer-social {
		display: none;
	}

	body {
		color: black;
	}

	.head {
		background: white;
		color: black;
	}

	.hero-title,
	.hero-subtitle {
		color: black;
	}
}

/* Dark Mode Support (for future implementation) */
@media (prefers-color-scheme: dark) {
	/* Dark mode styles can be added here */
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
	.craft-btn {
		padding: 15px 30px;
	}

	.feature-card:hover {
		transform: none;
	}

	.video-container:hover {
		transform: none;
	}

	.step-card:hover {
		transform: none;
	}

	/* Increase touch targets */
	.footer-social a {
		width: 50px;
		height: 50px;
	}

	.icon-circle {
		width: 110px;
		height: 110px;
	}
}
