/*
 * Index - Modern Homepage Redesign
 * Dark mode, mobile-first, modern aesthetic
 */

/* ==========================================================================
   BASE STYLES & UTILITIES
   ========================================================================== */

* {
	box-sizing: border-box;
}

body {
	background-color: #0a0a0a;
	color: #CCC;
	margin: 0;
	padding: 0;
	line-height: 1.6;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ==========================================================================
   HEADER & LOGO
   ========================================================================== */

/* Hide dark logos in dark mode */
#logo .logo-dark,
#logo .logo-dark-m {
	display: none;
}

/* Show light logo on desktop */
#logo .logo-light {
	display: block;
}

/* Hide mobile light logo on desktop */
#logo .logo-light-m {
	display: none;
}

/* Mobile logo handling */
@media (max-width: 991px) {
	#logo .logo-light {
		display: none;
	}

	#logo .logo-light-m {
		display: block;
	}
}

/* Menu styling - make all menu items white */
.tt-menu-nav > li > a,
.tt-menu-nav > li > .tt-submenu-label {
	color: #fff !important;
}

.tt-menu-nav > li > a:hover,
.tt-menu-nav > li > .tt-submenu-label:hover {
	color: #08c1b8 !important;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
	display: inline-block;
	padding: 14px 32px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 4px;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 2px solid transparent;
	min-height: 44px;
	text-align: center;
}

.btn-primary {
	background-color: #048078;
	color: #fff;
	border-color: #048078;
}

.btn-primary:hover {
	background-color: #036c66;
	border-color: #036c66;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(4, 128, 120, 0.3);
}

.btn-white-bordered {
	background-color: transparent;
	color: #fff;
	border-color: #fff;
}

.btn-white-bordered:hover {
	background-color: #fff;
	color: #111;
}

/* ==========================================================================
   HERO SECTION - SPLIT DESIGN
   ========================================================================== */

.hero-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	background-color: #000;
	overflow: hidden;
}

/* Hero - Overlay Design (All Screens) */
.hero-container {
	width: 100%;
	max-width: 100%;
}

.hero-mobile {
	display: block;
	position: relative;
	min-height: 100vh;
}

.hero-mobile-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index: 1;
}

.hero-mobile-overlay {
	position: relative;
	z-index: 2;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 40px 24px;
	background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.85) 100%);
}

.hero-title {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 16px 0;
	color: #fff;
	letter-spacing: -0.02em;
}

.hero-subtitle {
	font-size: 18px;
	line-height: 1.6;
	margin: 0 0 32px 0;
	color: #EEE;
	max-width: 600px;
}

.hero-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
}

/* Responsive Typography */
@media (min-width: 576px) {
	.hero-title {
		font-size: 44px;
	}

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

@media (min-width: 768px) {
	.hero-title {
		font-size: 56px;
	}

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

	.hero-mobile-overlay {
		padding: 60px 40px;
	}
}

@media (min-width: 992px) {
	.hero-title {
		font-size: 64px;
	}

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

	.hero-mobile-overlay {
		padding: 80px 60px;
	}
}

@media (min-width: 1400px) {
	.hero-title {
		font-size: 72px;
	}

	.hero-subtitle {
		font-size: 26px;
		max-width: 800px;
	}
}

/* ==========================================================================
   HORIZONTAL SWIPE GALLERY
   ========================================================================== */

.swipe-gallery-section {
	padding: 40px 0;
	background-color: #000;
	overflow: hidden;
}

.swipe-carousel {
	margin: 0;
}

.swipe-carousel .splide__track {
	padding: 10px 0;
}

.swipe-carousel .splide__slide {
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.6;
	transition: opacity 0.3s ease;
}

.swipe-carousel .splide__slide.is-active {
	opacity: 1;
}

.swipe-carousel .splide__slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	border-radius: 4px;
}

/* Hide arrows and pagination for clean look */
.swipe-carousel .splide__arrows {
	display: none;
}

.swipe-carousel .splide__pagination {
	display: none;
}

/* Mobile adjustments */
@media (max-width: 575px) {
	.swipe-carousel .splide__slide {
		height: 250px;
	}

	.swipe-gallery-section {
		padding: 30px 0;
	}
}

@media (min-width: 768px) {
	.swipe-carousel .splide__slide {
		height: 400px;
	}

	.swipe-gallery-section {
		padding: 50px 0;
	}
}

@media (min-width: 1200px) {
	.swipe-carousel .splide__slide {
		height: 500px;
	}

	.swipe-gallery-section {
		padding: 60px 0;
	}
}

