/* 
Haüs of Knefertiti
Luxury Design Foundation
Version 0.1
*/


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



body {

    background:#0B0B0B;
    color:#FFFFFF;
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.6;

}



a {

    color:white;
    text-decoration:none;

}



.header {

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:25px 8%;

    border-bottom:1px solid rgba(201,162,39,.3);

}



.logo {

    font-size:1.5rem;
    font-weight:bold;
    color:#C9A227;

}



.navigation {

    display:flex;
    gap:25px;

}



.navigation a:hover {

    color:#C9A227;

}




.hero {

    min-height:80vh;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:40px;

}



.hero h1 {

    font-size:clamp(3rem,7vw,5rem);

    color:#FFFFFF;

    margin-bottom:20px;

}



.hero p {

    font-size:1.3rem;

    max-width:600px;

    margin:auto;

}



.gold-button {

    display:inline-block;

    margin-top:30px;

    padding:15px 35px;

    background:#C9A227;

    color:#000;

    font-weight:bold;

    border-radius:5px;

}



.gold-button:hover {

    opacity:.8;

}





.collections {

    padding:80px 8%;

    text-align:center;

}



.collections h2 {

    color:#C9A227;

    margin-bottom:40px;

}



.collection-grid {

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}




.collection-card {

    padding:40px 20px;

    border:1px solid rgba(201,162,39,.4);

    background:#111;

}



.collection-card h3 {

    color:#C9A227;

    margin-bottom:15px;

}




.welcome {

    padding:80px 10%;

    text-align:center;

}



.footer {

    text-align:center;

    padding:40px;

    border-top:1px solid rgba(201,162,39,.3);

}





@media(max-width:900px){


.menu-toggle {

display:block;

cursor:pointer;

}



.navigation {

display:none;

position:absolute;

top:85px;

right:20px;

background:#111;

padding:30px;

border:1px solid rgba(201,162,39,.4);

flex-direction:column;

z-index:1000;

}



.navigation.active {

display:flex;

}



}


.collection-grid {

    grid-template-columns:1fr;

}


.header {

    justify-content:center;

}


}
/* =====================================
Luxury Interior Updates
Haüs of Knefertiti v0.1 Part 2
===================================== */



body {

background:
linear-gradient(
180deg,
#0B0B0B 0%,
#111111 50%,
#050505 100%
);

}



.logo {

display:flex;

flex-direction:column;

}



.brand-name {

font-family:Georgia, serif;

font-size:1.8rem;

letter-spacing:1px;

}



.tagline {

font-size:.75rem;

color:#C9A227;

letter-spacing:3px;

text-transform:uppercase;

}





.hero {

background:

radial-gradient(
circle at center,
rgba(201,162,39,.15),
transparent 45%
);

}





.menu-toggle {

display:none;

background:none;

border:none;

color:white;

font-size:2rem;

}





.newsletter {

padding:80px 10%;

text-align:center;

background:#111;

}



.newsletter h2 {

color:#C9A227;

font-family:Georgia, serif;

font-size:2.5rem;

}



.newsletter form {

margin-top:30px;

display:flex;

justify-content:center;

gap:10px;

}



.newsletter input {

padding:15px;

width:300px;

border:none;

}



.newsletter button {

background:#C9A227;

border:none;

padding:15px 25px;

font-weight:bold;

}





.instagram {

padding:80px 10%;

text-align:center;

}



.instagram h2 {

font-family:Georgia, serif;

color:#C9A227;

}



.instagram-grid {

display:grid;

grid-template-columns:repeat(4,1fr);

gap:20px;

margin-top:40px;

}



.instagram-grid div {

height:250px;

background:#1a1a1a;

border:1px solid rgba(201,162,39,.3);

display:flex;

align-items:center;

justify-content:center;

color:#C9A227;

}





@media(max-width:900px){


.menu-toggle {

display:block;

}



.navigation {

display:none;

position:absolute;

top:90px;

right:20px;

background:#111;

padding:25px;

flex-direction:column;

}


.instagram-grid {

grid-template-columns:1fr 1fr;

}


.newsletter form {

flex-direction:column;

align-items:center;

}


}
/* =====================================
Signature Entrance
Haüs of Knefertiti v0.1 Part 3
===================================== */



