/*
Theme Name: City Tower
Theme URI: https://example.com/
Author: City Tower
Author URI: https://example.com/
Description: Custom block theme for City Tower website.
Requires at least: 6.4
Tested up to: 6.9
Requires PHP: 7.4
Version: 0.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: city-tower
Tags: block-theme, full-site-editing
*/

@font-face{
	font-family: "Graphik";
	src: url("assets/fonts/graphik/graphik-thin.otf") format("opentype");
	font-weight: 100;
	font-style: normal;
	font-display: swap;
}
@font-face{
	font-family: "Graphik";
	src: url("assets/fonts/graphik/graphik-extralight.otf") format("opentype");
	font-weight: 200;
	font-style: normal;
	font-display: swap;
}
@font-face{
	font-family: "Graphik";
	src: url("assets/fonts/graphik/graphik-light.otf") format("opentype");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face{
	font-family: "Graphik";
	src: url("assets/fonts/graphik/graphik-regular.otf") format("opentype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face{
	font-family: "Graphik";
	src: url("assets/fonts/graphik/graphik-medium.otf") format("opentype");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face{
	font-family: "Graphik";
	src: url("assets/fonts/graphik/graphik-semibold.otf") format("opentype");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face{
	font-family: "Graphik";
	src: url("assets/fonts/graphik/graphik-bold.otf") format("opentype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face{
	font-family: "Graphik";
	src: url("assets/fonts/graphik/graphik-black.otf") format("opentype");
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}
@font-face{
	font-family: "Graphik";
	src: url("assets/fonts/graphik/graphik-super.otf") format("opentype");
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}
@font-face{
	font-family: "PP-Museum";
	src: url("assets/fonts/pp-museum/ppmuseum-regular.otf") format("opentype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face{
	font-family: "PP-Museum";
	src: url("assets/fonts/pp-museum/ppmuseum-light.otf") format("opentype");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face{
	font-family: "PP-Museum";
	src: url("assets/fonts/pp-museum/ppmuseum-ultrabold.otf") format("opentype");
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

:root {
	--ct-max-width: 1324px;
	--ct-font-primary: "Graphik";
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	margin:0;
	padding: 0;
	font-family: var(--ct-font-primary);
}

a {
	text-decoration: none;
	color: inherit;
}

.ct-container{
	max-width: var(--ct-max-width);
	padding-left: 24px;
	padding-right: 24px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.ct-site-header{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
}

.ct-site-header::before{
	content: '';
	position: absolute;
	top: 0;
	background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
	width: 100%;
	height: 134px;
	opacity: 0.7;
}

.ct-site-header__inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 31px;
	padding-bottom: 31px;
	position: relative;
	z-index: 1;
}

.ct-site-header__left{
	display: flex;
	align-items: center;
}

.ct-site-logo img{
	display: block;
	height: 71.44px;
	width: auto;
}

.ct-primary-nav{
	display: flex;
	gap: 40px;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: center;
}

.ct-primary-nav a{
	text-decoration: none;
	color: #fff;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
}

.ct-primary-nav a:hover{
	color: #C49D55;
}

.ct-site-header__right{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 40px;
}

.ct-header-link{
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	line-height: 22px;
	white-space: nowrap;
}

.ct-site-header__actions {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ct-button--header{
	background: #fff;
	color: #47211B;
	border-radius: 0;
	padding: 20px;
	min-width: 198px;
	min-height: 60px;
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ct-button--header:hover{
	background: #C49D55;
}

.ct-site-header.is-scrolled{
	background: #C49D55;
}

.ct-site-header.is-scrolled::before{
	opacity: 0;
}

.ct-site-header.is-scrolled .ct-primary-nav a,
.ct-site-header.is-scrolled .ct-header-link{
	color: #111;
}

.ct-site-header.is-scrolled .ct-primary-nav a:hover{
	color: #000;
}

.ct-site-header.is-scrolled .ct-button--header{
	background: #fff;
	color: #111;
	border: 1px solid rgba(0,0,0,0.18);
}

.ct-main{
	overflow: hidden;
}

.ct-hero{
	position: relative;
	height: 100vh;
}

.ct-hero__bg{
	position: absolute;
	inset: 0;
	overflow: hidden;
}
.ct-hero__bg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ct-hero__overlay{
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 45%, rgba(80,52,25,0.75) 100%);
}

.ct-hero__container{
	position: relative;
	z-index: 1;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ct-hero__content{
	z-index: 1;
	text-align: center;
}

body.admin-bar .ct-site-header{
	top: 32px;
}

.ct-hero__title{
	font-size: 85px;
	line-height: 82px;
	margin: 0 0 48px 0;
	text-transform: uppercase;
	color: #fff;
	font-family: "PP-Museum";
	font-weight: 300;
	width: 354px;
}

.ct-hero__title-line{
	display: block;
}
.ct-hero__title-line--left{
	text-align: left;
}
.ct-hero__title-line--center{
	text-align: center;
}
.ct-hero__title-line--right{
	text-align: right;
}

.ct-hero__subtitle{
	margin: 0 0 1.5rem 0;
	max-width: 52ch;
	opacity: 0.95;
}

.ct-button{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.1rem;
	border-radius: 2px;
	text-decoration: none;
	font-weight: 600;
}

.ct-hero__actions{
	display: inline-flex;
	gap: 1.4rem;
	justify-content: center;
	align-items: center;
}

.ct-button--outline{
	background: transparent;
	border: 1px solid rgba(255,255,255,0.6);
	color: rgba(255,255,255,0.9);
	padding: 1.05rem 1.7rem;
	min-width: 190px;
	font-weight: 400;
	font-size: 0.85rem;
	letter-spacing: 0.02em;
}

.ct-button--solid{
	background: #fff;
	border: 1px solid rgba(255,255,255,0.9);
	color: #111;
	padding: 1.05rem 1.7rem;
	min-width: 190px;
	font-weight: 400;
	font-size: 0.85rem;
	letter-spacing: 0.02em;
}

.ct-hero__bottom-note{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 29px;
	text-align: center;
	font-size: 14px;
	text-transform: uppercase;
	color: #fff;
}

.ct-button--primary{
	background: #c2a990;
	color: #111;
}

.ct-image-text__grid{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
	align-items: center;
}
.ct-image-text__media img{
	width: 100%;
	height: auto;
	display: block;
	border-radius: 16px;
}

.ct-cards__grid{
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.ct-card{
	border: 1px solid #eee;
	border-radius: 16px;
	padding: 1.25rem;
}

.ct-gallery__grid{
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem;
}
.ct-gallery__item{
	margin: 0;
}
.ct-gallery__item img{
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 14px;
	display: block;
}

.ct-site-footer{
	background: #4a2520;
	color: rgba(255,255,255,0.85);
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}

.ct-site-footer__inner{
	display: flex;
	flex-direction: column;
	gap: 1.6rem;
}

.ct-footer-nav{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 4.25rem;
	justify-content: center;
	align-items: center;
}

.ct-footer-nav a{
	color: rgba(255,255,255,0.85);
	text-decoration: none;
	font-size: 0.85rem;
	letter-spacing: 0.02em;
}

.ct-footer-nav a:hover{
	color: #fff;
}

.ct-site-footer__top{
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1rem;
}

.ct-footer-logo{
	height: 44px;
	width: auto;
	display: block;
}

.ct-site-footer__mid{
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 1rem;
	padding-top: 1.4rem;
	padding-bottom: 1.4rem;
}

.ct-site-footer__contact{
	font-size: 0.85rem;
	opacity: 0.95;
}

.ct-site-footer__contact a{
	color: rgba(255,255,255,0.85);
	text-decoration: none;
}

.ct-site-footer__social{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1.1rem;
}

.ct-footer-social__heading{
	font-size: 0.8rem;
	letter-spacing: 0.02em;
	opacity: 0.95;
}

.ct-footer-social__icons{
	display: inline-flex;
	gap: 1rem;
	align-items: center;
}

.ct-social-link{
	color: rgba(255,255,255,0.85);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.ct-social-link:hover{
	color: #fff;
}

.ct-social-icon{
	width: 18px;
	height: 18px;
	display: block;
	object-fit: contain;
	filter: brightness(0) invert(1);
	opacity: 0.9;
}

.ct-footer-divider{
	border: 0;
	border-top: 1px solid rgba(255,255,255,0.18);
	margin: 0;
}

.ct-site-footer__bottom{
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 1rem;
	padding-top: 1.1rem;
}

.ct-site-footer__copyright{
	font-size: 0.8rem;
	opacity: 0.9;
}

.ct-footer-legal-nav{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 1.2rem;
}

.ct-footer-legal-nav a{
	color: rgba(255,255,255,0.85);
	text-decoration: none;
	font-size: 0.8rem;
	opacity: 0.9;
}

.ct-footer-legal-nav a:hover{
	color: #fff;
}

@media (max-width: 900px){
	.ct-image-text__grid{
		grid-template-columns: 1fr;
	}
	.ct-cards__grid{
		grid-template-columns: 1fr;
	}
	.ct-gallery__grid{
		grid-template-columns: 1fr;
	}
	.ct-gallery__item img{
		height: 240px;
	}

	.ct-site-footer__top{
		grid-template-columns: 1fr;
		justify-items: center;
	}
	.ct-footer-nav{
		gap: 1.5rem;
		flex-wrap: wrap;
	}
	.ct-site-footer__mid{
		grid-template-columns: 1fr;
		text-align: center;
	}
	.ct-site-footer__social{
		justify-content: center;
	}
	.ct-site-footer__bottom{
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}
	.ct-footer-legal-nav{
		flex-wrap: wrap;
		justify-content: center;
	}
}

