/* GLOBAL */
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: 'Helvetica Neue', Arial, sans-serif;
color: #ffffff;
background-color: #000000;
}
/* GOLD GRADIENT */
:root {
--gold-gradient: linear-gradient(135deg, #d4af37, #f7e27c, #b8860b);
}
/* STICKY NAVIGATION */
header {
position: sticky;
top: 0;
z-index: 1000;
background: #000000cc;
backdrop-filter: blur(10px);
border-bottom: 2px solid #d4af37;
padding: 10px 0;
}
nav {
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 20px;
}
nav a {
color: #d4af37;
margin: 0 10px;
text-decoration: none;
font-weight: bold;
font-size: 1rem;
}
nav a:hover {
color: #ffffff;
}
/* LOGO */
.logo {
display: flex;
align-items: center;
gap: 10px;
}
.logo img {
height: 48px;
width: auto;
}
.logo-text {
font-weight: 700;
letter-spacing: 0.08em;
font-size: 0.8rem;
text-transform: uppercase;
}
/* HERO + HOMEPAGE ANIMATION */
.hero {
padding: 140px 20px 120px;
text-align: center;
background: radial-gradient(circle at top, #111111 0%, #000000 55%, #000000
100%);
border-bottom: 3px solid #d4af37;
overflow: hidden;
position: relative;
}
.hero h1 {
font-size: 2.6rem;
margin-bottom: 10px;
}
.hero p {
font-size: 1.1rem;
max-width: 600px;
margin: 0 auto;
}
/* subtle moving light sweep */
.hero::before {
content: "";
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(247, 226, 124, 0.12) 0%,
transparent 60%);
animation: heroGlow 12s infinite linear;
}
@keyframes heroGlow {
0% { transform: translate(-20%, -20%); }
50% { transform: translate(20%, 20%); }
100% { transform: translate(-20%, -20%); }
}
.cta-btn {
display: inline-block;
margin-top: 25px;
padding: 14px 28px;
background: var(--gold-gradient);
color: #000000;
text-decoration: none;
font-weight: bold;
border-radius: 4px;
transition: 0.3s;
}
.cta-btn:hover {
opacity: 0.85;
}
/* SECTIONS */
section {
padding: 70px 20px;
max-width: 1200px;
margin: auto;
}
h1, h2, h3 {
color: #d4af37;
}
/* ANIMATED GOLD DIVIDER */
.divider {
width: 100%;
height: 4px;
margin: 60px auto;
background: linear-gradient(90deg, #d4af37, #f7e27c, #b8860b, #d4af37);
background-size: 300% 100%;
animation: goldFlow 6s infinite linear;
border-radius: 10px;
box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}
@keyframes goldFlow {
0% { background-position: 0% 0%; }
100% { background-position: 300% 0%; }
}
/* ANIMATED GOLD BORDER */
@keyframes goldGlow {
0% {
border-color: #d4af37;
box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}
50% {
border-color: #f7e27c;
box-shadow: 0 0 20px rgba(247, 226, 124, 0.5);
}
100% {
border-color: #d4af37;
box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}
}
.animated-gold-border {
border: 2px solid #d4af37;
animation: goldGlow 4s infinite ease-in-out;
}
/* CARD LAYOUT */
.card {
padding: 30px;
background: rgba(212, 175, 55, 0.05);
border-radius: 8px;
margin-bottom: 20px;
}
.service-grid,
.portfolio-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-bottom: 40px;
}
/* GALLERY */
.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-top: 40px;
}
.gallery img {
width: 100%;
height: auto;
border-radius: 8px;
border: 2px solid #d4af37;
display: block;
}
/* FOOTER */
footer {
text-align: center;
padding: 40px 20px;
border-top: 2px solid #d4af37;
background: #000000;
color: #888888;
}
/* RESPONSIVE */
@media (max-width: 768px) {
nav {
flex-direction: column;
gap: 15px;
}
nav a {
margin: 5px 0;
}
.hero h1 {
font-size: 2rem;
}
.hero p {
font-size: 0.95rem;
}
section {
padding: 40px 15px;
}
.service-grid,
.portfolio-grid {
grid-template-columns: 1fr;
}
}