.hero {

min-height:90vh;

background:

linear-gradient(
rgba(0,0,0,.55),
rgba(0,0,0,.85)
),

url("../images/hero/hero.jpg");

background-size:cover;

background-position:center;

}



.hero-overlay {

width:100%;

}



.eyebrow {

letter-spacing:5px;

font-size:.8rem;

color:#C9A227;

margin-bottom:20px;

}



.hero-content {

max-width:800px;

}



.featured {

padding:90px 8%;

text-align:center;

}



.featured h2 {

font-family:Georgia,serif;

font-size:3rem;

color:#C9A227;

}



.featured-grid {

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:50px;

}



.featured-card {

background:#111;

padding:50px 25px;

border:

1px solid rgba(201,162,39,.35);

transition:.3s;

}



.featured-card:hover {

transform:translateY(-10px);

}



.featured-card h3 {

color:#C9A227;

font-family:Georgia,serif;

}



.social-links {

display:flex;

justify-content:center;

gap:25px;

margin:25px;

}



.footer h3 {

font-family:Georgia,serif;

color:#C9A227;

}



@media(max-width:900px){


.featured-grid {

grid-template-columns:1fr;

}


}
/* =====================================
Luxury Motion Effects
Haüs of Knefertiti v0.1 Part 4
===================================== */



.hero-content {

animation: fadeEntrance 1.5s ease forwards;

}



.collection-card,
.featured-card {

transition:
transform .4s ease,
border-color .4s ease;

}



.collection-card:hover,
.featured-card:hover {

transform:translateY(-8px);

border-color:#C9A227;

}



.gold-button {

transition:
background .3s ease,
transform .3s ease;

}



.gold-button:hover {

transform:scale(1.05);

background:#FFFFFF;

}



@keyframes fadeEntrance {


from {

opacity:0;

transform:translateY(30px);

}


to {

opacity:1;

transform:translateY(0);

}


}
/* =====================================
Haüs Collection Room
v0.2 Part 3
===================================== */


.collection-hero {

padding:100px 10%;

text-align:center;

}



.collection-hero h1 {

font-family:Georgia, serif;

font-size:3.5rem;

color:#C9A227;

}



.filters {

display:flex;

justify-content:center;

gap:15px;

flex-wrap:wrap;

padding:40px;

}



.filters button {

background:#111;

color:white;

border:1px solid #C9A227;

padding:12px 25px;

cursor:pointer;

}



.filters button:hover {

background:#C9A227;

color:#000;

}



.product-grid {

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

padding:50px 8%;

}



.product-card {

background:#111;

border:1px solid rgba(201,162,39,.3);

overflow:hidden;

}



.product-image {

height:300px;

background:#181818;

}



.product-image img {

width:100%;

height:100%;

object-fit:cover;

}



.product-info {

padding:25px;

}



.product-info h3 {

font-family:Georgia,serif;

color:#C9A227;

}



.collection-name {

text-transform:uppercase;

letter-spacing:2px;

font-size:.8rem;

}



.price {

font-size:1.4rem;

font-weight:bold;

}



.badge {

display:inline-block;

background:#C9A227;

color:#000;

padding:5px 12px;

font-size:.75rem;

font-weight:bold;

}



.fly-button {

margin-top:20px;

width:100%;

padding:15px;

background:#C9A227;

border:none;

font-weight:bold;

cursor:pointer;

}



@media(max-width:900px){

.product-grid {

grid-template-columns:1fr;

}

}
/* =====================================
Product Image Protection
Haüs of Knefertiti v0.2 Part 4
===================================== */


.product-image {

overflow:hidden;

background:#111;

}



.product-image img {

transition:transform .5s ease;

}



.product-card:hover .product-image img {

transform:scale(1.05);

}
/* =====================================
Fly Bag Luxury Navigation
v0.3 Part 2
===================================== */


.fly-bag-link {

color:#C9A227;

font-weight:bold;

}



#fly-count {

display:inline-flex;

justify-content:center;

align-items:center;

background:#C9A227;

color:#000;

width:22px;

height:22px;

border-radius:50%;

font-size:.75rem;

margin-left:5px;

}
/* =====================================
Confirmation Pages
Haüs of Knefertiti v0.4
===================================== */


.confirmation-page {

min-height:70vh;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-align:center;

padding:40px;

}



.confirmation-page h1 {

font-family:Georgia, serif;

color:#C9A227;

font-size:3rem;

}
