/* Navbar styles */
nav {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #ffd700;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
    text-decoration: none;
    background: linear-gradient(83.21deg, #ffd700 0%, #b8860b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout styles */
html,
body {
    margin: 0;
    width: 100%;
    height: 100%;
}

#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(100px);
}

/* General styles */
body {
    font-family: Inter, Roboto, 'Helvetica Neue', 'Arial Nova', 'Nimbus Sans', Arial, sans-serif;
    line-height: 1.5;
    color: #e0e0e0;
    background-color: #1a1a1a;
}

main {
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

p {
    color: #c0c0c0;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.box {
    background: rgba(26, 26, 26, 0.95);
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.button {
    display: inline-block;
    padding: 12px 24px;
    color: #1a1a1a;
    background: linear-gradient(83.21deg, #ffd700 0%, #b8860b 100%);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Container styles */
#container {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero section styles */
#hero {
    text-align: center;
    padding: 4rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.gradient-text {
    background: linear-gradient(83.21deg, #ffd700 0%, #b8860b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #c0c0c0;
    margin-bottom: 2rem;
}

/* Content section styles */
.content-section {
    padding: 4rem 0;
}

.content-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
}

/* Box container and grid styles */
.box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.philosophy-box, .service-box, .value-item {
    padding: 2rem;
    background: rgba(26, 26, 26, 0.95);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.philosophy-box:hover, .service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
}

.philosophy-box h3, .service-box h3 {
    color: #e0e0e0;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

/* Values grid styles */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    padding: 1.5rem;
}

.value-item:hover {
    transform: translateY(-3px);
}

.value-item h4 {
    color: #e0e0e0;
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

/* Links styles */
#links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.outline-button {
    color: #ffd700;
    border: 2px solid #ffd700;
    padding: 10px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.outline-button:hover {
    background: rgba(255, 215, 0, 0.1);
}

/* Heading styles */
h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

/* Contact styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-card {
    padding: 2rem;
    background: rgba(26, 26, 26, 0.95);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
}

.contact-card h3 {
    color: #e0e0e0;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

.contact-detail {
    font-size: 1.1rem;
    color: #ffd700;
    margin-bottom: 1rem;
    font-weight: 500;
}

.description {
    color: #c0c0c0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-link {
    color: #ffd700;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 2px solid #ffd700;
    border-radius: 8px;
    transition: all 0.2s;
}

.social-link:hover {
    background: rgba(255, 215, 0, 0.1);
}

.hours-section {
    text-align: center;
    padding: 4rem 0;
}

.hours-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.hours-card {
    background: rgba(26, 26, 26, 0.95);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.hours-detail h4 {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.hours-detail p {
    color: #c0c0c0;
    line-height: 1.6;
}

/* Media queries */
@media screen and (max-width: 768px) {
    .box {
        padding: 1.5rem;
    }
    
    .button {
        width: 100%;
        text-align: center;
    }

    h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    #container {
        padding: 1rem;
    }

    .box-container {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: column;
    }

    .social-link {
        text-align: center;
    }
}
