/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #ff9a9e, #fad0c4, #ffdde1);
    color: #333;
    transition: background 0.3s, color 0.3s;
}

/* Dark Mode */
.dark-mode {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo span {
    color: #ff5733;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
}

/* Dark Mode Button */
#darkModeToggle {
    cursor: pointer;
    background: none;
    border: none;
    font-size: 20px;
}

/* Home Section */
.home {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding: 0 10%;
}

.content {
    flex: 1;
}

.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    width: 300px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.image-container img:hover {
    transform: scale(1.1);
}

/* Animated Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 10px;
    border-radius: 25px;
    text-decoration: none;
    color: #fff;
    background: #ff5733;
    transition: 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* Hover Effects */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

.btn:hover::before {
    transform: scaleX(1);
}

.btn:hover {
    background: #c4401e;
    transform: translateY(-3px);
    box-shadow: 0px 4px 15px rgba(255, 87, 51, 0.4);
}
