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

/* Enable smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f9f9f9;
    color: #222222;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Snowfall Animation */
.snowfall {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.snowflake {
    position: absolute;
    color: #cf1d1d;
    opacity: 0.5;
    animation: fall linear infinite;
    font-size: 1.3rem;
}

@keyframes fall {
    0% { transform: translateY(-100vh) rotate(0deg); }
    100% { transform: translateY(100vh) rotate(360deg); }
}

/* Header */
/*header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background-color: #ffffff;
    position: relative;
    z-index: 10;
}*/

/* Enhanced Sticky Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(249, 249, 249, 0.7);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Optional: Header shadow on scroll */
header.scrolled {
    background-color: rgba(249, 249, 249, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 5%;
}

.logo {
    flex-shrink: 0; /* Prevent logo from shrinking */
}

.logo img {
    width: 120px; /* Fixed width for better control */
    height: auto; /* Maintain aspect ratio */
    transition: width 0.3s ease;
}

/* Desktop Navigation */
.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: #757575;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #222222;
}

/* Hamburger Menu - Hidden on Desktop */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #757575;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    header {
        padding: 0.8rem 5%;
    }
    
    .logo img {
        width: 100px; /* Slightly smaller but still recognizable */
    }
    
    /* Hide regular navigation links */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(249, 249, 249, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    /* Show hamburger menu */
    .hamburger {
        display: flex;
    }
    
    /* Hamburger animation when active */
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .logo img {
        width: 80px; /* Even smaller for very small screens */
    }
    
    header {
        padding: 0.6rem 5%;
    }
}
/* Promotional Message */
.promo-message {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    text-align: center;
    padding: 0 2rem;
}

.promo-button {
    color: #101010;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.7rem 1.5rem;
    border: 1.5px solid #101010;
    border-radius: 20px;
    background-color: transparent;
    text-decoration: none;
    font-weight: 300;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Gentle pulse animation for attention */
@keyframes pulse-gentle {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(16, 16, 16, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 rgba(16, 16, 16, 0.7);
    }
}

/* Hide promo message on mobile and tablet */
@media (max-width: 1024px) {
    .promo-message {
        display: none;
    }
}

/* Optional: Adjust header layout for very large screens */
@media (min-width: 1400px) {
    .promo-message span {
        font-size: 0.9rem;
        padding: 0.6rem 1.8rem;
    }
}
/* Header Section Ends Here */

/* Mobile Promo Banner */
.mobile-promo-banner {
    display: none;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    text-align: center;
    padding: 2ren 2rem;
    margin-top: 0.5rem;
}

.mobile-promo-button {
    color: #000000;
    letter-spacing: 0.3px;
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
    border: 1.5px solid #101010;
    border-radius: 20px;
    background-color: transparent;
    text-decoration: none;
    font-weight: 300;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Show only on mobile and tablet */
@media (max-width: 1024px) {
    .mobile-promo-banner {
        display: block;
    }
}

/* Optional: Adjust for very small screens */
@media (max-width: 480px) {
    .mobile-promo-banner {
        padding: 0.7rem 1rem;
    }
    
    .mobile-promo-banner span {
        font-size: 0.85rem;
    }
}
/* Mobile Promo Section Ends Here*/

/* Hero Section */
/* Hero Section - Two Column Layout */
.hero {
    padding: 4rem 5%;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
}

/* Left Column - Text Content */
.hero-content {
    color: #101010;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
    color: #101010;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    margin-bottom: 2.5rem;
    font-weight: 400;
    color: #101010;
    opacity: 0.9;
}

.hero-content img{
    width: 20%;
}

/* Right Column - Video Container */
.hero-video {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    /*box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);*/
    aspect-ratio: 11.5/9;
    max-height: 500px;
}

.showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    border-radius: 12px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #101010;
    color: #ffffff;
    padding: 1rem 3rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #626262;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        gap: 3rem;
    }
    
    .hero-video {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 5%;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-video {
        display: none;
    }
    
    .hero-content {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 5%;
    }
    
    .hero-container {
        min-height: auto;
    }
    
    .hero-video {
        max-height: 300px;
    }
}


/* Carousel Section */
/* Carousel Section */
.carousel {
    padding: 4rem 5% 2rem;
    background-color: #f9f9f9;
    position: relative;
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    animation: scroll 20s linear infinite;
}

.carousel-track.paused {
    animation-play-state: paused;
}

.carousel-track.manual-scroll {
    animation: none;
    transform: translateX(0);
    overflow-x: auto;
    scroll-behavior: smooth;
    cursor: grab;
}

.carousel-track.manual-scroll::-webkit-scrollbar {
    display: none;
}

.carousel-track.manual-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.carousel-item {
    flex: 0 0 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.carousel-item:hover {
    transform: translateY(-4px);
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: filter 0.3s ease;
}

/* Image overlay for hover effect */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    opacity: 0;
}

.overlay-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

/* Hover effects */
.carousel-item:hover img {
    filter: brightness(0.7);
}

.carousel-item:hover .image-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.carousel-item:hover .overlay-text {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-track {
        animation-duration: 15s;
    }

    .carousel-item {
        flex: 0 0 250px;
    }
}
/* Carousel Section Ends */

/* Collections Preview */
.collections {
    padding: 4rem 5% 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.collections h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #101010;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

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

.collection-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-4px);
}

