* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E6E6E6;
    background: linear-gradient(135deg, #252121 0%, #1a1717 50%, #2c2626 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

footer {
    background: rgba(37, 33, 33, 0.9);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid #B1851F;
}

footer h3 {
    color: #B1851F;
    margin-bottom: 2rem;
    font-size: 2rem;
}

img {
    width: 100vw; /* 100% of viewport width */
    height: auto;
    object-fit: cover; /* Maintains aspect ratio while filling width */
}

.Images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Adds space between images */
    padding: 2rem 0;
}


@media screen and (max-width: 768px){
 img {
    max-width: 768px;
    height:auto
 }   
}










/* Fixed Links Section */
.page-links {
    position: fixed;
    top: 100px;
    right: 20px;
    background: rgba(37, 33, 33, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid #B1851F;
    border-radius: 10px;
    padding: 1rem;
    z-index: 999;
    min-width: 180px;
}

.page-links ul {
    list-style: none;
}

.page-links a {
    display: block;
    margin: 10px 0;
    padding: 12px 16px;
    color: #E6E6E6;
    background: rgba(177, 133, 31, 0.1);
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.page-links a:hover {
    background: rgba(177, 133, 31, 0.3);
    border-color: #B1851F;
    color: #B1851F;
    transform: translateX(5px);
}

.page-links a.current {
    background: rgba(177, 133, 31, 0.4);
    border-color: #B1851F;
    color: #B1851F;
}



header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(37, 33, 33, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #B1851F;
}

.header-spacer {
    height: 80px; /* Match your header height */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #B1851F;
    text-shadow: 0 0 10px #B1851F;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #E6E6E6;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #B1851F;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #B1851F;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(37, 33, 33, 0.7), rgba(37, 33, 33, 0.7)), 
                url('Images/backdound.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: #B1851F;
    text-shadow: 0 0 20px #B1851F;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px #B1851F; }
    to { text-shadow: 0 0 30px #B1851F, 0 0 40px #B1851F; }
}

.hero p {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #E6E6E6;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #B1851F, #d4ab4b);
    color: #252121;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(177, 133, 31, 0.3);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: #E6E6E6;
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 50%;
    background: rgba(177, 133, 31, 0.1);
}

.social-links a:hover {
    color: #B1851F;
    background: rgba(177, 133, 31, 0.2);
    transform: translateY(-3px);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #B1851F, #d4ab4b);
    color: #252121;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(177, 133, 31, 0.3);
}