@charset "UTF-8";
/* CSS Document */

/* GENERAL STYLES */
/** {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}*/
body {
	background-image: url('images/background.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	margin: 0;
	padding: 0;}

body.no-background {
	background-image: none;
	background-color: #081d60;}

/* Header Styles */
.header {
	background-image: url('images/header.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 10px 0;
	min-height: 60px;
	position: relative;
	z-index: 1000;}

.header .container {
	display: flex;
	align-items: center;}

.menu-toggle-checkbox {
	display: none;}

/* Hamburger Menu Styles */
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1000;
	padding: 10px;}

.hamburger span {
	width: 30px;
	height: 3px;
	background-color: #c5c5e4;
	margin: 4px 0;
	border-radius: 2px;}

/* Mobile Menu Styles */
.mobile-menu {
	display: none;
	flex-direction: column;
	position: fixed;
	top: 85px;
	right: -100%;
	width: 100%;
	height: calc(100vh - 100px);
	background: #081d60;
	backdrop-filter: blur(10px);
	box-shadow: -5px 0 20px rgba(0, 0, 0, 0.4);
	padding-top: 40px;
	z-index: 999;}

.mobile-menu a {
	padding: 25px 40px;
	text-decoration: none;
	color: #c5c5e4;
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 500;
	border-bottom: 1px solid rgba(197, 197, 228, 0.15);
	transition: all 0.3s ease;
	letter-spacing: 1px;
	text-align: center;}

.mobile-menu a:hover {
	background-color: rgba(197, 197, 228, 0.1);
	color: #c5c5e4;
	border-bottom-color: rgba(197, 197, 228, 0.4);}

.menu-toggle-checkbox:checked ~ .mobile-menu {
	right: 0;}

/* hamburger  */
.menu-toggle-checkbox:checked ~ .header .hamburger span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);}

.menu-toggle-checkbox:checked ~ .header .hamburger span:nth-child(2) {
	opacity: 0;}

.menu-toggle-checkbox:checked ~ .header .hamburger span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);}

/*  */
.nav-item {
	display: flex;
	align-items: center;
	justify-content: center;}

.nav-item a {
	text-decoration: none;
	color: #c5c5e4;
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 500;
	padding: 10px 20px;
	background-color: transparent;
	border: 2px solid transparent;
	border-radius: 5px;
	transition: all 0.3s ease;
	display: inline-block;}

.nav-item a:hover {
	background-color: #c5c5e4;
	color: #081d60;
	border-color: #081d60;}

/* Logo styles */
.logo-col {
	display: flex;
	align-items: center;}

.logo-col img {
	max-width: 100%;
	height: auto;}

/* Mobile  */
@media only screen and (max-width: 768px) { 
	
	/* Show hamburger menu */
	.hamburger {
		display: flex;}
	
	/* Hide desktop navigation */
	.nav-item {
		display: none ;}
	
	/* Show mobile menu */
	.mobile-menu {
		display: flex;}
	
	/* header for mobile */
	.header {
		padding: 15px 0;
		min-height: 70px;
		position: relative;}
	
	/* Logo  mobile */		
	.logo-col {
		position: relative;
		z-index: 100;}
	
	.logo-col img {
		max-width: 150px;}
	
	.container {
		padding: 0 15px;}}

/* Hero Section  */
.hero-section {
	padding: 80px 0;
	text-align: center;}

.hero-title {
	font-family: 'Playfair Display', serif;
	font-weight: 500;
	font-size: 80px;
	color: #c5c5e4;
	letter-spacing: 23px;
	margin: 0;
	padding: 0;
	white-space: nowrap;}

.hero-line {
	width: 600px;
	height: 2px;
	background-color: #c5c5e4;
	margin: 15px auto;}

.hero-subtitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 50px;
	color: #c5c5e4;
	margin: 0;
	padding: 0;
	font-weight: 300;
	letter-spacing: 3px;}

