@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

main {
	background: url(../images/carbon-fibre.png) ;

}
.hero-area {
	background: none;
	background-color: #3f3304ba;
	display: flex;
	align-items: center;
	color: #ffffff;
	padding: 60px 0;
}

.hero-area .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}


.hero-content {
	flex: 1;
	min-width: 350px;
	padding-right: 40px;
}

.badge {
	background-color: rgba(250, 237, 185, 0.2);
	border: 1px solid #d4af37;
	color: #ffcf32;
	padding: 6px 15px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 25px;
	display: inline-block;
}

.hero-content h1 {
	font-size: 56px;
	line-height: 1.1;
	margin-bottom: 25px;
}

.hero-content h1 span {
	color: #d4af37; 
}

.hero-content p {
	font-size: 19px;
	line-height: 1.6;
	color: #e0e0e0;
	margin-bottom: 40px;
}

.btn-group {
	display: flex;
	gap: 15px;
}

.btn-primary {
	background-color: #d4af37;
	color: #5a4b13;
	padding: 15px 35px;
	text-decoration: none;
	font-weight: 700;
	border-radius: 5px;
	transition: 0.3s;
	box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-primary:hover {
	background-color: #ffffff;
	color: #5a4b13;
	transform: translateY(-3px);
}

.btn-secondary {
	background-color: transparent;
	color: #ffffff;
	padding: 15px 35px;
	text-decoration: none;
	font-weight: 700;
	border: 2px solid rgba(255,255,255,0.3);
	border-radius: 5px;
	transition: 0.3s;
}

.btn-secondary:hover {
	border-color: #ffffff;
	background: rgba(255,255,255,0.05);
}


.hero-image {
	flex: 1;
	min-width: 350px;
	text-align: right;
}

.hero-image img {
	max-width: 70%;
	height: auto;
	animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-15px); }
}

.pricing {
	padding: 50px 0;
	background-color: #f6f6f6;
}

.pricing .section-title {
	text-align: center;
}




.switch-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-bottom: 50px;
}

.time {
	font-size: 17px;
	font-weight: 500;
	color: #293a45;
}

.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 30px;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0; 
	left: 0; 
	right: 0; 
	bottom: 0;
	background-color: #44340c;
	transition: .4s;
	border-radius: 34px;
}

.slider::before {
	position: absolute;
	content: "";
	height: 22px;
	width: 22px;
	left: 4px;
	bottom: 4px;
	background-color: #fff;
	transition: .4s;
	border-radius: 50%;
}

input:checked + .slider:before {
	transform: translateX(30px);
}

.discount-badge {
	background: #e74c3c;
	color: white;
	padding: 2px 8px;
	border-radius: 5px;
	font-size: 12px;
	margin-left: 5px;
}

.web-host-grid {
	padding-bottom: 0;
	border-bottom: none;
}

.web-host-grid .package h4 {
	margin-bottom: 0;
}

.package > p {
	margin-bottom: 10px;
}

.package {
	text-align: center;
}

.package::after {
	content: '';
	padding: 0;
}

.popular::after {
	content: 'Most Popular';
	padding: 6px 12px;
	top: 55%;
	right: -41px;
}

.recommended::after {
	content: 'Recommended';
	padding: 6px 12px;
	top: 57%;
	right: -50px;
}

.plan-resource {
	background: #f6f6f6;
	padding: 0 0 50px;
}

.plan-resource details {
	padding: 0 20px;
}

.plan-resource details summary {
	padding: 15px;
	background-color: #5a4b13;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	box-shadow: 0 2px 5px #000;
	cursor: pointer;
	position: relative;
}

.plan-resource details summary::after {
	content: '➕';
	display: block;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	padding: 2px;
	background: #ece90d;
	border-radius: 50%;
}

.plan-resource details[open] summary::after {
	content: '➖';
}

.plan-resource details table {
	width: 100%;
	border: 1px solid #ddd;
	padding: 10px;
	border-collapse: collapse;
}

.plan-resource details table td,
.plan-resource details table th {
	border: 1px solid #5a4b13;
	padding: 10px;
	text-align: center;
}

.plan-resource details table th {
	background: #808080;
}

.plan-resource details table td {
	background: #ddd;
}

.plan-resource details table tr:nth-child(1) td {
	background: #b8b991;
}

.feature_area {
	padding: 0 0 50px 0;
}

@media (max-width: 739px) {
	.hero-image {
		text-align: center;
	}
	.hero-content{
		padding-left: 20px;
		padding-right: 0;
		min-width: 320px;
	}
	.hero-image{
		min-width: 320px;
	}
}

@media (max-width: 500px) {
	.hero-area .container{
		padding: 0px;
	}
	.btn-primary {
		padding: 15px;
	}
	.btn-secondary {
		padding: 15px;
	}
	.plan-resource details {
		overflow-x: scroll;
		padding: 0;
	}
}