/* ==========================================================================
   BENTO GRID - WHO IS THIS FOR SECTION
   ========================================================================== */

.bento-section {
	padding: 100px 20px;
	background-color: #0a0a0a;
}

.bento-container {
	max-width: 1400px;
	margin: 0 auto;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-title {
	font-size: 48px;
	font-weight: 700;
	color: #EEE;
	margin: 0 0 16px 0;
}

.section-subtitle {
	font-size: 20px;
	color: #CCC;
	margin: 0;
}

.bento-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr;
}

/* Tablet: 2 columns */
@media (min-width: 768px) {
	.bento-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bento-card-large {
		grid-column: span 2;
	}
}

/* Desktop: 4 columns with asymmetric layout */
@media (min-width: 992px) {
	.bento-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 30px;
	}

	.bento-card-large {
		grid-column: span 2;
		grid-row: span 1;
	}

	.bento-card:nth-child(2) {
		grid-column: span 2;
	}

	.bento-card:nth-child(3) {
		grid-column: span 2;
	}

	.bento-card-highlight {
		grid-column: span 2;
	}
}

.bento-card {
	background-color: #111;
	border: 1px solid #222;
	border-radius: 12px;
	padding: 40px 32px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.bento-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(8, 193, 184, 0.2);
	border-color: #08c1b8;
}

.bento-card-highlight {
	background-color: #0a0a0a;
	border: 2px solid #08c1b8;
}

.bento-card-highlight:hover {
	background-color: rgba(8, 193, 184, 0.05);
}

.bento-icon {
	font-size: 48px;
	color: #08c1b8;
	margin-bottom: 24px;
}

.bento-card h3 {
	font-size: 28px;
	font-weight: 700;
	color: #EEE;
	margin: 0 0 16px 0;
}

.bento-card p {
	font-size: 16px;
	line-height: 1.7;
	color: #CCC;
	margin: 0 0 16px 0;
}

.bento-card p strong {
	color: #EEE;
}

.bento-link {
	display: inline-block;
	color: #08c1b8;
	text-decoration: none;
	font-weight: 600;
	margin-top: 8px;
	transition: all 0.2s ease;
}

.bento-link:hover {
	color: #fff;
	transform: translateX(4px);
}

