/**
 * BRCC Shortcodes Styles
 * Version: 1.0.0
 */

/* ==========================================================================
   General Styles
   ========================================================================== */

.brcc-shortcode {
	margin: 20px 0;
}

/* ==========================================================================
   Company Info Shortcode
   ========================================================================== */

.brcc-company-info {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 8px;
	border: 1px solid #e9ecef;
}

.company-logo img {
	max-width: 100px;
	height: auto;
}

.company-description h3 {
	margin: 0 0 10px 0;
	color: #333;
	font-size: 24px;
}

.company-description p {
	margin: 0;
	color: #666;
	line-height: 1.6;
}

/* ==========================================================================
   CTA Button Shortcode
   ========================================================================== */

.brcc-cta-wrapper {
	text-align: center;
	margin: 20px 0;
}

.brcc-cta-button {
	display: inline-block;
	padding: 12px 30px;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	text-align: center;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	cursor: pointer;
}

/* Button Styles */
.btn-primary {
	background: #007bff;
	color: white;
}

.btn-primary:hover {
	background: #0056b3;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-secondary {
	background: #6c757d;
	color: white;
}

.btn-secondary:hover {
	background: #545b62;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.btn-outline {
	background: transparent;
	color: #007bff;
	border-color: #007bff;
}

.btn-outline:hover {
	background: #007bff;
	color: white;
	transform: translateY(-2px);
}

/* Button Sizes */
.btn-small {
	padding: 8px 20px;
	font-size: 14px;
}

.btn-medium {
	padding: 12px 30px;
	font-size: 16px;
}

.btn-large {
	padding: 16px 40px;
	font-size: 18px;
}

/* ==========================================================================
   Contact Info Shortcode
   ========================================================================== */

.brcc-contact-info {
	background: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 25px;
}

.contact-item:last-child {
	margin-bottom: 0;
}

.contact-item i {
	font-size: 24px;
	color: #007bff;
	margin-top: 5px;
	flex-shrink: 0;
}

.contact-details h4 {
	margin: 0 0 8px 0;
	color: #333;
	font-size: 18px;
	font-weight: 600;
}

.contact-details p {
	margin: 0;
	color: #666;
	line-height: 1.6;
}

.contact-details a {
	color: #007bff;
	text-decoration: none;
}

.contact-details a:hover {
	text-decoration: underline;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
	.brcc-company-info {
		flex-direction: column;
		text-align: center;
	}

	.contact-item {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.brcc-company-info,
	.brcc-contact-info {
		padding: 20px 15px;
	}
}
