/* Variables */
:root {
    --primary: #6200ea; /* Modern purple */
    --primary-light: #9d46ff;
    --primary-dark: #0a00b6;
    --secondary: #00e5ff; /* Tech cyan */
    --secondary-light: #6effff;
    --secondary-dark: #00b2cc;
    --accent: #ffab00; /* Warm accent */
    --white: #ffffff;
    --off-white: #f8f8f8;
    --light-gray: #e5e5e5;
    --dark: #212121;
    --dark-gray: #424242;
    --bg-color: #fafafa;
    --bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    --tech-gradient: linear-gradient(135deg, #f5f7fa 0%, #e2e9f3 50%, #d5e1f2 100%);
    --card-bg: rgba(255, 255, 255, 0.85);
    --transition-slow: 0.5s ease;
    --transition-medium: 0.3s ease;
    --transition-fast: 0.2s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    --border-radius: 12px;
    --x: 50%;
    --y: 50%;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none !important;
    outline: none !important;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--tech-gradient);
    color: var(--dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25px 25px, rgba(98, 0, 234, 0.03) 2px, transparent 0),
        radial-gradient(circle at 75px 75px, rgba(0, 229, 255, 0.03) 2px, transparent 0);
    background-size: 100px 100px;
    pointer-events: none;
    z-index: 0;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    z-index: 2;
    border: none;
    outline: none;
    overflow-x: hidden;
}

/* Additional fix for red border */
.container::before,
.container::after,
.content::before,
.content::after,
.logo-container::before,
.logo-container::after,
main::before,
main::after,
header::before,
header::after,
div::before,
div::after {
    display: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

img.logo-image {
    display: block;
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Modern Background Elements */
.maple-leaves {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.4;
}

.maple-leaf {
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%236200ea' opacity='0.15' d='M383.8 351.7c2.5-2.5 105.2-92.4 105.2-92.4l-17.5-7.5c-10-4.9-7.4-11.5-5-17.4 2.4-7.6 20.1-67.3 20.1-67.3s-47.7 10-57.7 12.5c-7.5 2.5-10-2.5-12.5-7.5s-15-32.4-15-32.4-52.6 59.9-55.1 62.3c-10 7.5-20.1 0-17.6-10 0-10 27.6-129.6 27.6-129.6s-30.1 17.4-40.1 22.4c-7.5 5-12.6 5-17.6-5C293.5 72.3 255.9 0 255.9 0s-37.5 72.3-42.5 79.8c-5 10-10 10-17.6 5-10-5-40.1-22.4-40.1-22.4S183.3 182 183.3 192c2.5 10-7.5 17.5-17.6 10-2.5-2.5-55.1-62.3-55.1-62.3S98.1 167 95.6 172s-5 10-12.5 7.5C73 177 25.4 167 25.4 167s17.6 59.7 20.1 67.3c2.4 6 5 12.5-5 17.4L23 259.3s102.6 89.9 105.2 92.4c5.1 5 10 7.5 5.1 22.5-5.1 15-10.1 35.1-10.1 35.1s95.2-20.1 105.3-22.6c8.7-.9 18.3 2.5 18.3 12.5S241 512 241 512h30s-5.8-102.7-5.8-112.8 9.5-13.4 18.4-12.5c10 2.5 105.2 22.6 105.2 22.6s-5-20.1-10-35.1 0-17.5 5-22.5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.leaf-1 {
    top: 5%;
    left: 5%;
    width: 120px;
    height: 120px;
    animation: float 15s ease-in-out infinite;
}

.leaf-2 {
    top: 20%;
    right: 10%;
    width: 80px;
    height: 80px;
    animation: float 20s ease-in-out infinite reverse;
}

.leaf-3 {
    bottom: 15%;
    left: 15%;
    width: 100px;
    height: 100px;
    animation: float 18s ease-in-out infinite 2s;
}

.leaf-4 {
    bottom: 30%;
    right: 5%;
    width: 150px;
    height: 150px;
    animation: float 25s ease-in-out infinite 1s;
}

.leaf-5 {
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    opacity: 0.05;
    animation: float 30s ease-in-out infinite 3s;
}

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

/* Header */
header {
    padding: 0;
    animation: fadeInDown 1s ease-out forwards;
}

/* Logo Styles */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 0 0.5rem;
    border: none;
    outline: none;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.logo-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform var(--transition-medium);
}

.logo-image:hover {
    transform: scale(1.02);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    animation: expandLine 1.5s ease-out forwards 0.5s;
}

@keyframes expandLine {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.content {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
    overflow-x: hidden;
}

.coming-soon {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards 0.3s;
}

.red {
    color: var(--accent);
    font-weight: 600;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--dark-gray);
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards 0.5s;
}

/* Newsletter */
.newsletter {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-strong);
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards 0.9s, glow 3s infinite alternate ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-light), transparent, var(--secondary-light), transparent);
    background-size: 400% 400%;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.5;
    animation: glowingBorder 15s ease infinite;
    border-radius: 16px;
}

