/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Home Page Styles */
.home-page {
    min-height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.home-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    min-height: 100vh;
}

/* Logo Styles */
.logo-container {
    margin-bottom: 30px;
    margin-top: 20px;
}

.logo-circle {
    width: 120px;
    height: 120px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo img {
    border-radius: 50%;
    width: 110px;
    height: 110px;
}

/* Welcome Text */
.welcome-text {
    color: #eed49b;
    font-size: 35px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.1;
    font-family: 'Raleway', sans-serif;
}

/* Icon Buttons */
.icon-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.icon-btn {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid #eed49b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.icon-btn:hover {
    background: transparent;
    border: 2px solid #fff;
}

.icon-btn:hover svg {
    stroke: #fff;
}

/* Menu Buttons */
.menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 280px;
    margin-bottom: 30px;
}

.menu-btn {
    background: #eed39a;
    color: #333;
    border: none;
    padding: 18px 30px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.menu-btn:active {
    transform: translateY(0);
}

.menu-btn svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

/* Footer */
.footer-text {
    color: #eed49b;
    font-size: 12px;
    margin-top: auto;
    padding-bottom: 20px;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.footer-text a {
    color: #eed49b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .welcome-text {
        font-size: 28px;
    }

    .menu-buttons {
        max-width: 320px;
    }

    .menu-btn {
        padding: 16px 25px;
        font-size: 14px;
    }

    .logo-circle {
        width: 100px;
        height: 100px;
    }

    .logo img {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .welcome-text {
        font-size: 24px;
    }

    .menu-btn {
        font-size: 16px;
        padding: 14px 22px;
    }

    .footer-text {
        font-size: 11px;
    }
}