/* Main Styles for tasty.host */

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffff66; /* Bright yellow background */
    color: #0a0b1e;
}

.main-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.logo {
	overflow: hidden;
    font-weight: bold;
}

.logo h1 {
	float: left;
    font-size: 1.8rem;
    font-weight: bold;
    margin-right: 5px;
	line-height: 28px;
}

.logo-icon {
	float: left;
	height: 22px;
	margin-top: 3px;
	margin-right: 10px;
}

/* Main Heading Section */
.heading-section {
    margin-top: 2rem;
}

.main-heading {
    font-size: 3rem;
    font-weight: 700; /* Black weight */
    margin-bottom: 0;
    line-height: 1.1;
	max-width: 700px;
	font-weight: 400;
}

.main-heading em {
	font-weight: 900;
	/* background: #fff; */
	padding: 10px 0;
	font-style: normal;
}

@media screen and (min-width: 768px) {
	.main-heading {
		font-size: 4rem;
		font-weight: 700; /* Black weight */
		margin-bottom: 0;
		line-height: 1.1;
		max-width: 700px;
		font-weight: 400;
	}
	.main-heading em {
		font-weight: 900;
		/* background: #fff; */
		padding: 10px 0;
		display: block;
		line-height: .8;
		font-size: 4.2rem;
		width: 125%;
	}
}

strong{
	font-weight: 900;
}

/* App Interface Section */
.app-features-section {
    margin-top: 4rem;
}

.app-screenshot {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Features List Section */
.features-heading {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.3;
}

.features-list ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 2rem;
}

.features-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.features-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

.code-text {
    font-family: monospace;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 2px 4px;
    border-radius: 3px;
}

/* Subscription Form */
.subscription-form {
    margin-top: 2rem;
}

.subscription-form input {
    font-family: 'Poppins', sans-serif;
    padding: 12px 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
    width: 100%;
    font-size: 1rem;
}

.subscribe-btn {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    padding: 12px 15px;
    background-color: #111;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.subscribe-btn:hover {
    background-color: #333;
}

/* Footer */
footer {
    margin-top: 4rem;
    padding-bottom: 2rem;
}

.footer-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    text-align: center;
}

.tinyaxe {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: bold;
    background-color: #111;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .main-heading, .highlighted-text, .subheading {
        font-size: 2.5rem;
    }
    
    .features-heading {
        font-size: 1.5rem;
        margin-top: 2rem;
    }
    
    .app-features-section {
        flex-direction: column;
    }
    
    .app-interface, .features-list {
        width: 100%;
    }
    
    .app-interface {
        margin-bottom: 2rem;
    }
}