.hero-button {
	display: inline-block;
	margin-top: 115px;
	padding: 12px 30px;
	background-color: #081d60;
	border: 2px solid #c5c5e4;
	border-radius: 5px;
	color: #c5c5e4;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 20px;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 2px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;}

.hero-button:hover {
	background-color: #c5c5e4;
	color: #081d60;
	border-color: #081d60;}

/*  hero section */
@media only screen and (max-width: 758px) {
	.hero-title {
		font-size: 32px;
		letter-spacing: 8px;}
	
	.hero-subtitle {
		font-size: 18px;}
	
	.hero-line {
		width: 200px;}
	
	.hero-button {
		font-size: 16px;
		padding: 8px 20px;
		margin-top: 120px;}}
	
	.hero-section {
		padding: 120px 0 15px 0;}

/* CONTENT SECTION STYLES */
.content-section {
	padding: 80px 0;
	min-height: calc(100vh - 200px);}

.portfolio-page.content-section {
	padding: 20px 0 10px 0;
	min-height: auto;}

.portfolio-page + .content-section {
	padding: 10px 0;
	min-height: auto;}

/* .content-section:has(+ .gallery-section) {
	padding: 10px 0 0 0;
	min-height: auto;} */

.page-title {
	font-family: 'Playfair Display', serif;
	font-weight: 500;
	font-size: 60px;
	color: #c5c5e4;
	text-align: center;
	margin: 0 0 5px 0;
	letter-spacing: 3px;}

.title-line {
	width: 300px;
	height: 2px;
	background-color: #c5c5e4;
	margin: 0 auto 40px auto;}

/* ABOUT PAGE STYLES */
.about-page {
	min-height: calc(100vh - 60px);}

.about-photo {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 8px 16px rgba(0,0,0,0.2);
	margin-top: 40px;
}

.about-hero-card {
	background: linear-gradient(135deg, rgba(197, 197, 228, 0.15) 0%, rgba(197, 197, 228, 0.05) 100%);
	border: 1px solid rgba(197, 197, 228, 0.3);
	border-radius: 20px;
	padding: 60px 40px;
	text-align: center;
	margin: 40px 0;
	backdrop-filter: blur(10px);}

.about-hero-card h2 {
	font-family: 'Playfair Display', serif;
	font-size: 48px;
	color: #c5c5e4;
	margin-bottom: 15px;}

.about-subtitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	color: #c5c5e4;
	margin-bottom: 25px;
	font-weight: 300;}

.about-description {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	color: #c5c5e4;
	line-height: 1.8;
	max-width: 800px;
	margin: 0 auto;}

.about-card {
	background: rgba(197, 197, 228, 0.08);
	border: 1px solid rgba(197, 197, 228, 0.2);
	border-radius: 15px;
	padding: 40px 30px;
	margin-bottom: 30px;
	transition: all 0.3s ease;
	height: 100%;}

.about-card:hover {
	transform: translateY(-5px);
	border-color: rgba(197, 197, 228, 0.4);
	background: rgba(197, 197, 228, 0.12);}

.card-icon {
	font-size: 48px;
	margin-bottom: 20px;}

.about-card h3 {
	font-family: 'Playfair Display', serif;
	font-size: 28px;
	color: #c5c5e4;
	margin-bottom: 15px;}

.about-card p {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	color: #c5c5e4;
	line-height: 1.8;}

.skills-section {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 1px solid rgba(197, 197, 228, 0.2);
	border-radius: 20px;
	padding: 50px 40px;
	margin-top: 30px;}

.skills-section h3 {
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	color: #fff;
	text-align: center;
	margin-bottom: 40px;}

.skills-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, 250px);
	
	grid-gap: 25px;
	gap: 25px;}

.skill-item {
	background: rgba(197, 197, 228, 0.08);
	border: 1px solid rgba(197, 197, 228, 0.15);
	border-radius: 12px;
	padding: 25px 20px;
	display: flex;
	align-items: center;
	column-gap: 15px;
	gap: 15px;}

.skill-icon {
	font-size: 32px;}

.skill-name {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	color: #c5c5e4;
	font-weight: 500;}