/* Mobile adjustments */
@media (max-width: 767px) {
	.bento-section {
		padding: 60px 20px;
	}

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

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

	.bento-card {
		padding: 32px 24px;
	}

	.bento-card h3 {
		font-size: 24px;
	}
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */

.gallery-list-section {
	padding: 100px 20px;
	background-color: #111;
}

.gallery-header {
	text-align: center;
	margin-bottom: 60px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.gallery-title {
	font-size: 48px;
	font-weight: 700;
	color: #EEE;
	margin: 0 0 16px 0;
}

.gallery-subtitle {
	font-size: 20px;
	color: #CCC;
	margin: 0;
}

.gallery-carousel {
	margin-top: 40px;
}

.gallery-card {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 8px;
	aspect-ratio: 3/2;
	transition: transform 0.3s ease;
}

.gallery-card:hover {
	transform: scale(1.02);
}

.gallery-card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gallery-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-card-overlay {
	opacity: 0.9;
}

.gallery-card-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 24px;
	color: #fff;
	z-index: 2;
}

.gallery-card-title {
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 8px 0;
	color: #fff;
}

.gallery-card-subtitle {
	font-size: 16px;
	color: #CCC;
	display: block;
}

/* Splide overrides for dark mode */
.splide__arrow {
	background-color: rgba(0, 0, 0, 0.6);
	color: #fff;
}

.splide__arrow:hover {
	background-color: #08c1b8;
}

.splide__pagination__page {
	background-color: #666;
}

.splide__pagination__page.is-active {
	background-color: #08c1b8;
}

/* Mobile gallery adjustments */
@media (max-width: 767px) {
	.gallery-list-section {
		padding: 60px 20px;
	}

	.gallery-title {
		font-size: 36px;
	}

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

	.gallery-card-title {
		font-size: 20px;
	}
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.about-section {
	padding: 100px 20px;
	background-color: #0a0a0a;
}

.about-container {
	max-width: 1400px;
	margin: 0 auto;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 60px;
	align-items: center;
}

@media (min-width: 992px) {
	.about-content {
		grid-template-columns: 1fr 1.2fr;
		gap: 80px;
	}
}

.about-image {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}

.about-text {
	color: #CCC;
}

.about-title {
	font-size: 42px;
	font-weight: 700;
	color: #EEE;
	margin: 0 0 12px 0;
}

.about-subtitle {
	font-size: 18px;
	color: #08c1b8;
	margin: 0 0 32px 0;
	font-weight: 600;
}

.about-body p {
	font-size: 18px;
	line-height: 1.8;
	margin: 0 0 20px 0;
	color: #CCC;
}

.about-body .btn {
	margin-top: 20px;
}

/* Mobile about adjustments */
@media (max-width: 991px) {
	.about-section {
		padding: 60px 20px;
	}

	.about-title {
		font-size: 32px;
	}

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

	.about-body p {
		font-size: 16px;
	}
}

/* ==========================================================================
   INSTAGRAM SECTION
   ========================================================================== */

.instagram-section {
	padding: 100px 20px;
	background-color: #111;
}

.instagram-container {
	max-width: 1400px;
	margin: 0 auto;
}

.instagram-header {
	text-align: center;
	margin-bottom: 60px;
}

.instagram-title {
	font-size: 42px;
	font-weight: 700;
	color: #EEE;
	margin: 0 0 16px 0;
}

.instagram-title a {
	color: #08c1b8;
	text-decoration: none;
	transition: color 0.3s ease;
}

.instagram-title a:hover {
	color: #06a89f;
}

.instagram-subtitle {
	font-size: 18px;
	color: #CCC;
	margin: 0;
}

.instagram-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

@media (min-width: 576px) {
	.instagram-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}

@media (min-width: 992px) {
	.instagram-grid {
		grid-template-columns: repeat(6, 1fr);
		gap: 24px;
	}
}

.instagram-placeholder {
	grid-column: 1 / -1;
	text-align: center;
	padding: 80px 20px;
	background-color: #0a0a0a;
	border-radius: 8px;
	border: 2px dashed #333;
}

.instagram-cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 24px;
	color: #08c1b8;
	text-decoration: none;
	transition: all 0.3s ease;
	padding: 20px 40px;
	border: 2px solid #08c1b8;
	border-radius: 8px;
}

.instagram-cta:hover {
	background-color: #08c1b8;
	color: #fff;
	transform: scale(1.05);
}

.instagram-cta i {
	font-size: 32px;
}

/* Mobile instagram adjustments */
@media (max-width: 767px) {
	.instagram-section {
		padding: 60px 20px;
	}

	.instagram-title {
		font-size: 32px;
	}

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

	.instagram-cta {
		font-size: 20px;
		padding: 16px 32px;
	}

	.instagram-cta i {
		font-size: 28px;
	}
}

/* ==========================================================================
   FOOTER ADJUSTMENTS
   ========================================================================== */

#footer {
	background-color: #121212;
	color: #CCC;
}

.footer-copyright {
	color: #999;
}

/* Footer Grid Layout */
.footer-container .row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.footer-container .col-md-6 {
	width: 100%;
	padding: 0 15px;
}

@media (min-width: 768px) {
	.footer-container .col-md-6 {
		width: 50%;
	}

	.col-md-push-6 {
		order: 2;
	}

	.col-md-pull-6 {
		order: 1;
	}
}

/* Social Buttons Layout */
.social-buttons {
	margin-bottom: 20px;
}

.social-buttons ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
}

@media (min-width: 768px) {
	.social-buttons {
		margin-bottom: 0;
	}

	.social-buttons ul {
		justify-content: flex-end;
	}
}

.social-buttons li {
	margin: 0;
	padding: 0;
}

.btn-social-min {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	font-size: 16px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.btn-social-min:hover {
	transform: translateY(-2px);
	background-color: #08c1b8;
}

.footer-copyright {
	text-align: center;
}

@media (min-width: 768px) {
	.footer-copyright {
		text-align: left;
	}
}

.footer-copyright p {
	margin: 5px 0;
}

/* ==========================================================================
   ANIMATIONS & TRANSITIONS
   ========================================================================== */

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

/* Fade in on scroll (optional enhancement) */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in-up {
	animation: fadeInUp 0.6s ease-out;
}

/* ==========================================================================
   RESPONSIVE UTILITIES
   ========================================================================== */

/* Container padding adjustments */
@media (max-width: 575px) {
	.bento-section,
	.gallery-list-section,
	.about-section,
	.instagram-section {
		padding-left: 16px;
		padding-right: 16px;
	}
}

/* Touch-friendly sizing */
@media (hover: none) and (pointer: coarse) {
	.btn {
		min-height: 48px;
		padding: 16px 36px;
	}

	.bento-card {
		padding: 36px 28px;
	}
}

/* High contrast mode support */
@media (prefers-contrast: high) {
	.bento-card {
		border-width: 2px;
	}

	.btn {
		border-width: 3px;
	}
}
