@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #232323;
    --secondary-color: #7A5C43;
    --accent-color: #ffffff;
    --text-color: #232323;
    --hover-color: #232323;
}

body {
    font-family: "Poppins", serif;
    background-color: beige;
}

/* loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.marble-loader {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Rotating Stones Circle */
.stones-circle {
    position: relative;
    width: 120px;
    height: 120px;
    animation: rotate 8s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Stone Styles */
.stone {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    animation: self-rotate 8s linear infinite;
    background: linear-gradient(145deg, #61370a, #845023);
    box-shadow: 
        inset 2px 2px 5px rgba(255, 255, 255, 0.2),
        inset -2px -2px 5px rgba(0, 0, 0, 0.2),
        5px 5px 10px rgba(0, 0, 0, 0.1);
}

/* Individual Stones */
.stone-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(145deg, #61370a, #724319);
}

.stone-2 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(145deg, #724319, #845023);
}

.stone-3 {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(145deg, #51270a, #61370a);
}

.stone-4 {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(145deg, #61370a, #956033);
}

/* Center Stone */
.center-stone {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(145deg, #61370a, #845023);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 
        inset 3px 3px 6px rgba(255, 255, 255, 0.2),
        inset -3px -3px 6px rgba(0, 0, 0, 0.2),
        8px 8px 16px rgba(0, 0, 0, 0.1);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Marble Texture Animation */
.marble-texture {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 45%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 55%,
        transparent 100%
    );
    animation: shine 3s linear infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Loading Text */
.loading-text {
    position: absolute;
    bottom: -30px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #61370a;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.loading-dots {
    display: flex;
    gap: 4px;
}

.loading-dots span {
    width: 4px;
    height: 4px;
    background: #61370a;
    border-radius: 50%;
    animation: dots 1.5s infinite;
}

.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dots {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(-5px); opacity: 1; }
}

/* Fade Out Animation */
.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-out;
}

/* menu */
.header {
    background:  var(--accent-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-color);
    text-decoration: none;
}
.logo img{
    width: 100%;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--hover-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(245, 245, 245, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s ease;
        gap: 1rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -5px);
    }
}
