:root {
    --primary-color: #66aadd;
    --primary-dark: #427bab;
    --primary-light: rgba(102, 170, 221, 0.1);
    --green-primary: #66dd84;
    --green-dark: #4eba68;
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-primary-dark {
    background-color: var(--primary-dark);
}

.bg-primary-light {
    background-color: var(--primary-light);
}

.hover\:bg-primary-dark:hover {
    background-color: var(--primary-dark);
}

.text-primary {
    color: var(--primary-color);
}

.text-primary-dark {
    color: var(--primary-dark);
}

.hover\:text-primary:hover {
    color: var(--primary-color);
}

.border-primary {
    border-color: var(--primary-color);
}

.from-primary-light {
    --tw-gradient-from: var(--primary-light);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(102, 170, 221, 0));
}



.packages {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.package {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    flex: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .packages {
        flex-direction: column;
    }
    
    .package {
        margin-bottom: 20px;
    }
    
    .package-top {
        height: auto;
        padding: 20px 10px;
    }
    
    .package-bottom {
        height: auto;
        padding: 20px;
    }
    
    .package-title {
        margin-top: 10px;
    }
}

.package-top {
    position: relative;
    height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.package-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    max-width: 300px;
}

@media (max-width: 768px) {
    .package-image {
        max-width: 200px;
    }
}

.package-bottom {
    background-color: var(--primary-dark);
    color: white;
    border-bottom-left-radius: 50% 20%;
    border-bottom-right-radius: 50% 20%;
    padding: 30px 20px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.package-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.package-subtitle {
    font-size: 16px;
    line-height: 1.5;
}

.order-button {
    background-color: white;
    color: #333;
    border: none;
    border-radius: 25px;
    padding: 10px 30px;
    font-weight: bold;
    margin-top: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.order-button:hover {
    background-color: #f2f2f2;
    transform: translateY(-2px);
}

.order-button.green {
    position: relative;
    overflow: hidden;
    background-color: var(--green-primary);
    color: white;
    transform: scale(1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(102, 221, 132, 0.2);
    animation: pulse 2s infinite;
}

.order-button.green:hover {
    background-color: var(--green-dark);
    transform: scale(1.03);
    box-shadow: 0 5px 12px rgba(102, 221, 132, 0.3);
}

.order-button.green::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        60deg,
        rgba(255, 255, 255, 0) 10%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.3) 30%,
        rgba(255, 255, 255, 0) 40%
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 221, 132, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(102, 221, 132, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(102, 221, 132, 0);
    }
}

@keyframes shine {
    0% {
        top: -100%;
        left: -100%;
    }
    100% {
        top: 100%;
        left: 100%;
    }
}

.features-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.category-row {
    background-color: #e9e9e9;
    font-weight: bold;
}

.features-table th, .features-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.features-table th:first-child, .features-table td:first-child {
    text-align: left;
    width: 30%;
}

@media (max-width: 768px) {
    .features-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        font-size: 14px;
        -webkit-overflow-scrolling: touch;
    }
    
    .features-table th, .features-table td {
        padding: 10px 8px;
    }
    
    .features-table th:first-child, .features-table td:first-child {
        width: auto;
    }
}

.features-table td.check {
    color: #4CAF50;
    font-size: 20px;
}

@media (max-width: 768px) {
    .features-table td.check {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .startpage-image-container {
        padding-left: 50px;
    }
}

.info-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    margin-left: 5px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.info-icon:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* Overlay and popup */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    animation: fadeIn 0.3s ease-in-out;
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px 25px;
    border-radius: 8px;
    max-width: 90%;
    width: 500px;
    max-height: 80vh;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    text-align: left;
    animation: scaleIn 0.3s ease-in-out;
    overflow-y: auto;
}

.popup-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    color: var(--primary-dark);
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.popup-content {
    font-size: 15px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 15px;
}

.popup-close {
    position: sticky;
    top: 0;
    float: right;
    margin: -10px -10px 5px 10px;
    width: 25px;
    height: 25px;
    background-color: #f2f2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #777;
    font-size: 16px;
    transition: all 0.2s;
    z-index: 10;
}

.popup-close:hover {
    background-color: #e6e6e6;
    color: #333;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { transform: translate(-50%, -50%) scale(0.9); opacity: 0; }
    to { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .popup {
        width: 85%;
        padding: 15px 20px;
    }
    
    .popup-title {
        font-size: 16px;
    }
    
    .popup-content {
        font-size: 14px;
    }
}

/* Info hint box */
.info-hint {
    display: flex;
    align-items: center;
    background-color: rgba(102, 170, 221, 0.15);
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    margin: 20px 0 30px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.info-icon-large {
    width: 24px;
    height: 24px;
    color: var(--primary-dark);
    margin-right: 15px;
    flex-shrink: 0;
}

.info-highlight {
    background-color: var(--primary-color);
    color: white;
    display: inline-flex;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    margin: 0 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .info-hint {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .info-icon-large {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }
}

@media (max-width: 768px) {
    .info-icon {
        width: 16px;
        height: 16px;
        font-size: 12px;
        line-height: 16px;
    }
    
    .tooltip {
        width: 160px;
        font-size: 12px;
    }
}

.price {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}

.logo-container {
    position: relative;
    text-align: center;
    padding: 40px;
    padding-top: 0;
    padding-bottom: 0;
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
    transform: scale(0.7);
}

.logo-text {
    position: relative;
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: lowercase;
}

.patrick-hau {
    background: linear-gradient(135deg,
    #0a5288 0%,
    #1e88e5 25%,
    #64b5f6 50%,
    #1e88e5 75%,
    #0a5288 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow:
            0px 2px 2px rgba(0,0,0,0.3);
}

.domain {
    background: linear-gradient(to bottom,
    #f0f0f0 0%,
    #d6d6d6 20%,
    #aaaaaa 50%,
    #d8d8d8 80%,
    #f0f0f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow:
            0px 1px 1px rgb(88 174 238 / 80%),
            0px -1px 1px rgba(0, 0, 0, 0.2);
}

/* Glanz-Effekt */
.shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
    transparent 0%,
    transparent 40%,
    rgba(255,255,255,0.6) 50%,
    transparent 60%,
    transparent 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 160%;
    animation: shine 2.5s infinite;
}

@keyframes shine {
    0% {background-position: -100%;}
    100% {background-position: 200%;}
}

/* Tech elements */
.tech-element {
    position: absolute;
    opacity: 0.2;
    color: #64b5f6;
    font-family: monospace;
    font-weight: 300;
    z-index: -1;
}

.bracket-left {
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 7rem;
}

.bracket-right {
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 7rem;
}

.tagline {
    margin-top: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #66aadd;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
}

.logo-header {
    display: flex;
    background: white;
}


/* Zusätzliche Stile für die Navigation */
.nav-link {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
}

.nav-link .bg-blue-600 {
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-link span {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
}