@keyframes glowingBorder {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes glow {
    0% {
        box-shadow: var(--shadow-strong);
    }
    100% {
        box-shadow: 0 15px 35px rgba(98, 0, 234, 0.15), 0 5px 15px rgba(0, 229, 255, 0.1);
    }
}

.newsletter h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.newsletter p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.form-group {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-medium);
    margin-bottom: 1rem;
}

.form-group.focused {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

input[type="email"] {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: none;
    font-size: 1rem;
    background: var(--white);
    color: var(--dark);
    font-family: var(--font-body);
}

input[type="email"]:focus {
    outline: none;
    background-color: var(--white);
}

button {
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

button:hover {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    transform: translateY(-1px);
}

button:active {
    transform: translateY(1px);
}

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

.btn-loading {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
}

button.loading .btn-text {
    opacity: 0;
}

button.loading .btn-loading {
    display: block;
    opacity: 1;
}

.spinner {
    animation: rotate 2s linear infinite;
    width: 24px;
    height: 24px;
}

.path {
    stroke: var(--white);
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

.subscription-status {
    margin-top: 1rem;
    min-height: 24px;
    transition: all var(--transition-medium);
}

.subscription-status.success {
    color: #4caf50;
}

.subscription-status.error {
    color: #f44336;
}

/* Map Section */
.map-section {
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards 1.2s;
}

.map-section h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    height: 300px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards 1.5s;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.social-links h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #4285F4; /* Google blue color */
    text-align: center;
}

.social-links .links-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #4285F4; /* Google blue color */
    color: var(--white);
    transition: all var(--transition-medium);
    box-shadow: 0 4px 10px rgba(66, 133, 244, 0.3);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3367D6; /* Darker blue on hover */
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.social-link .icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 8px 15px rgba(98, 0, 234, 0.3);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover .icon {
    transform: scale(1.2);
}

.social-link.share-btn {
    cursor: pointer;
    border: none;
    background: #4285F4;
    transition: all var(--transition-medium);
}

.social-link.share-btn:focus {
    outline: none;
}

.social-link.share-btn:active {
    transform: scale(0.95);
}

.google-business-icon {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.social-link:hover .google-business-icon {
    transform: scale(1.2);
}

/* Footer */
footer {
    padding: 2rem 0;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.copyright {
    font-weight: 500;
}

.address {
    font-style: normal;
    max-width: 300px;
    line-height: 1.5;
}

.made-with {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
}

.heart-icon {
    color: #ff0000;
    margin: 0 0.25rem;
    animation: pulse 1.5s infinite;
}

.developer-credit {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.developer-credit a {
    color: var(--primary);
    text-decoration: none;
    transition: all var(--transition-medium);
    font-weight: 500;
}

.developer-credit a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .coming-soon {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    input[type="email"] {
        margin-bottom: 1rem;
    }
    
    button {
        width: 100%;
    }
    
    .logo-image {
        max-width: 280px;
    }
    
    .content {
        padding: 0 15px;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
    }
    
    .google-business-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .coming-soon {
        font-size: 2.2rem;
    }
    
    .newsletter {
        padding: 1.2rem;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    .logo-image {
        max-width: 220px;
    }
    
    .social-links {
        margin-bottom: 2rem;
        padding: 0 10px;
    }
    
    .social-links .links-container {
        gap: 0.8rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .google-business-icon {
        width: 18px;
        height: 18px;
    }
    
    .content {
        padding: 0 10px;
    }
    
    .social-links h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
} 

/* Email styles */
/* Contact Button styles removed */ 

/* Moving Border Styles */
.moving-border-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    z-index: 1;
    padding: 1px;
    transition: all var(--transition-medium);
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    margin: 2rem 0;
}

.moving-border {
    position: absolute;
    inset: -150%;
    background: radial-gradient(
        circle at var(--x) var(--y),
        rgba(157, 70, 255, 0.8),
        rgba(110, 255, 255, 0.8),
        rgba(255, 171, 0, 0.8),
        transparent 60%
    );
    z-index: -1;
    animation: rotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.moving-border-container:hover .moving-border {
    opacity: 1;
}

.moving-border-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 248, 248, 0.9));
    border-radius: calc(var(--border-radius) - 1px);
    padding: 2rem;
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradientFlow 5s ease infinite;
}

.card-hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(50, 50, 93, 0.12), 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Newsletter Section */
.newsletter {
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    margin: 2rem 0;
    padding: 0;
    background: transparent;
}

.newsletter h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

/* About Section */
.about-section {
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    margin: 2rem 0;
    padding: 0;
    background: transparent;
}

.about-section h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.about-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--dark-gray);
} 