* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background: #0b0b0b;
    color: white;
    line-height: 1.6;
}

/* Navigation */

nav {
    background: #111;
    padding: 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    transition: 0.3s;
}

nav a:hover {
    color: #d4af37;
}


/* Hero Section */

.hero {
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}


.hero h1 {
    font-size: 55px;
    color: #d4af37;
}


.hero p {
    font-size: 22px;
    margin-top: 15px;
}


/* Buttons */

.btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    background: #d4af37;
    color: black;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}


.btn:hover {
    background: white;
}



/* Sections */

section {
    padding: 70px 10%;
}


.title {
    text-align:center;
    font-size:40px;
    color:#d4af37;
    margin-bottom:40px;
}



/* Cards */

.cards {
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}


.card {
    background:#161616;
    padding:30px;
    width:300px;
    border-radius:15px;
    border:1px solid #333;
    transition:0.3s;
}


.card:hover {
    transform:translateY(-10px);
    border-color:#d4af37;
}


.card h3 {
    color:#d4af37;
    margin-bottom:15px;
}



/* Profile Image */

.profile {
    width:200px;
    height:200px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #d4af37;
    margin-bottom:30px;
}



/* Contact */

.contact-box {
    text-align:center;
    font-size:20px;
}


.contact-box a {
    color:#d4af37;
}


/* Footer */

footer {
    background:#000;
    padding:20px;
    text-align:center;
    color:#aaa;
}



/* Mobile */

@media(max-width:768px){

nav a {
    display:block;
    margin:10px;
}

.hero h1 {
    font-size:35px;
}

section {
    padding:40px 5%;
}

}
