/* ================================================================
   Oswald Font Typography Rules
   ================================================================ */

/* Oswald Base Class */
.oswald-basic {
  font-family: "Oswald", sans-serif;
  font-style: normal;
}

/* Apply Oswald to All Headings H1-H6 */
h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald", sans-serif;
  font-style: normal;
}

/* Apply Oswald to All Button Text */
.btn,
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  font-family: "Oswald", sans-serif;
  font-style: normal;
}

/* Apply Oswald to Pagination Links (if you want them as buttons) */
.pagination .page-link {
  font-family: "Oswald", sans-serif;
  font-style: normal;
}

/* Apply Oswald to Badge Text (optional - remove if you don't want this) */
.badge {
  font-family: "Oswald", sans-serif;
  font-style: normal;
}

.cover-photo { 
	height: 320px; 
	background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
	position: relative;
}
.profile-header-content {
	margin-top: -140px;
	position: relative;
}
.avatar-circle {
	width: 160px; 
	height: 160px; 
	border-radius: 8%;
	background: #adb5bd; 
	border: 4px solid #fff;
	display: inline-flex; 
	align-items: center; 
	justify-content: center;
	font-size: 3.5rem; 
	color: #fff; 
	font-weight: 600;
	margin: 0 auto;
}
.profile-card { border-radius: .45rem; }
.social-link { display: inline-flex; align-items: center; gap: .4rem; }
.info-row { display: flex; align-items: flex-start; gap: .6rem; padding: .35rem 0; border-bottom: 1px solid #f0f0f0; }
.info-row:last-child { border-bottom: none; }
.info-icon { width: 20px; text-align: center; color: #6c757d; flex-shrink: 0; margin-top: 2px; }




/* Mode Indicator Bar */
.mode-indicator-bar {
	width: 100% !important;
	height: 45px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: background-color 0.3s ease;
	min-height: 35px !important;
}
/* Rounded corners for modal */
.modal-content {
	border-radius: 8px !important;
	overflow: hidden; /* Ensures content stays within rounded corners */
}
.mode-indicator-text {
	color: white !important;
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 0.9px;
	display: block !important;
}

/* Mode Colors */
.mode-social {
	background-color: #3b5998 !important; /* Facebook Blue */
}

.mode-marketplace {
	background-color: #ff6b35 !important; /* Orange */
}

.mode-dating {
	background-color: #e91e63 !important; /* Pink */
}

.mode-events {
	background-color: #9c27b0 !important; /* Purple */
}

.mode-professional {
	background-color: #0077b5 !important; /* LinkedIn Blue */
}

.mode-business {
	background-color: #34a853 !important; /* Green */
}

.mode-property {
	background-color: #1976d2 !important; /* Blue */
}

.mode-artists {
	background-color: #f4511e !important; /* Deep Orange */
}

.mode-accommodation {
	background-color: #9c27b0 !important; /* Purple */
}

.mode-profile {
	background-color: #5e35b1 !important; /* Deep Purple */
}

.mode-settings {
	background-color: #546e7a !important; /* Blue Grey */
}
.mode-jobs {
	background-color: #00897b !important; /* Teal */
}

.mode-consultants {
	background-color: #ff9800 !important; /* Orange */
}

.mode-agency {
	background-color: #795548 !important; /* Brown */
}

.mode-vehicles {
	background-color: #607d8b !important; /* Blue-grey */
}

.mode-retail {
	background-color: #e53935 !important; /* Red */
}

.mode-website {
	background-color: #3f51b5 !important; /* Indigo */
}

.mode-crm {
	background-color: #607d8b !important; /* Blue-grey */
}

/* Mode Switcher Modal Grid */
.mode-switcher-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 5px;
	padding: 5px;
}

@media (max-width: 768px) {
	.mode-switcher-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Make cards square */
.mode-switcher-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1; /* Forces square shape */
	padding: 10px;
	border-radius: 8px;
	text-decoration: none;
	color: white !important;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
}

.mode-switcher-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.4);
	text-decoration: none;
	opacity: 0.9;
}

.mode-switcher-item i {
	font-size: 24px;
	margin-bottom: 6px;
	color: white !important;
}

.mode-switcher-item span {
	font-size: 10px;
	font-weight: 600;
	color: white !important;
	text-align: center;
	line-height: 1.2;
}

/* Remove the mobile breakpoint that was forcing 2 columns */
@media (max-width: 768px) {
	.mode-switcher-grid {
		grid-template-columns: repeat(3, 1fr); /* Keep 3 columns */
		gap: 8px; /* Slightly smaller gap on mobile */
	}
	
	.mode-switcher-item span {
		font-size: 9px; /* Slightly smaller text on mobile */
	}
}
/* Dark Mode Modal Styling */
.modal-dark {
	background-color: #1a1a1a !important;
	border: none;
}

.modal-dark-header {
	background-color: #1a1a1a !important;
	border-bottom: 1px solid #333 !important;
}

.modal-dark-body {
	background-color: #1a1a1a !important;
}

.modal-dark .modal-title {
	color: #ffffff !important;
	font-weight: 700;
}

