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

body {
    font-family: 'Lora', serif;
    background: linear-gradient(to bottom, #2f1b0c 0%, #803d26 40%, #ff9248 100%);
    color: #fef3e0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: rgba(24, 13, 6, 0.95);
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #ff9248;
}

.navbar .logo {
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6em;
    color: #ffd8b0;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-links {
    float: right;
    list-style: none;
}

.nav-links li {
    display: inline-block;
    margin-left: 25px;
}

.nav-links a {
    color: #ffd8b0;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffb36b;
}

/* Hero */
.hero {
    min-height: 100vh;
    background: linear-gradient(to bottom right, #ff7a36, #3b1d12);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    color: #fff4e1;
}

.hero-content {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px;
    border: 1px solid #a54b2a;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3em;
    margin-bottom: 15px;
    color: #fff1d0;
}

h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #ffd29a;
}

p {
    font-size: 1.1em;
    color: #ffe9cc;
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    background: #ff6a2f;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #ff4500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Sections */
.about,
.social {
    padding: 60px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    margin: 60px auto;
    max-width: 800px;
    border: 1px solid #ff9248;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.social-icon {
    color: #ffbe91;
    text-decoration: none;
    font-size: 1em;
    padding: 10px 16px;
    border: 1px solid #ffbe91;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #ffbe91;
    color: #3b1d12;
}



