/* ===============================
   4U Fashions Main Theme CSS
   Yellow + Dark Grey Luxury Theme
================================= */

:root {

--yellow:#ffd400;
--dark:#111111;
--dark2:#1a1a1a;
--dark3:#242424;
--white:#ffffff;
--radius:16px;

}

/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

/* BODY */

body{

font-family:
"Segoe UI",
Arial,
sans-serif;

background:var(--dark);

color:var(--white);

line-height:1.6;

}

/* CONTAINER */

.container{

width:90%;
max-width:1200px;

margin:auto;

}

/* ===============================
   HEADER
================================= */

header{

background:var(--dark2);

position:sticky;

top:0;

z-index:999;

border-bottom:
1px solid rgba(255,212,0,0.2);

}

nav{

display:flex;

justify-content:space-between;

align-items:center;

padding:15px 0;

}

/* LOGO */

.logo{

font-size:22px;

font-weight:800;

color:var(--yellow);

}

/* MENU */

.menu{

display:flex;

align-items:center;

gap:18px;

}

.menu a{

color:white;

text-decoration:none;

font-weight:600;

font-size:15px;

transition:0.3s;

}

.menu a:hover{

color:var(--yellow);

}

/* BUTTON */

.btn{

background:var(--yellow);

color:black;

padding:12px 22px;

border-radius:30px;

font-weight:700;

text-decoration:none;

transition:0.3s;

}

.btn:hover{

background:#ffe600;

transform:translateY(-2px);

}

/* ===============================
   HERO SECTION
================================= */

.hero-banner{

background:
linear-gradient(
90deg,
#111,
#1a1a1a
);

padding:70px 0;

position:relative;

overflow:hidden;

}

/* Yellow Glow */

.hero-banner::before{

content:"";

position:absolute;

top:-150px;
left:-150px;

width:420px;
height:420px;

background:var(--yellow);

border-radius:50%;

opacity:0.25;

filter:blur(80px);

}

/* HERO FLEX */

.hero-flex{

display:flex;

align-items:center;

justify-content:space-between;

gap:40px;

flex-wrap:wrap;

}

/* HERO TEXT */

.hero-text{

flex:1;

}

.hero-text h1{

font-size:48px;

font-weight:800;

margin-bottom:20px;

}

.hero-text span{

color:var(--yellow);

}

.hero-text p{

font-size:18px;

margin-bottom:25px;

opacity:0.9;

}

/* HERO IMAGE */

.hero-image{

flex:1;

text-align:right;

}

.hero-image img{

max-width:100%;

border-radius:20px;

box-shadow:
0 0 40px rgba(255,212,0,0.25);

}

/* ===============================
   SECTION
================================= */

.section{

padding:80px 0;

}

/* TITLES */

h2{

color:var(--yellow);

margin-bottom:30px;

font-size:28px;

}

/* ===============================
   CARDS
================================= */

.cards{

display:grid;

grid-template-columns:
repeat(auto-fit,
minmax(250px,1fr));

gap:20px;

}

.card{

background:var(--dark3);

border-radius:var(--radius);

padding:22px;

border:
1px solid rgba(255,212,0,0.15);

transition:0.3s;

}

.card:hover{

border-color:var(--yellow);

transform:translateY(-6px);

box-shadow:
0 10px 25px rgba(255,212,0,0.2);

}

.card h3{

margin-bottom:10px;

color:var(--yellow);

}

.card p{

font-size:14px;

opacity:0.9;

}

/* ===============================
   GALLERY
================================= */

.gallery{

display:grid;

grid-template-columns:
repeat(auto-fit,
minmax(220px,1fr));

gap:15px;

}

.gallery img{

width:100%;

height:260px;

object-fit:cover;

border-radius:16px;

transition:0.3s;

}

.gallery img:hover{

transform:scale(1.05);

}

/* ===============================
   CONTACT SECTION
================================= */

.contact-box{

background:var(--dark3);

padding:25px;

border-radius:16px;

border:
1px solid rgba(255,212,0,0.2);

}

/* ===============================
   MAP
================================= */

iframe{

border-radius:16px;

}

/* ===============================
   FOOTER
================================= */

footer{

background:#000;

color:#aaa;

text-align:center;

padding:30px;

margin-top:40px;

border-top:
1px solid rgba(255,212,0,0.2);

}

/* ===============================
   MOBILE RESPONSIVE
================================= */

@media(max-width:768px){

.hero-text h1{

font-size:34px;

}

.hero-flex{

flex-direction:column;

text-align:center;

}

.hero-image{

text-align:center;

}

nav{

flex-wrap:wrap;

}

.menu{

flex-wrap:wrap;

justify-content:center;

margin-top:10px;

}

}
/* FIX BUTTON OVERLAP ISSUE */

.card p{
margin-bottom:15px;
}

/* Address buttons fix */

.card .btn{

display:inline-block;

margin-top:12px;

}

/* Prevent text hiding */

.card{

min-height:140px;

}

/* Improve spacing */

.contact-box p{

margin-bottom:10px;

}
/* HEADER RIGHT SIDE */

.header-right{

display:flex;

align-items:center;

gap:15px;

}

/* SOCIAL ICONS */

.social-icons{

display:flex;

gap:10px;

}

/* ICON STYLE */

/* SOCIAL ICONS */

.social-icons{

display:flex;

gap:12px;

}

/* ICON STYLE */

.social-icons a{

width:38px;
height:38px;

display:flex;

align-items:center;
justify-content:center;

background:#1c1c1c;

border-radius:10px;

color:var(--yellow);

font-size:16px;

border:1px solid rgba(255,212,0,0.2);

transition:0.3s;

}

/* HOVER EFFECT */

.social-icons a:hover{

background:var(--yellow);

color:black;

transform:translateY(-2px);

box-shadow:
0 6px 15px rgba(255,212,0,0.4);

}
/* LOGO IMAGE */

.logo{
display:flex;
align-items:center;
}

.logo-img{

height:48px;

width:auto;

display:block;

object-fit:contain;

}

/* Responsive logo */

@media(max-width:768px){

.logo-img{

height:40px;

}

}