/* Individual Card Colors */
.mode-card-social {
	background: linear-gradient(135deg, #4267B2 0%, #5578c7 100%);
}

.mode-card-professional {
	background: linear-gradient(135deg, #0077B5 0%, #1a8cd8 100%);
}

.mode-card-business {
	background: linear-gradient(135deg, #34A853 0%, #4bbe6e 100%);
}

.mode-card-dating {
	background: linear-gradient(135deg, #E91E63 0%, #f4497e 100%);
}

.mode-card-artist {
	background: linear-gradient(135deg, #F4511E 0%, #ff6b3d 100%);
}

.mode-card-marketplace {
	background: linear-gradient(135deg, #FF6B35 0%, #ff8556 100%);
}

.mode-card-property {
	background: linear-gradient(135deg, #1976D2 0%, #3d8ee5 100%);
}

.mode-card-accommodation {
	background: linear-gradient(135deg, #9C27B0 0%, #b347c4 100%);
}

.mode-card-events {
	background: linear-gradient(135deg, #673AB7 0%, #8456ca 100%);
}

.mode-card-jobs {
	background: linear-gradient(135deg, #00897B 0%, #1aa396 100%);
}

.mode-card-consultant {
	background: linear-gradient(135deg, #FF9800 0%, #ffad33 100%);
}

.mode-card-agency {
	background: linear-gradient(135deg, #795548 0%, #936b5f 100%);
}

.mode-card-vehicles {
	background: linear-gradient(135deg, #607D8B 0%, #7a97a5 100%);
}

.mode-card-retail {
	background: linear-gradient(135deg, #E53935 0%, #ef5753 100%);
}

.mode-card-website {
	background: linear-gradient(135deg, #3F51B5 0%, #5e6ec9 100%);
}

.mode-card-crm {
	background: linear-gradient(135deg, #607D8B 0%, #7a97a5 100%);
}


/* Modal customization */
.modal-content {
	border-radius: 15px;
}

.modal-header {
	padding: 20px;
}

.modal-body {
	padding: 20px;
}

/* Mode Switcher Grid - Responsive columns */
.mode-switcher-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr); /* 5 columns on desktop */
	gap: 12px;
	padding: 5px;
}

/* Make cards square */
.mode-switcher-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	padding: 10px;
	border-radius: 8px;
	text-decoration: none;
	color: white !important;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
}

.mode-switcher-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.4);
	text-decoration: none;
	opacity: 0.9;
}

.mode-switcher-item i {
	font-size: 24px;
	margin-bottom: 6px;
	color: white !important;
}

.mode-switcher-item span {
	font-size: 11px;
	font-weight: 600;
	color: white !important;
	text-align: center;
	line-height: 1.2;
}

/* Tablet: 4 columns */
@media (max-width: 992px) {
	.mode-switcher-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Mobile: 3 columns */
@media (max-width: 768px) {
	.mode-switcher-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 8px;
	}
	
	.mode-switcher-item span {
		font-size: 10px;
	}
}

/* Optional: Make modal scrollable if still too tall */
.modal-dark-body {
	max-height: 70vh;
	overflow-y: auto;
}

/* Container-full: full width on mobile, margins on desktop */
.container-full {
	width: 100%;
	padding-left: 8px;
	padding-right: 8px;
}

/* Desktop: Add side margins */
@media (min-width: 992px) {
	.container-full {
		padding-left: 120px;
		padding-right: 120px;
	}
}

/* Optional: Tablet intermediate size */
@media (min-width: 768px) and (max-width: 991px) {
	.container-full {
		padding-left: 50px;
		padding-right: 50px;
	}
}



/* ================================================================
   SayWhere Social - Friends Page Custom Styling
   ================================================================ */

/* Card Styling - Rounded corners and slightly darker background */
.card {
    border-radius: 8px;
    background-color: #f5f5f5;
    border: 1px solid #e8e8e8;
}

.card-body {
    background-color: #f5f5f5;
    border-radius: 8px 8px 0 0;
}

.card-footer {
    background-color: #f5f5f5 !important;
    border-radius: 0 0 8px 8px;
}

/* Button Styling - All buttons rounded */
.btn,
.btn-sm,
.btn-outline-secondary,
.btn-outline-primary,
.btn-outline-info,
.btn-outline-warning,
.btn-outline-danger,
.btn-primary,
.btn-secondary,
.btn-danger {
    border-radius: 8px;
}

/* Card footer buttons - ensure they're properly styled */
.card-footer .btn-sm {
    border-radius: 8px;
    padding: 0.375rem 0.75rem;
}

/* Modal buttons - also rounded */
.modal-footer .btn {
    border-radius: 8px;
}

/* Page action buttons (Find Friends button at top) */
.btn-outline-primary {
    border-radius: 8px;
}

/* Pagination buttons */
.pagination .page-link {
    border-radius: 8px;
    margin: 0 2px;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    border-radius: 8px;
}

/* Alert boxes - rounded to match theme */
.alert {
    border-radius: 8px;
}

/* Badge styling */
.badge {
    border-radius: 8px;
}

/* Modal content rounded */
.modal-content {
    border-radius: 8px;
}

.modal-header {
    border-radius: 8px 8px 0 0;
}

.modal-footer {
    border-radius: 0 0 8px 8px;
}








