:root {
    --primary-color: #5acda6;
    --secondary-color: #91ac41;
    --accent-color: #e4b476;
    --text-color: #333;
    --light-gray: #f8f9fa;
    --dark-gray: #4a4a4a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #f6f8ff 0%, #ffffff 100%);
    padding: 20px 0;
    position: relative;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#logo {
    height: 50px;
}

#top-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.menu-item a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu-item a:hover {
    color: var(--primary-color);
}

#header-desc {
    text-align: center;
    padding: 150px 5% 80px;
    max-width: 800px;
    margin: 0 auto;
}

#header-desc h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#header-desc p {
    font-size: 1.2rem;
    color: var(--dark-gray);
}

/* Steps Section */
#steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0;
}

#steps article {
    padding: 3rem 2rem;
    color: white;
    text-align: center;
}

#steps i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Store Section */
#store {
    padding: 5rem 5%;
    text-align: center;
}

.italic-par {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

#store h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#gray-desc {
    color: var(--dark-gray);
    margin-bottom: 3rem;
}

#store-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

#store-items article {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

#store-items article:hover {
    transform: translateY(-5px);
}

#store-items i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Comments Section */
#comments {
    padding: 5rem 5%;
    background: var(--light-gray);
    text-align: center;
}

#comments-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

#comments-items article {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#comments-items img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

/* Follow Section */
#follow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    background: white;
}

#left-bar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#right-bar {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#right-bar h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#email {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#submit-btn:hover {
    background: var(--secondary-color);
}

/* Rates Section */
#rates {
    background: var(--primary-color);
    color: white;
    padding: 4rem 5%;
}

#rates-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.rates-block h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Video Section */
#vimeo {
    padding: 5rem 5%;
    text-align: center;
}

#vimeo iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    margin-top: 2rem;
}

/* Contacts Section */
#contacts {
    padding: 5rem 5%;
    background: var(--light-gray);
}

#contacts-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.input-item {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

textarea.input-item {
    height: 150px;
    resize: vertical;
}

#btn-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#btn-submit:hover {
    background: var(--secondary-color);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    #header-desc h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    #right-bar {
        padding: 2rem;
    }
    
    #contacts-wrap {
        grid-template-columns: 1fr;
    }
}

/* Dropdown Menu */
#drop-menu {
    position: relative;
}

#dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 0.5rem 0;
    min-width: 200px;
}

#drop-menu:hover #dropdown-menu {
    display: block;
}

#dropdown-menu li {
    list-style: none;
}

#dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-color);
    text-decoration: none;
}

#dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}