/* CSS Document */

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

:root {
    --primary-yellow: #FFD700;
    --primary-black: #1a1a1a;
    --accent-yellow: #FFA500;
    --text-dark: #333;
    --border-color: #2a2a2a;
}

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
        }

        /* Header */
        .header {
            background: white;
            border-bottom: 4px solid var(--primary-black);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

		/* Target the image inside the .logo div */
		.logo img {
    		width: 140px;   /* Adjust size */
    		height: auto;   /* Keeps proportions */
    		display: block; /* Removes inline spacing */
			display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-black);
		}

        .bee-icon {
            width: 40px;
            height: 40px;
            margin-right: 10px;
            background: var(--primary-yellow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: var(--primary-black);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--accent-yellow);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-yellow);
            transition: width 0.3s;
        }

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

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #9F6D00 18%, #EBAA00 100%);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '🐝';
            position: absolute;
            font-size: 200px;
            opacity: 0.05;
            top: -50px;
            right: 10%;
            animation: float 6s ease-in-out infinite;
        }

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

        .hero-content {
			display: flex;
			flex-direction: column;
			align-items: center;
			text-align: center;
			padding: 2rem;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

		.logo-full img {
    		width: 600px;   /* Adjust size */
    		height: auto;   /* Keeps proportions */

			display: block;
			/* color: var(--primary-black); */
		}

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero .tagline {
            font-size: 1.5rem;
            color: var(--primary-yellow);
            margin-bottom: 1rem;
            font-style: italic;
        }

        .hero .subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .certification-badge {
            display: inline-block;
            background: white;
            color: var(--primary-black);
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            font-weight: bold;
            margin: 0.5rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .certification-badge .bee-accent {
            color: var(--accent-yellow);
        }

        /* Services Section */
        .services {
            padding: 4rem 2rem;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary-black);
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '🐝';
            display: block;
            font-size: 2rem;
            margin-top: 0.5rem;
        }

        .services-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, auto));
            gap: 2rem;
        }

        .service-card {
            background: white;
            border: 3px solid var(--border-color);
            border-radius: 10px;
            padding: 2rem;
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: linear-gradient(45deg, var(--primary-yellow), var(--accent-yellow));
            border-radius: 10px;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: -1;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

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

        .service-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-yellow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 1rem;
        }

        .service-card h3 {
            color: var(--primary-black);
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .service-card p {
            color: #666;
            line-height: 1.6;
        }

		/* Remote Online Notary CTA Section */
		.ron-cta {
    		background: var(--primary-black);
    		color: white;
    		padding: 5rem 2rem;
    		text-align: center;
    		border-top: 4px solid var(--primary-yellow);
    		border-bottom: 4px solid var(--primary-yellow);
		}

		.ron-container {
    		max-width: 800px;
    		margin: 0 auto;
		}

		.ron-cta h2 {
    		color: var(--primary-yellow);
    		font-size: 2.5rem;
    		margin-bottom: 2rem;
    		text-transform: uppercase;
    		letter-spacing: 1px;
		}

		.ron-description {
    		font-size: 1.1rem;
    		line-height: 1.8;
    		margin-bottom: 2.5rem;
    		color: #e0e0e0;
		}

		.ron-description strong {
    		color: white;
		}

		.ron-instruction {
    		margin-top: 1.5rem;
    		color: var(--primary-yellow);
    		font-size: 1.2rem;
		}

		.ron-button-wrapper {
    		display: flex;
    		justify-content: center;
    		margin-top: 2rem;
		}

        /* About Section */
        .about {
            background: #f8f8f8;
            padding: 4rem 2rem;
        }

        .about-content {
            max-width: 1250px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: auto auto;
            gap: 3rem;
            align-items: center;
        }

        .about-text {
            padding: 2rem;
        }

        .about-text h2 {
            color: var(--primary-black);
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }

        .about-text p {
            margin-bottom: 1rem;
            color: #555;
            line-height: 1.8;
        }

        .notary-seal {
            text-align: center;
            padding: 2rem;
			width: 100px;
            margin: 0 auto;
        }
	
		.notary-seal img {
			width: 300%;
			height: auto;
		}

        /* Contact Section */
        .contact {
            background: var(--primary-black);
            color: white;
            padding: 4rem 2rem;
        }

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

        .contact h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--primary-yellow);
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 1.2rem;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: var(--primary-yellow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-black);
            font-size: 20px;
        }

        .cta-button {
            display: inline-block;
            background: var(--primary-yellow);
            color: var(--primary-black);
            padding: 1rem 2.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: transform 0.3s, box-shadow 0.3s;
            margin-top: 2rem;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
        }

        /* Footer */
        .footer {
            background: #0a0a0a;
            color: #aaa;
            text-align: center;
            padding: 2rem;
        }

        .footer-tagline {
            font-size: 1.3rem;
            color: var(--primary-yellow);
            margin-bottom: 1rem;
            font-style: italic;
        }
		
     /* Ink Stamp Effect - Tighter to the Left & Slightly Smaller */
.stamp-mark {
    position: absolute;
    bottom: 40px;           /* Adjust this to move it up/down */
    left: 10px;             /* 10px from the absolute left edge of the screen */
    
    color: #c0392b;
    border: 3px double #c0392b;
    padding: 10px 15px;
    
    font-family: 'Courier New', Courier, monospace;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    font-size: 1rem;
    letter-spacing: 1px;
    
    transform: rotate(-12deg);
    opacity: 0.8;
    z-index: 10;
    pointer-events: none;
    mix-blend-mode: multiply;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .stamp-mark {
        font-size: 0.7rem;
        left: 5px;          /* Tighter to edge on phone */
        bottom: 20px;
        padding: 5px 10px;
    }
}
        /* Floating Bees */
        .floating-bee {
            position: fixed;
            font-size: 30px;
            opacity: 0.3;
            animation: buzz 15s infinite;
            pointer-events: none;
            z-index: 1;
        }

        .bee1 { top: 20%; left: 5%; animation-delay: 0s; }
        .bee2 { top: 60%; right: 5%; animation-delay: 5s; }
		.bee3 { top: 40%; left: 95%; animation-delay: 10s; }

		@keyframes buzz {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(50px, -30px) rotate(10deg); }
            50% { transform: translate(-30px, 50px) rotate(-10deg); }
            75% { transform: translate(30px, 30px) rotate(5deg); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                flex-direction: column;
                gap: 1rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .about-content {
                grid-template-columns: 100%;
            }

            .contact-info {
                flex-direction: column;
                gap: 1.5rem;
            }
        }