.collection-card.northern-post {
    border: 1px solid rgba(185, 28, 28, 0.1);
    position: relative;
    overflow: hidden;
}

.collection-card.northern-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #bd2b2b, #206b39); /* Red and green accents */
}

.collection-icon {
    width: 80%;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #101010;
}

.collection-icon img{
    width: 80%;
}

.collection-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #101010;
    margin-bottom: 0.8rem;
    letter-spacing: -0.3px;
}

.collection-card p {
    font-size: 0.95rem;
    color: #757575;
    line-height: 1.6;
}

/* Email Signup */
/* Email Signup */
.email-signup {
    background-color: #ffffff;
    padding: 5rem 5%;
    text-align: center;
    min-height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-signup-content {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.email-signup h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #101010;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.email-signup p {
    font-size: 1rem;
    color: #757575;
    margin-bottom: 2rem;
}

.email-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: #101010;
}

.email-input::placeholder {
    color: #b0b0b0;
}

.cta-button {
    background-color: #101010;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.cta-button:hover {
    background-color: #333;
}

.cta-button:disabled {
    background-color: #b0b0b0;
    cursor: not-allowed;
}

/* Loading indicator */
.loading {
    display: none;
    margin-top: 1rem;
    text-align: center;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #101010;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

/* Success message */
.success-message {
    display: none;
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 1rem;
    text-align: center;
    border-left: 4px solid #4caf50;
}

.success-message h3 {
    margin-bottom: 0.5rem;
}

/* Error message */
.error-message {
    display: none;
    background-color: #ffebee;
    color: #c62828;
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 1rem;
    text-align: center;
    border-left: 4px solid #f44336;
}

.error-message h3 {
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .email-form {
        flex-direction: column;
    }
    
    .email-input {
        min-width: 100%;
    }
    
    .cta-button {
        width: 100%;
    }
}

/*The new css*/
/* Add these styles to your existing CSS */

/* Validation Styles */
.email-input.invalid {
    border-color: #f44336;
    background-color: #ffebee;
}

.validation-message {
    display: none;
    color: #f44336;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    text-align: left;
    padding: 0 0.25rem;
}

/* Temporary error message */
.temp-error-message {
    display: none;
    background-color: #ffebee;
    color: #c62828;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    text-align: center;
    border-left: 4px solid #f44336;
    font-weight: 500;
}
/* Email Form CSS Ends here*/

/* Footer */
footer {
    padding: 3rem 5% 1.5rem;
    background-color: #101010;
    color: #b0b0b0;
    position: relative;
    z-index: 50;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    margin-bottom: 2rem;
}

.footer-logo .logo img{
    width: 20%;
    /*font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;*/
}

.footer-logo p {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
    max-width: 300px;
}

.footer-social h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.3px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.social-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo p {
        max-width: none;
        margin: 0 auto;
    }

    .social-links {
        align-items: center;
    }

    .social-link {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 2rem 5% 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .social-links {
        gap: 0.75rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    header {
        gap: 1.5rem;
        padding: 1.5rem 5%;
    }

    nav {
        gap: 2rem;
    }

    .hero {
        height: 50vh;
    }

    .carousel-track {
        animation-duration: 15s;
    }

    .carousel-item {
        flex: 0 0 250px;
    }

    .collections-grid {
        grid-template-columns: 1fr;
    }

    .email-form {
        flex-direction: column;
    }

    .email-input {
        min-width: 100%;
    }
}
