:root {
    --deep-indigo: #1a1a2e;
    --midnight-blue: #16213e;
    --earthy-brown: #4a3933;
    --parchment: #f0e6d7;
    --accent-gold: #c9a959;
    --text-light: rgba(240, 230, 215, 0.9);
    --text-lighter: rgba(240, 230, 215, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--deep-indigo);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.8) 100%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%234a3933' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.container {
    max-width: 1200px;
    margin: auto auto;
    padding: 0 1.5rem;
}

/* Header Styles */
header {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
}

header.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--accent-gold);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.logo-img {
    height: 3rem;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: inline-block;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo a:hover {
    color: inherit;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: var(--text-lighter);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--accent-gold);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--parchment);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--text-lighter);
    max-width: 600px;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.6s;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.3;
}

/* Section Styles */
.section {
    padding: 7rem 0;
    position: relative;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--accent-gold);
    opacity: 0;
    transform: translateY(20px);
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--text-lighter);
    max-width: 700px;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
}

/* Philosophy Section */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.philosophy-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(201, 169, 89, 0.1);
    padding: 2rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(201, 169, 89, 0.3);
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.philosophy-card:hover::before {
    opacity: 1;
}

.card-symbol {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.philosophy-card:hover .card-symbol {
    opacity: 1;
    transform: rotate(360deg);
}

.philosophy-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--parchment);
}

.philosophy-card p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: var(--text-lighter);
}

/* Creations Section */
.creations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.creation-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(201, 169, 89, 0.1);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.creation-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    background: linear-gradient(45deg, var(--midnight-blue), var(--deep-indigo));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.creation-mandala {
    width: 80%;
    height: 80%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 300 300'%3E%3Ccircle cx='150' cy='150' r='100' fill='none' stroke='%23c9a959' stroke-width='1' stroke-opacity='0.2'/%3E%3Ccircle cx='150' cy='150' r='80' fill='none' stroke='%23c9a959' stroke-width='1' stroke-opacity='0.2'/%3E%3Ccircle cx='150' cy='150' r='60' fill='none' stroke='%23c9a959' stroke-width='1' stroke-opacity='0.2'/%3E%3Ccircle cx='150' cy='150' r='40' fill='none' stroke='%23c9a959' stroke-width='1' stroke-opacity='0.2'/%3E%3Cpath d='M150,50 L150,250 M50,150 L250,150' stroke='%23c9a959' stroke-width='1' stroke-opacity='0.2'/%3E%3Cpath d='M86,86 L214,214 M214,86 L86,214' stroke='%23c9a959' stroke-width='1' stroke-opacity='0.2'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
    transition: all 0.5s ease;
}

.creation-card:hover .creation-mandala {
    opacity: 0.6;
    transform: rotate(45deg) scale(1.2);
}

.creation-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.9), transparent);
    transform: translateY(55%);
    transition: transform 0.5s ease;
}

.creation-card:hover .creation-overlay {
    transform: translateY(0);
}

.creation-card:hover .creation-image {
    transform: scale(1.05);
}

.creation-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--parchment);
}

.creation-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--text-lighter);
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    border: 1px solid var(--accent-gold);
    border-radius: 4px;
    color: var(--accent-gold);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background: var(--accent-gold);
    color: var(--deep-indigo);
}

/* Policy Pages Styles */
.policy-section {
    padding: 80px 0;
    min-height: calc(100vh - 300px);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.policy-last-updated {
    color: #888;
    font-size: 0.9em;
    margin-bottom: 30px;
    text-align: right;
}

.policy-text {
    font-size: 1.1em;
    line-height: 1.6;
}

.policy-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8em;
    margin: 40px 0 20px;
    color: var(--accent-color);
}

.policy-text p {
    margin-bottom: 20px;
}

.policy-text ul, 
.policy-text ol {
    margin: 20px 0;
    padding-left: 25px;
}

.policy-text li {
    margin-bottom: 10px;
}

.policy-text a {
    color: var(--accent-color);     
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.policy-text a:hover {
    border-bottom-color: var(--accent-color);
}

@media (max-width: 768px) {
    .policy-section {
        padding: 60px 0;
    }

    .policy-content {
        padding: 15px;
    }

    .policy-text {
        font-size: 1em;
    }

    .policy-text h2 {
        font-size: 1.5em;
        margin: 30px 0 15px;
    }
} 

/* Footer */
footer {
    padding: 3rem 0;
    background: rgba(22, 33, 62, 0.5);
    border-top: 1px solid rgba(201, 169, 89, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-img {
    height: 2rem;
    width: auto;
    object-fit: contain;
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
}

.footer-link {
    color: var(--text-lighter);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-gold);
}

.footer-copyright {
    margin-top: 2rem;
    text-align: center;
    color: var(--text-lighter);
    font-size: 0.9rem;
}

.footer-email {
    margin-top: 0.8rem;
    font-size: 0.95rem;
}

.footer-email a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-email a:hover {
    opacity: 0.8;
}

.footer-email a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-email a:hover::after {
    width: 100%;
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .philosophy-grid, 
    .creations-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Form Messages */
.form-message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    color: #c3e6cb;
}

.form-message.error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #f8d7da;
}

.form-group.has-error .form-input,
.form-group.has-error .form-textarea {
    border-color: rgba(220, 53, 69, 0.5);
}

.form-group.has-error .form-label {
    color: #f8d7da;
}

/* Spinner for button loading state */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--accent-gold);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to {transform: rotate(360deg);}
} 