/* Custom Font Declarations */
@font-face {
    font-family: 'Atteron';
    src: url('Atteron Personal Use Only.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Olivera';
    src: url('Olivera_Demo.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Josefin';
    src: url('josefin-sans.regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Josefin', 'Poppins', sans-serif;
    background: #fcfcfc;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Hero Section */
.hero-section {
    padding: 4rem 2rem;
    text-align: center;
    background: #fcfcfc;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(26, 26, 26, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(26, 26, 26, 0.02) 0%, transparent 50%);
    z-index: 1;
}

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

.logo-container {
    margin-bottom: 2rem;
}

.hero-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid rgba(26, 26, 26, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.hero-title {
    font-family: 'Atteron', 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #3a3a3a;
    font-weight: 400;
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1a1a1a, transparent);
    margin: 0 auto;
}

/* Section Titles */
.section-title {
    font-family: 'Atteron', 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #1a1a1a;
}

/* Story Section */
.story-section {
    padding: 5rem 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.story-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.story-container {
    max-width: 1000px;
    margin: 0 auto;
}

.story-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.greeting {
    display: inline-block;
    font-size: 1.1rem;
    color: #3a3a3a;
    background: rgba(26, 26, 26, 0.05);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.story-lead {
    font-size: 1.2rem;
    color: #2a2a2a;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.story-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(26, 26, 26, 0.2);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a1a1a, #3a3a3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.story-card:hover .card-icon {
    transform: scale(1.1);
}

.card-icon i {
    font-size: 1.8rem;
    color: white;
}

.story-card h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.story-card p {
    color: #3a3a3a;
    line-height: 1.7;
    font-weight: 400;
}

/* Collections Section */
.collections-section {
    padding: 5rem 2rem;
    background: rgba(250, 250, 250, 0.5);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.collections-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.collections-container {
    max-width: 1000px;
    margin: 0 auto;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.collection-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(26, 26, 26, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.collection-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.collection-icon {
    width: 60px;
    height: 60px;
    background: rgba(26, 26, 26, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.collection-icon i {
    font-size: 1.5rem;
    color: #1a1a1a;
}

.collection-item h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.collection-item p {
    color: #3a3a3a;
    font-size: 0.95rem;
}

/* Values Section */
.values-section {
    padding: 5rem 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.values-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.values-container {
    max-width: 1000px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
}

.value-icon {
    width: 50px;
    height: 50px;
    background: rgba(26, 26, 26, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon i {
    font-size: 1.2rem;
    color: #1a1a1a;
}

.value-item h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.value-item p {
    color: #3a3a3a;
    font-size: 0.9rem;
}

/* Quote Section */
.quote-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.03) 0%, rgba(26, 26, 26, 0.01) 100%);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.quote-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-content blockquote {
    font-size: 1.8rem;
    color: #1a1a1a;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: 'Playfair Display', serif;
}

.quote-content cite {
    font-size: 1rem;
    color: #3a3a3a;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.cta-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.cta-container h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-container p {
    font-size: 1.1rem;
    color: #3a3a3a;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
    min-width: 180px;
}

.btn-primary {
    background: linear-gradient(135deg, #1a1a1a, #3a3a3a);
    color: white;
    border-color: #1a1a1a;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 26, 26, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    color: #5a5a5a;
    font-size: 0.9rem;
    font-weight: 400;
    border-top: 1px solid rgba(26, 26, 26, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .story-section,
    .collections-section,
    .values-section,
    .quote-section,
    .cta-section {
        padding: 3rem 1.5rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-card {
        padding: 2rem;
    }
    
    .story-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        max-width: 100%;
        gap: 1.5rem;
    }
    
    .collection-item {
        padding: 2rem 1.5rem;
    }
    
    .collection-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
    
    .value-item h3 {
        font-size: 1.1rem;
    }
    
    .quote-content blockquote {
        font-size: 1.4rem;
        line-height: 1.4;
        padding: 0 1rem;
    }
    
    .cta-container h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .cta-container p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .story-section,
    .collections-section,
    .values-section,
    .quote-section,
    .cta-section {
        padding: 2.5rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .greeting {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .story-lead {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .story-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .story-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .story-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .collection-item {
        padding: 1.5rem;
    }
    
    .collection-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .collection-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-item {
        padding: 1.5rem;
        text-align: center;
    }
    
    .value-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .value-item p {
        font-size: 0.9rem;
    }
    
    .quote-content blockquote {
        font-size: 1.2rem;
        line-height: 1.4;
        padding: 0;
        margin-bottom: 1rem;
    }
    
    .quote-content cite {
        font-size: 0.9rem;
    }
    
    .cta-container {
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .cta-container h2 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .cta-container p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 250px;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .footer {
        padding: 2rem 1rem;
        font-size: 0.9rem;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