/* Certifications Section */
.certifications-section {
	background: linear-gradient(135deg, rgba(197, 197, 228, 0.1) 0%, rgba(197, 197, 228, 0.05) 100%);
	border: 1px solid rgba(197, 197, 228, 0.25);
	border-radius: 20px;
	padding: 50px 40px;
	margin-top: 40px;
	text-align: center;}

.certifications-section h3 {
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	color: #c5c5e4;
	margin-bottom: 10px;}

.certifications-subtitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	color: #c5c5e4;
	margin-bottom: 40px;
	font-weight: 300;}

.certifications-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 30px;
	gap: 30px;
	max-width: 100%;
	margin: 0;
	justify-items: center;}

.certification-item {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(197, 197, 228, 0.2);
	border-radius: 15px;
	padding: 30px 20px;}

.cert-logo {
	width: 80px;
	height: 80px;
	object-fit: contain;
	margin-bottom: 20px;
	filter: brightness(1.1);}

.certification-item h4 {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	color: #fff;
	margin-bottom: 8px;
	font-weight: 600;}

.certification-item p {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	color: #c5c5e4;
	margin: 0;}

/* PORTFOLIO PAGE STYLES */
.portfolio-page {
	min-height: calc(100vh - 60px);}

.portfolio-intro {
	text-align: center;
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	color: #c5c5e4;
	margin-bottom: 5px;
	padding: 0 20px;}

.portfolio-categories {
	display: grid;
	grid-template-columns: repeat(auto-fill, 300px);
	
	grid-gap: 30px;
	gap: 30px;
	margin: 40px 0;}

.category-card {
	background: linear-gradient(135deg, rgba(197, 197, 228, 0.1) 0%, rgba(197, 197, 228, 0.05) 100%);
	border: 1px solid rgba(197, 197, 228, 0.2);
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;}

.category-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #c5c5e4, #fff);
	transform: scaleX(0);
	transition: transform 0.3s ease;}

.category-card:hover::before {
	transform: scaleX(1);}

.category-card:hover {
	transform: translateY(-10px);
	border-color: rgba(197, 197, 228, 0.4);
	background: linear-gradient(135deg, rgba(197, 197, 228, 0.15) 0%, rgba(197, 197, 228, 0.08) 100%);}

.category-icon {
	font-size: 64px;
	margin-bottom: 20px;}

.category-card h3 {
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	color: #c5c5e4;
	margin-bottom: 15px;}

.category-card p {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	color: #c5c5e4;
	line-height: 1.6;
	margin-bottom: 25px;}

.category-stats {
	padding-top: 20px;
	border-top: 1px solid rgba(197, 197, 228, 0.2);}

.category-stats span {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	color: #c5c5e4;
	font-weight: 600;
	background: rgba(197, 197, 228, 0.15);
	padding: 8px 20px;
	border-radius: 20px;
	display: inline-block;}

.featured-work-section {
	margin-top: 60px;
	text-align: center;}

.section-heading {
	font-family: 'Playfair Display', serif;
	font-size: 42px;
	color: #c5c5e4;
	margin-top: 0;
	margin-bottom: 0;}

.section-description {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	color: #c5c5e4;
	margin-bottom: 40px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;}

.featured-placeholder {
	background: rgba(197, 197, 228, 0.05);
	border: 2px dashed rgba(197, 197, 228, 0.3);
	border-radius: 20px;
	padding: 80px 40px;
	margin: 40px 0;}

.placeholder-icon {
	font-size: 72px;
	margin-bottom: 20px;}

.featured-placeholder p {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	color: #c5c5e4;
	font-style: italic;}

/* CONTACT PAGE STYLES */
.contact-intro {
	text-align: center;
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	color: #fff;
	margin-bottom: 40px;}

.contact-info {
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	padding: 30px;
	background: rgba(8, 29, 96, 0.5);
	border-radius: 10px;
	border: 1px solid rgba(197, 197, 228, 0.2);}

.contact-info h3 {
	font-family: 'Playfair Display', serif;
	font-size: 28px;
	margin-bottom: 20px;
	color: #c5c5e4;}

.contact-info p {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 20px;
	color: #c5c5e4;}

.contact-info a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s ease;}

.contact-info a:hover {
	color: #fff;}

.social-links {
	margin-top: 30px;}

.social-link {
	display: inline-block;
	margin-right: 20px;
	padding: 8px 20px;
	background-color: transparent;
	border: 2px solid #c5c5e4;
	border-radius: 5px;
	color: #c5c5e4;
	text-decoration: none;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	transition: all 0.3s ease;}

.social-link:hover {
	background-color: #c5c5e4;
	color: #081d60;}

.contact-form {
	color: #c5c5e4;
	font-family: 'Montserrat', sans-serif;
	padding: 30px;
	background: rgba(8, 29, 96, 0.5);
	border-radius: 10px;
	border: 1px solid rgba(197, 197, 228, 0.2);}

.contact-form h3 {
	font-family: 'Playfair Display', serif;
	font-size: 28px;
	margin-bottom: 20px;
	color: #c5c5e4;}

.form-group {
	margin-bottom: 20px;}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 500;
	color: #c5c5e4;}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px;
	background-color: rgba(197, 197, 228, 0.1);
	border: 1px solid rgba(197, 197, 228, 0.3);
	border-radius: 5px;
	color: #c5c5e4;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	transition: border-color 0.3s ease;}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #c5c5e4;}

.submit-button {
	padding: 12px 30px;
	background-color: #081d60;
	border: 2px solid #c5c5e4;
	border-radius: 5px;
	color: #c5c5e4;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;}

.submit-button:hover {
	background-color: #c5c5e4;
	color: #081d60;
	border-color: #081d60;}

/* MOBILE STYLES FOR CONTENT PAGES */
@media only screen and (max-width: 768px) {
	.content-section {
		padding: 40px 0;}
	
	.page-title {
		font-size: 36px;}
	
	.title-line {
		width: 200px;}
	
	.about-content {
		padding-left: 0;
		margin-top: 30px;}
	
	.about-content h2 {
		font-size: 28px;}
	
	.about-content h3 {
		font-size: 20px;}
	
	.portfolio-item img {
		height: 250px;}
	
	.contact-info,
	.contact-form {
		margin-bottom: 20px;}
	
	.social-link {
		display: block;
		margin: 10px 0;
		text-align: center;}}

/* Gallery Styles */
.gallery-section {
	padding: 0 0 40px 0;
}

.gallery-section:last-of-type {
	padding-bottom: 10px;
}

.gallery-thumb {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

.gallery-thumb:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.gallery-section .col-3 {
	margin-bottom: 30px;
}

/* Footer Styles */
.footer {
	background-color: #081d60;
	color: #fff;
	padding: 10px 0;
	min-height: 60px;
	margin-top: 80px;
}

.footer-logo {
	max-width: 100%;
	height: auto;
	margin-bottom: 20px;
}

.footer h4 {
	font-family: 'Playfair Display', serif;
	font-size: 20px;
	margin-bottom: 20px;
	color: #fff;
}

.footer p {
	color: rgba(255,255,255,0.8);
	margin-bottom: 10px;
	line-height: 1.6;
}

.footer a {
	display: block;
	color: rgba(255,255,255,0.8);
	text-decoration: none;
	margin-bottom: 8px;
	transition: color 0.3s ease;
}

.footer a:hover {
	color: #C5C5E4;
}

.footer-social {
	margin-top: 15px;
}

.footer-social a {
	display: inline-block;
	margin-right: 15px;
}

.footer-bottom {
	text-align: center;
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
	color: rgba(255,255,255,0.6);
	margin: 0;
}

@media only screen and (max-width: 768px) {
	.footer {
		padding: 15px 0;
		min-height: 70px;
		margin-top: 40px;
	}
	
	.footer .col-4 {
		margin-bottom: 15px;
	}
	
	.footer-logo {
		max-width: 150px;
	}
}
